@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

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

:root {
    --pink: #FF1493;
    --violet: #9400D3;
    --magenta: #FF00FF;
    --bg-dark: #120818;
    --bg-card: #1E0F24;
    --bg-lighter: #2A1530;
    --text-light: #F8E8FF;
    --text-muted: #BFA0C8;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    color: var(--pink);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--magenta);
}

/* Header */
.top-header {
    background: rgba(18,8,24,0.9);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,20,147,0.2);
}

.header-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--pink), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.main-nav a:hover {
    color: var(--pink);
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-icon span {
    width: 25px;
    height: 2px;
    background: var(--pink);
    transition: all 0.3s;
}

.mobile-panel {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,20,147,0.2);
}

.mobile-panel.visible {
    display: flex;
}

.mobile-panel a {
    color: var(--text-light);
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,20,147,0.1);
}

/* Main */
main {
    padding-top: 72px;
}

/* Splash Section */
.splash {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.splash::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,20,147,0.15), transparent 70%);
    top: -100px;
    left: -100px;
}

.splash::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(148,0,211,0.1), transparent 70%);
    bottom: -100px;
    right: -100px;
}

.splash-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.splash-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--pink), var(--violet), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.splash-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(255,20,147,0.4);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255,20,147,0.5);
    color: var(--text-light);
}

.btn-border {
    background: transparent;
    color: var(--pink);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: 2px solid var(--pink);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-border:hover {
    background: var(--pink);
    color: var(--bg-dark);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    background: var(--bg-card);
}

.info-card {
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(255,20,147,0.1);
    transition: all 0.3s;
}

.info-card:hover {
    background: var(--bg-lighter);
}

.card-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-muted);
}

/* Game Display */
.game-display {
    padding: 5rem 2rem;
    background: var(--bg-dark);
}

.display-title {
    text-align: center;
    margin-bottom: 3rem;
}

.display-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.display-title p {
    color: var(--text-muted);
}

.game-window {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(255,20,147,0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,20,147,0.1);
}

.game-window iframe {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

/* Text Block */
.text-block {
    padding: 5rem 2rem;
    background: var(--bg-card);
}

.text-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.text-inner h2 {
    font-size: 2.2rem;
    color: var(--pink);
    margin-bottom: 2rem;
}

.text-inner p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Footer */
.page-footer {
    background: var(--bg-dark);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255,20,147,0.2);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.support-area {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,20,147,0.1);
}

.support-area h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-text {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Age Modal */
.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(18,8,24,0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
}

.age-modal.gone {
    display: none;
}

.age-content {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 480px;
    border: 2px solid var(--pink);
    box-shadow: 0 0 60px rgba(255,20,147,0.3);
}

.age-content h2 {
    font-size: 1.8rem;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.age-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-accept {
    background: linear-gradient(135deg, var(--pink), var(--violet));
    color: var(--text-light);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-accept:hover {
    transform: scale(1.05);
}

.age-decline {
    background: transparent;
    color: var(--text-muted);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: 2px solid var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-decline:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

/* Page Styles */
.page-top {
    padding: 9rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-card), var(--bg-dark));
}

.page-top h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.page-top p {
    color: var(--text-muted);
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-body h2 {
    font-size: 1.8rem;
    color: var(--pink);
    margin: 2.5rem 0 1rem;
}

.page-body h3 {
    font-size: 1.3rem;
    color: var(--violet);
    margin: 2rem 0 0.8rem;
}

.page-body p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.page-body ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.page-body li {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}

.page-body li::before {
    content: '♦';
    color: var(--pink);
    position: absolute;
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .splash {
        padding: 3rem 1.5rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .game-window iframe {
        height: 480px;
    }
    
    .age-content {
        padding: 2rem;
    }
    
    .age-btns {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .support-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
