/* --- FONTS & BASE --- */
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Jersey+15&family=Jersey+20&display=swap');

body {
    background-color: #000;
    background-image: url('https://file.garden/ZnNr0mYRNQ9BoevX/Untitled76_20250815114209.png');
    color: #fff;
    font-family: 'DotGothic16', sans-serif;
    margin: 0;
    padding: 40px 55px;
}

#char-overlay {
    position: fixed;
    bottom: -10px;
    right: 10px;
    width: 250px;
    z-index: 1000;
    pointer-events: none;
    filter: drop-shadow(0 0 10px #fff);
}

#lacey {
    width: 250px;
    position: fixed;
    pointer-events: none;
}
/* --- 3-COLUMN STRUCTURE --- */
main {
    max-width: 1080px;
    margin: auto;
    background: #000;
    border: 4px double #fff;
    border-radius: 10px;
    padding: 20px;
}


.site-header {
    background-color: #fff;
    background-image: url('https://file.garden/ZnNr0mYRNQ9BoevX/Untitled74_20260116155857.png');
    background-size: cover;
    background-position: center;
    border: ridge 6px #fff;
    outline: solid 3px #000;
    height: 165px; 
    display: flex;
    align-items: center;
    padding-left: 30px; 
    margin-bottom: 20px;
    border-radius: 10px;
}

.header-title {
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.7); 
    border: none !important;
    outline: none !important;
    padding: 10px 20px !important;
    font-size: 48px;
    text-shadow: 3px 3px 0px #000; 
    margin: 0;
}

.three-column-grid {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

#left-col { flex: 1; min-width: 160px; }
#center-col { flex: 2.5; }
#right-col { flex: 1; min-width: 160px; }

/* --- COMPONENTS --- */
.content-box {
    border: 10px solid #fff;
    border-image: url('https://file.garden/ZnNr0mYRNQ9BoevX/IMG_6072.png') 8 round;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

h1, h2, h3 { font-family: 'Jersey 20', sans-serif; text-transform: uppercase; margin: 0 0 10px 0; }
h4 { font-family: 'DotGothic16', sans-serif; text-transform: uppercase; color: #fff; background: black; margin: 0 0 10px; padding: 3px; border-radius: 5.5px;}

/* Nav Links */

.nav-list { list-style: none; padding: 0; margin: 0; }
.nav-list li a {
    display: block;
    font-family: 'Jersey 15', sans-serif;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border: 1px solid #fff;
    margin-bottom: 8px;
    text-align: center;
}
.nav-list li a:hover { background: #fff; color: #000; }

/* Scrollable area for center content */
.scroll-box {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}
.scroll-box::-webkit-scrollbar { width: 4px; }
.scroll-box::-webkit-scrollbar-thumb { background: #fff; }