* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1929;
    --dark-blue: #162e4d;
    --bright-yellow: #ffd60a;
    --orange: #ff9500;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

header {
    background: var(--dark-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--bright-yellow);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bright-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--bright-yellow);
    border-color: var(--bright-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: var(--bright-yellow);
    transition: all 0.3s;
}

main {
    margin-top: 90px;
    padding: 0;
}

.hero-bold {
    background: linear-gradient(135deg, var(--dark-blue), var(--navy));
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-bold::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--bright-yellow);
    opacity: 0.05;
    transform: skewX(-15deg);
}

.hero-content-bold {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--bright-yellow);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.game-embed-hero {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 3px solid var(--bright-yellow);
}

.game-embed-hero iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 5px;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.warning-banner {
    background: var(--orange);
    color: var(--navy);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 0;
    border-left: 10px solid var(--bright-yellow);
}

.warning-banner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.warning-banner ul {
    list-style: none;
}

.warning-banner li {
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 2px solid rgba(10, 25, 41, 0.2);
}

.warning-banner li:before {
    content: '▶ ';
    color: var(--navy);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-block {
    background: var(--dark-blue);
    padding: 3rem;
    border-left: 6px solid var(--bright-yellow);
    transition: all 0.3s;
}

.feature-block:hover {
    transform: translateX(10px);
    background: var(--dark-blue);
    border-left-width: 12px;
}

.feature-block h3 {
    color: var(--bright-yellow);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.game-section-full {
    background: var(--dark-blue);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.game-section-full h2 {
    color: var(--bright-yellow);
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.game-section-full iframe {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    border: 5px solid var(--bright-yellow);
    display: block;
    margin: 0 auto;
}

.text-block {
    background: var(--dark-blue);
    padding: 3rem;
    margin: 3rem 0;
    border-top: 5px solid var(--bright-yellow);
    border-bottom: 5px solid var(--orange);
}

.text-block h2 {
    color: var(--bright-yellow);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.text-block p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

footer {
    background: var(--dark-blue);
    border-top: 5px solid var(--bright-yellow);
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--bright-yellow);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--orange);
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 41, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: var(--dark-blue);
    padding: 4rem;
    border: 5px solid var(--bright-yellow);
    max-width: 550px;
    text-align: center;
}

.age-modal-content h2 {
    color: var(--bright-yellow);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: 3px solid var(--bright-yellow);
    background: var(--bright-yellow);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.age-btn.no {
    background: transparent;
    color: var(--bright-yellow);
}

.age-btn.no:hover {
    background: var(--bright-yellow);
    color: var(--navy);
}

.terms-content {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.terms-content h1 {
    color: var(--bright-yellow);
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 5px solid var(--bright-yellow);
    padding-bottom: 1rem;
}

.terms-content h2 {
    color: var(--bright-yellow);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
}

.terms-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.terms-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-blue);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-content-bold {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .feature-blocks {
        grid-template-columns: 1fr;
    }

    .game-section-full iframe,
    .game-embed-hero iframe {
        height: 500px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
