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

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

:root {
    --sunset-orange: #F97316;
    --sunset-amber: #FBBF24;
    --sunset-rose: #FB7185;
    --deep-navy: #0C1222;
    --panel-dark: #151D2E;
    --ivory: #FFFBF5;
    --ivory-muted: #D4CFC5;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--deep-navy);
    color: var(--ivory);
    line-height: 1.8;
    background-image: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, transparent 50%, rgba(251, 113, 133, 0.03) 100%);
}

/* Navigation */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(12, 18, 34, 0.92);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.header-content {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo-sun {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.logo-sun::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--deep-navy);
    border-radius: 50%;
}

.logo-sun::after {
    content: '';
    position: absolute;
    inset: 14px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
    border-radius: 50%;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--sunset-amber);
    letter-spacing: 3px;
}

.site-nav {
    display: flex;
    gap: 42px;
}

.site-nav a {
    color: var(--ivory-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: var(--sunset-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--sunset-orange);
    transition: all 0.3s ease;
}

.nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Intro Section */
.intro-section {
    padding: 175px 40px 125px;
    text-align: center;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -60%);
    z-index: -1;
}

.intro-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--ivory);
}

.intro-section h1 span {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-section .lead {
    font-size: 1.25rem;
    color: var(--ivory-muted);
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.action-btn {
    display: inline-block;
    padding: 18px 55px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-rose));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.3);
}

.action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(249, 115, 22, 0.4);
}

/* Notice Panels */
.notice-panels {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.notice-panel {
    background: var(--panel-dark);
    padding: 42px 32px;
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid;
    transition: transform 0.3s ease;
}

.notice-panel:nth-child(1) { border-top-color: var(--sunset-orange); }
.notice-panel:nth-child(2) { border-top-color: var(--sunset-amber); }
.notice-panel:nth-child(3) { border-top-color: var(--sunset-rose); }

.notice-panel:hover {
    transform: translateY(-6px);
}

.notice-panel .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.notice-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--sunset-amber);
    margin-bottom: 14px;
}

.notice-panel p {
    color: var(--ivory-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Game Showcase */
.game-showcase {
    padding: 100px 40px;
}

.game-showcase h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-box {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--panel-dark);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.game-box iframe {
    width: 100%;
    height: 660px;
    border: none;
    border-radius: 12px;
}

/* Perks */
.perks-section {
    padding: 100px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.perks-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    text-align: center;
    color: var(--ivory);
    margin-bottom: 55px;
}

.perks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.perk {
    flex: 1 1 280px;
    max-width: 300px;
    background: linear-gradient(135deg, var(--panel-dark), rgba(249, 115, 22, 0.05));
    padding: 35px 28px;
    border-radius: 12px;
    border-left: 3px solid var(--sunset-orange);
}

.perk h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--sunset-orange);
    margin-bottom: 12px;
}

.perk p {
    color: var(--ivory-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Footer */
.page-footer {
    background: rgba(8, 12, 22, 0.95);
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    padding: 60px 40px 40px;
    margin-top: 90px;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--ivory-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--sunset-orange);
}

.help-links {
    padding-top: 35px;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.help-links p {
    color: var(--ivory-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.help-links a {
    color: var(--sunset-amber);
    text-decoration: none;
    margin: 0 20px;
    font-size: 0.85rem;
}

.help-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    margin-top: 35px;
    color: rgba(212, 207, 197, 0.4);
    font-size: 0.8rem;
}

/* Age Check */
.age-check {
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 34, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-check.hidden {
    display: none;
}

.age-modal {
    background: var(--panel-dark);
    border: 2px solid var(--sunset-orange);
    padding: 55px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 510px;
    margin: 25px;
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.2);
}

.age-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--sunset-amber);
    margin-bottom: 22px;
}

.age-modal p {
    color: var(--ivory-muted);
    margin-bottom: 35px;
    font-weight: 300;
}

.age-choices {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-yes, .age-no {
    padding: 15px 42px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.age-yes {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-rose));
    color: white;
}

.age-no {
    background: transparent;
    border: 2px solid var(--ivory-muted);
    color: var(--ivory-muted);
}

.age-yes:hover, .age-no:hover {
    transform: scale(1.05);
}

/* Content Pages */
.content-page {
    padding: 150px 40px 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    margin-bottom: 45px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: var(--sunset-orange);
    margin: 42px 0 18px;
}

.content-page p {
    color: var(--ivory-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.content-page ul {
    color: var(--ivory-muted);
    margin: 0 0 25px 28px;
    font-weight: 300;
}

.content-page li {
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 950px) {
    .notice-panels {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .site-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(12, 18, 34, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 22px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(249, 115, 22, 0.15);
    }
    
    .site-nav.active {
        transform: translateX(0);
    }
    
    .intro-section h1 {
        font-size: 2.6rem;
    }
    
    .intro-section .lead {
        font-size: 1.1rem;
    }
    
    .game-box iframe {
        height: 460px;
    }
    
    .perks-list {
        flex-direction: column;
        align-items: center;
    }
    
    .perk {
        max-width: 100%;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .age-choices {
        flex-direction: column;
    }
}
