/* --- GLOBAL LAYOUT --- */
/* CRITICAL FIX: This makes sure padding doesn't stretch boxes off-screen */
*, *::before, *::after {
    box-sizing: border-box;
}

:root { 
    --bg: #000000; 
    --card: #0a0a0a; 
    --gold: #FFC107; 
    --red: #ff3333; 
    --green: #00ff88;
    --text: #ffffff; 
    --font-head: system-ui, -apple-system, sans-serif;
}

body { 
    background-color: var(--bg);
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('assets/img/background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: var(--text); 
    font-family: var(--font-head); 
    margin: 0; 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* MOBILE SCROLL FIX */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('assets/img/mobile-bg.jpg');
        background-position: center top;
        min-height: 100svh;
    }
}

.highlight-3 { color: var(--red); text-shadow: 0 0 10px rgba(255, 51, 51, 0.5); font-style: normal; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- NAVIGATION --- */
nav { 
    padding: 20px 40px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.brand { font-weight: 900; letter-spacing: 0.2em; font-size: 1.2rem; color: #fff; text-transform: uppercase; }
.nav-links-right { display: flex; gap: 15px; align-items: center; }
.nav-link { font-size: 0.7rem; color: #ccc; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.nav-link:hover { color: var(--gold); }
.nav-x { color: var(--red); font-weight: 900; font-size: 1rem; padding: 0 5px; }
.nav-x:hover, .nav-x.active { color: #fff; text-shadow: 0 0 10px var(--red); }
.vault-btn { 
    border: 1px solid var(--gold); padding: 6px 15px; border-radius: 50px; color: var(--gold) !important; background: transparent; 
    cursor: pointer; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; 
}
.vault-btn:hover { background: var(--gold); color: #000 !important; }

/* --- HERO & CONTENT --- */
.hero-container { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 120px 20px 80px; }
.container { max-width: 1100px; margin: 0 auto; padding: 120px 20px 50px; }
.hero-title { font-size: clamp(3rem, 12vw, 6rem); font-weight: 900; letter-spacing: -0.04em; margin: 0; line-height: 0.9; text-transform: uppercase; color: #fff; }
.hero-desc { max-width: 500px; margin: 20px auto 40px; color: #ccc; font-size: 1rem; line-height: 1.6; }
.hero-subtitle { color: var(--gold); letter-spacing: 0.3em; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 20px; display: block; font-weight: 700; }

.vault-tease { text-align: left; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 20px; margin-top: 30px; border-radius: 8px; width: 100%; max-width: 400px; }
.vault-item { list-style: none; color: #ccc; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px 0; display: flex; align-items: center; gap: 10px; }
.vault-item:last-child { border-bottom: none; }
.vault-icon { color: var(--gold); width: 20px; text-align: center; }

/* --- LEGAL / IPO WARNING BOX (FIXED) --- */
.legal-warning-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    border: 1px solid var(--red);
    /* Made darker so text pops against background image */
    background: rgba(10, 0, 0, 0.85); 
    backdrop-filter: blur(5px);
    padding: 20px;
    text-align: left;
    font-size: 0.75rem;
    color: #ccc;
    position: relative;
    border-left: 4px solid var(--red); /* Added thick left border for "official" look */
}

.legal-header {
    color: var(--red);
    font-weight: 900;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 51, 51, 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-text strong { color: #fff; }
.legal-text { margin-bottom: 10px; line-height: 1.5; }

/* --- FORMS & BUTTONS --- */
.hero-form { display: flex; flex-direction: column; gap: 15px; width: 100%; max-width: 400px; margin-bottom: 30px; }
.hero-input, .msg-input { 
    padding: 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); color: #fff; text-align: center; font-size: 1rem; border-radius: 4px; backdrop-filter: blur(5px); width: 100%; font-family: inherit;
}
.msg-input { text-align: left; min-height: 100px; resize: vertical; }
.hero-input:focus, .msg-input:focus { border-color: var(--green); outline: none; background: rgba(0,0,0,0.8); }
.btn-submit { 
    background: var(--gold); color: #000; padding: 18px; font-weight: 800; font-size: 1rem; text-transform: uppercase; border: none; cursor: pointer; letter-spacing: 0.1em; border-radius: 4px; width: 100%; display: inline-block; transition: 0.3s;
}
.btn-submit:hover { transform: scale(1.02); background: #fff; }

/* --- SPOILER SYSTEM --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; width: 100%; max-width: 1000px; }
.media-card { background: #000; border: 1px solid #333; position: relative; overflow: hidden; }

/* Wrapper handles the click logic */
.spoiler-wrap { position: relative; width: 100%; height: 350px; cursor: pointer; }

/* The Overlay */
.spoiler-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    z-index: 10; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
    transition: 0.5s;
}

/* The Content */
.media-img, .media-video { 
    width: 100%; height: 350px; object-fit: cover; display: block; 
    filter: blur(20px) brightness(0.5); /* HEAVY BLUR */
    transition: 0.5s ease-in-out; 
}
/* For unblurred images */
.media-card:hover .media-img, .media-card:hover .media-video { opacity: 1; }

.spoiler-wrap.revealed .media-img, 
.spoiler-wrap.revealed .media-video { filter: none; } 
.spoiler-wrap.revealed .spoiler-overlay { opacity: 0; pointer-events: none; }

.timestamp-tag { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.8); border: 1px solid var(--gold); padding: 4px 8px; font-size: 0.6rem; color: var(--gold); letter-spacing: 0.1em; z-index: 15; }

/* Utils */
.social-row { display: flex; gap: 30px; justify-content: center; margin-top: 20px; }
.social-icon { color: #fff; font-size: 1.5rem; transition: 0.3s; opacity: 0.7; }
.social-icon:hover { color: var(--green); transform: translateY(-3px); opacity: 1; }
.legal-box { border: 1px solid var(--gold); background: rgba(10,10,10,0.9); padding: 20px; margin-bottom: 30px; text-align: center; }
#legal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; text-align: center; }
.warning-box { border: 2px solid var(--gold); padding: 40px; max-width: 600px; background: #050505; }
.adult-warning { border-color: var(--red); }

@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    nav { padding: 15px 20px; }
    
    /* EXTRA SAFETY FOR MOBILE BOXES */
    .legal-warning-container, .hero-form, .vault-tease {
        width: 100%;
        max-width: 100%;
    }
}
/* --- ACCORDION SYSTEM (FOR FH PAGE) --- */
.accordion {
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.4s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hover & Active State */
.active, .accordion:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--gold);
}

/* The Panel (Hidden Content) */
.panel {
    padding: 0 20px;
    background-color: rgba(0,0,0,0.6);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-left: 2px solid var(--gold);
}

/* Icons inside the accordion */
.accordion:after {
    content: '\002B'; /* Plus Sign */
    color: var(--gold);
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 1.5rem;
}

.active:after {
    content: "\2212"; /* Minus Sign */
}

.panel p, .panel ul {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 20px 0;
}

.panel a {
    color: var(--green);
    text-decoration: underline;
}