@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --amber: #ff9500;
    --gold: #ffcc00;
    --dark: #1a1a1a;
    --darker: #0f0f0f;
    --mid: #2a2a2a;
    --light: #e5e5e5;
    --muted: #888;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.7;
}

/* Header */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--darker);
    border-bottom: 3px solid var(--amber);
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.4rem;
    color: var(--amber);
    text-decoration: none;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--amber);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu span {
    width: 30px;
    height: 3px;
    background: var(--amber);
}

/* Hero */
.hero-section {
    padding: 120px 40px 80px;
    background: 
        linear-gradient(135deg, rgba(255, 149, 0, 0.1) 0%, transparent 50%),
        var(--darker);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.hero-top {
    text-align: center;
    margin-bottom: 60px;
}

.hero-top h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-top h1 span {
    color: var(--amber);
}

.hero-top p {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--amber);
    color: var(--darker);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.hero-game {
    background: var(--dark);
    padding: 20px;
    border-left: 5px solid var(--amber);
}

.hero-game iframe {
    width: 100%;
    height: 520px;
    border: none;
}

/* Alerts Section */
.alerts-section {
    padding: 80px 40px;
    background: var(--dark);
}

.alerts-row {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.alert-box {
    flex: 1;
    padding: 50px 40px;
    background: var(--mid);
    border-top: 4px solid var(--amber);
    text-align: center;
}

.alert-box:nth-child(2) {
    background: var(--dark);
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.alert-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--amber);
}

.alert-box p {
    color: var(--muted);
}

/* Features */
.features-section {
    padding: 100px 40px;
}

.features-wrapper {
    max-width: 1600px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 60px;
    text-align: center;
}

.section-heading span {
    color: var(--amber);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-block {
    background: var(--dark);
    padding: 40px 30px;
    border-bottom: 3px solid var(--amber);
    transition: transform 0.3s;
}

.feature-block:hover {
    transform: translateY(-10px);
}

.feature-block h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.feature-block p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* About */
.about-section {
    padding: 100px 40px;
    background: var(--dark);
}

.about-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.about-text h2 span {
    color: var(--amber);
}

.about-text p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-highlights {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-box {
    background: var(--mid);
    padding: 30px;
    text-align: center;
    border-left: 3px solid var(--amber);
}

.highlight-box .big {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--amber);
}

.highlight-box .label {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Footer */
.site-footer {
    background: var(--darker);
    padding: 60px 40px 30px;
    border-top: 3px solid var(--amber);
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--amber);
}

.footer-col p {
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--amber);
}

.footer-bottom {
    max-width: 1600px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--mid);
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

/* Age Modal */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-overlay.hidden {
    display: none;
}

.age-dialog {
    background: var(--dark);
    padding: 50px;
    text-align: center;
    max-width: 500px;
    border-top: 5px solid var(--amber);
}

.age-dialog h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.age-dialog p {
    color: var(--muted);
    margin-bottom: 30px;
}

.age-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btns button {
    padding: 15px 40px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-yes {
    background: var(--amber);
    color: var(--darker);
}

.btn-yes:hover {
    background: var(--gold);
}

.btn-no {
    background: var(--mid);
    color: var(--light);
}

.btn-no:hover {
    background: #444;
}

/* Page Templates */
.page-hero {
    padding: 140px 40px 70px;
    background: var(--dark);
    text-align: center;
    border-bottom: 3px solid var(--amber);
}

.page-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--muted);
}

.page-body {
    padding: 80px 40px;
}

.body-content {
    max-width: 900px;
    margin: 0 auto;
}

.body-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin: 45px 0 20px;
    color: var(--amber);
}

.body-content p {
    color: var(--muted);
    margin-bottom: 18px;
}

.body-content ul {
    color: var(--muted);
    padding-left: 25px;
    margin-bottom: 20px;
}

.body-content li {
    margin-bottom: 10px;
}

/* Play Page */
.play-area {
    padding: 120px 40px 80px;
}

.play-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.game-display {
    background: var(--dark);
    padding: 20px;
    border-left: 5px solid var(--amber);
    margin-bottom: 40px;
}

.game-display iframe {
    width: 100%;
    height: 580px;
    border: none;
}

.game-notes {
    background: var(--dark);
    padding: 40px;
    border-top: 3px solid var(--amber);
}

.game-notes h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.game-notes p {
    color: var(--muted);
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker);
        padding: 30px 40px;
        display: none;
        border-top: 1px solid var(--mid);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-top h1 {
        font-size: 3rem;
    }
    
    .alerts-row {
        flex-direction: column;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .age-dialog {
        margin: 20px;
        padding: 35px 25px;
    }
    
    .age-btns {
        flex-direction: column;
    }
    
    .hero-game iframe,
    .game-display iframe {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1.8rem;
    }
    
    .hero-top h1 {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-game iframe,
    .game-display iframe {
        height: 340px;
    }
}
