@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;700&display=swap');

:root {
    --dragon-red: #8b0000;
    --fire-orange: #ff4500;
    --mountain-grey: #2f2f2f;
    --smoke-light: #d3d3d3;
    --ash-dark: #1a1a1a;
    --gold-accent: #ffa500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(circle at center, var(--mountain-grey) 0%, var(--ash-dark) 100%);
    color: var(--smoke-light);
    line-height: 1.6;
}

.top-bar {
    background: linear-gradient(90deg, var(--dragon-red) 0%, var(--fire-orange) 50%, var(--dragon-red) 100%);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header {
    background: rgba(26, 26, 26, 0.95);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--fire-orange);
    box-shadow: 0 5px 25px rgba(255, 69, 0, 0.4);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--fire-orange);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--smoke-light);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.7rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s;
}

.main-nav a:hover {
    color: var(--fire-orange);
    border-color: var(--fire-orange);
    background: rgba(255, 69, 0, 0.1);
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-icon div {
    width: 30px;
    height: 4px;
    background: var(--fire-orange);
    border-radius: 2px;
    transition: 0.3s;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-banner {
    background: linear-gradient(135deg, var(--dragon-red) 0%, var(--mountain-grey) 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 20px;
    border: 5px solid var(--fire-orange);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 69, 0, 0.05) 10px,
        rgba(255, 69, 0, 0.05) 20px
    );
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 5px;
}

.hero-banner p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.alert-boxes {
    display: flex;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.alert-box {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(135deg, var(--mountain-grey) 0%, var(--ash-dark) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid var(--fire-orange);
    position: relative;
}

.alert-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--dragon-red), var(--fire-orange), var(--gold-accent));
}

.alert-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.game-zone {
    background: rgba(26, 26, 26, 0.8);
    padding: 4rem 3rem;
    margin: 4rem 0;
    border-radius: 25px;
    border: 5px solid var(--dragon-red);
    box-shadow: 0 0 50px rgba(139, 0, 0, 0.5);
}

.game-zone h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--fire-orange);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
}

.game-display {
    background: black;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid var(--gold-accent);
}

.game-embed {
    width: 100%;
    max-width: 800px;
    height: 600px;
    border: 4px solid var(--fire-orange);
    border-radius: 10px;
}

.info-section {
    background: linear-gradient(to right, rgba(139, 0, 0, 0.2), rgba(47, 47, 47, 0.2));
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 15px;
    border-left: 8px solid var(--fire-orange);
    border-right: 8px solid var(--dragon-red);
}

.info-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.info-section p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.info-section strong {
    color: var(--fire-orange);
}

footer {
    background: var(--ash-dark);
    padding: 4rem 2rem;
    margin-top: 5rem;
    border-top: 5px solid var(--dragon-red);
}

.footer-box {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-resources a {
    color: var(--fire-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--fire-orange);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-resources a:hover {
    background: var(--fire-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, var(--mountain-grey) 0%, var(--ash-dark) 100%);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 6px solid var(--fire-orange);
    box-shadow: 0 0 80px rgba(255, 69, 0, 0.6);
}

.age-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
    letter-spacing: 4px;
}

.age-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.age-controls {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid var(--fire-orange);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.age-accept {
    background: var(--fire-orange);
    color: white;
}

.age-accept:hover {
    background: var(--gold-accent);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

.age-reject {
    background: transparent;
    color: var(--fire-orange);
}

.age-reject:hover {
    background: rgba(255, 69, 0, 0.2);
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .main-nav ul {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
        border-bottom: 4px solid var(--fire-orange);
    }

    .main-nav ul.active {
        left: 0;
    }

    .main-nav li {
        margin: 1rem 0;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .alert-boxes {
        flex-direction: column;
    }

    .game-embed {
        height: 400px;
    }

    .age-content {
        margin: 1rem;
        padding: 2.5rem;
    }

    .age-controls {
        flex-direction: column;
    }
}
