* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --magenta-main: #ec4899;
    --pink-bright: #f472b6;
    --purple-accent: #a855f7;
    --rose-deep: #be123c;
    --bg-main: #1e1024;
    --bg-secondary: #2d1b3d;
    --text-primary: #fdf4ff;
    --text-secondary: #f5d0fe;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e1024 0%, #2d1b3d 50%, #1e1024 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.section-wrap {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-wrap-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Age Gate */
.gate-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.gate-overlay.show {
    display: flex;
}

.gate-container {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-main));
    padding: 50px 45px;
    border-radius: 25px;
    max-width: 550px;
    width: 90%;
    border: 3px solid var(--magenta-main);
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.5);
}

.gate-content {
    text-align: center;
    margin-bottom: 35px;
}

.gate-symbol {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
}

.gate-content h2 {
    font-size: 2.4rem;
    color: var(--magenta-main);
    margin-bottom: 15px;
    font-weight: 800;
}

.gate-lead {
    font-size: 1.15rem;
    color: var(--pink-bright);
    margin-bottom: 15px;
    font-weight: 600;
}

.gate-info {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.gate-question {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 20px;
    font-weight: 600;
}

.gate-controls {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.gate-btn {
    flex: 1;
    min-width: 180px;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.gate-btn.confirm {
    background: linear-gradient(135deg, var(--magenta-main), var(--purple-accent));
    color: white;
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.4);
}

.gate-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(236, 72, 153, 0.6);
}

.gate-btn.deny {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.gate-btn.deny:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Layout */
.layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.main-nav {
    background: rgba(45, 27, 61, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--magenta-main);
    box-shadow: 0 5px 30px rgba(236, 72, 153, 0.3);
}

.nav-brand {
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 800;
}

.brand-emoji {
    font-size: 2.3rem;
}

.brand-name {
    background: linear-gradient(135deg, var(--magenta-main), var(--pink-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--magenta-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px 20px;
    justify-content: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--magenta-main);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.link-active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.link-active {
    color: var(--magenta-main);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 50px 0;
}

/* Intro Section */
.intro {
    margin-bottom: 70px;
}

.intro-box {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.15));
    padding: 70px 50px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--magenta-main);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.3);
}

.intro-box h1 {
    font-size: 3.6rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--magenta-main), var(--pink-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.intro-lead {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 850px;
    margin: 0 auto;
    font-weight: 600;
}

/* Highlights */
.highlights {
    margin-bottom: 70px;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.highlight {
    display: flex;
    gap: 25px;
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.highlight.magenta {
    background: rgba(236, 72, 153, 0.1);
    border-color: var(--magenta-main);
}

.highlight.pink {
    background: rgba(244, 114, 182, 0.1);
    border-color: var(--pink-bright);
}

.highlight.purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--purple-accent);
}

.highlight:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.35);
}

.highlight-icon {
    font-size: 3rem;
}

.highlight-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--magenta-main);
    font-weight: 800;
}

.highlight-body p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Philosophy */
.philosophy {
    margin-bottom: 70px;
}

.philosophy h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--magenta-main);
    font-weight: 800;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.philosophy-item p {
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Showcase */
.showcase {
    margin-bottom: 70px;
}

.showcase h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--magenta-main);
    font-weight: 800;
}

.showcase-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.game-box {
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid var(--magenta-main);
    box-shadow: 0 12px 50px rgba(236, 72, 153, 0.4);
    margin-bottom: 35px;
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.showcase-cta {
    text-align: center;
}

.action-btn {
    display: inline-block;
    padding: 18px 55px;
    background: linear-gradient(135deg, var(--magenta-main), var(--purple-accent));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.4);
}

.action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(236, 72, 153, 0.6);
}

/* Features */
.features {
    margin-bottom: 70px;
}

.features h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--magenta-main);
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.feature-card {
    background: rgba(45, 27, 61, 0.4);
    padding: 45px 38px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(236, 72, 153, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--magenta-main);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.35);
}

.feature-symbol {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--magenta-main);
    font-weight: 800;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Disclosure */
.disclosure {
    margin-bottom: 70px;
}

.disclosure-box {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.15));
    padding: 55px 45px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--magenta-main);
}

.disclosure-box h3 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--pink-bright);
    font-weight: 800;
}

.disclosure-box p {
    font-size: 1.12rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* Play Page */
.play-intro {
    text-align: center;
    margin-bottom: 50px;
}

.play-intro h1 {
    font-size: 3.4rem;
    margin-bottom: 20px;
    color: var(--magenta-main);
    font-weight: 800;
}

.play-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.play-game {
    margin-bottom: 70px;
}

.play-container {
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid var(--magenta-main);
    box-shadow: 0 12px 50px rgba(236, 72, 153, 0.4);
}

.play-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.play-info {
    margin-bottom: 70px;
}

.play-info h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--magenta-main);
    font-weight: 800;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(45, 27, 61, 0.4);
    padding: 38px 35px;
    border-radius: 20px;
    border: 2px solid rgba(236, 72, 153, 0.25);
}

.info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 18px;
    color: var(--magenta-main);
    font-weight: 800;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.return-cta {
    margin-bottom: 70px;
}

.return-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(168, 85, 247, 0.1));
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--magenta-main);
}

.return-card h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--magenta-main);
    font-weight: 800;
}

.return-card p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

/* Legal Pages */
.doc-header {
    text-align: center;
    margin-bottom: 60px;
}

.doc-header h1 {
    font-size: 3.4rem;
    margin-bottom: 15px;
    color: var(--magenta-main);
    font-weight: 800;
}

.doc-date {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.doc-content {
    margin-bottom: 70px;
}

.doc-section {
    background: rgba(45, 27, 61, 0.4);
    padding: 45px 42px;
    border-radius: 20px;
    margin-bottom: 35px;
    border-left: 5px solid var(--magenta-main);
}

.doc-section h2 {
    font-size: 2rem;
    margin-bottom: 22px;
    color: var(--magenta-main);
    font-weight: 800;
}

.doc-section p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.08rem;
}

/* Footer */
.page-footer {
    background: rgba(45, 27, 61, 0.95);
    padding: 70px 0 35px;
    border-top: 3px solid var(--magenta-main);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 22px;
    color: var(--magenta-main);
    font-weight: 800;
}

.footer-column p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--magenta-main);
}

.footer-base {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(236, 72, 153, 0.3);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 30px;
        top: 20px;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(45, 27, 61, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 35px 30px;
        border-top: 3px solid var(--magenta-main);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
        gap: 25px;
    }

    .nav-links.active {
        left: 0;
    }

    .intro-box h1 {
        font-size: 2.7rem;
    }

    .intro-lead {
        font-size: 1.2rem;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .play-frame {
        height: 550px;
    }

    .features-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gate-container {
        padding: 40px 30px;
    }

    .gate-controls {
        flex-direction: column;
    }

    .gate-btn {
        width: 100%;
    }
}
