@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gradient-start: #0f2027;
    --gradient-mid: #203a43;
    --gradient-end: #2c5364;
    --neon-green: #00ff88;
    --neon-blue: #00b4d8;
    --white: #ffffff;
    --text-gray: #c5d4de;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.8;
}

h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

a {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--neon-blue);
}

.header-area {
    background: rgba(15, 32, 39, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo svg {
    width: 42px;
    height: 42px;
}

.site-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.primary-nav a {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.primary-nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    transition: width 0.3s;
}

.primary-nav a:hover::before {
    width: 100%;
}

.primary-nav a:hover {
    color: var(--white);
}

.page-content {
    padding-top: 75px;
}

.hero-banner {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero-banner h1 span {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-gray);
}

.play-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    color: var(--gradient-start);
    padding: 1rem 3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 5px 30px rgba(0, 255, 136, 0.3);
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5);
    color: var(--gradient-start);
}

.alerts-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.alert-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.15);
    transition: all 0.3s;
}

.alert-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
}

.alert-card .emoji {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.alert-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--neon-green);
}

.alert-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.game-zone {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.game-zone h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.game-zone h2 span {
    color: var(--neon-green);
}

.game-zone .sub {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.game-embed {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.game-embed iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.benefits-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-box {
    text-align: center;
    padding: 2rem 1rem;
}

.benefit-box .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-box h4 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.benefit-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.text-page {
    padding: 4rem 2rem;
    max-width: 920px;
    margin: 0 auto;
}

.text-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.text-page h1 span {
    color: var(--neon-green);
}

.text-page h2 {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.text-page p {
    color: var(--text-gray);
    margin-bottom: 1.2rem;
}

.text-page ul {
    color: var(--text-gray);
    margin: 1rem 0 1.5rem 2rem;
}

.text-page li {
    margin-bottom: 0.5rem;
}

.footer-area {
    background: rgba(15, 32, 39, 0.9);
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gaming-links {
    margin-bottom: 1.5rem;
}

.gaming-links span {
    color: var(--neon-green);
    font-weight: 600;
    margin-right: 1rem;
}

.gaming-links a {
    margin: 0 0.7rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-inner .copy {
    color: var(--text-gray);
    font-size: 0.85rem;
    opacity: 0.7;
}

.age-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 39, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-popup {
    background: linear-gradient(135deg, var(--gradient-mid), var(--gradient-end));
    padding: 3rem;
    border-radius: 20px;
    max-width: 450px;
    text-align: center;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.age-popup h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.age-popup p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btns button {
    padding: 0.9rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accept {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    border: none;
    color: var(--gradient-start);
}

.btn-accept:hover {
    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.4);
}

.btn-reject {
    background: transparent;
    border: 2px solid var(--text-gray);
    color: var(--text-gray);
}

.btn-reject:hover {
    border-color: var(--white);
    color: var(--white);
}

.hidden {
    display: none !important;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .primary-nav {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(15, 32, 39, 0.98);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s;
    }
    
    .primary-nav.show {
        transform: translateY(0);
    }
    
    .primary-nav ul {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    
    .hero-banner h1 {
        font-size: 2.3rem;
    }
    
    .alerts-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-embed iframe {
        height: 450px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .text-page h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.2rem;
    }
    
    .hero-banner {
        padding: 4rem 1rem;
    }
    
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .game-embed iframe {
        height: 320px;
    }
    
    .age-popup {
        margin: 1rem;
        padding: 2rem;
    }
}
