@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;800&family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crimson: #dc2626;
    --gold: #fbbf24;
    --dark-red: #991b1b;
    --charcoal: #171717;
    --ash: #404040;
    --cream: #fffbeb;
    --white: #ffffff;
    --border-light: #e5e5e5;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    min-height: 100vh;
}

.strip {
    background: var(--crimson);
    color: white;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

header {
    background: var(--charcoal);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Rubik', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-symbol {
    width: 44px;
    height: 44px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: var(--gold);
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.main-hero {
    background: linear-gradient(to right, var(--dark-red), var(--crimson));
    padding: 4.5rem 0;
    text-align: center;
    color: white;
}

.main-hero h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-hero p {
    font-size: 1.35rem;
}

.info-panel {
    background: white;
    margin: 3.5rem auto;
    max-width: 850px;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.15);
    border-top: 4px solid var(--crimson);
}

.info-panel h2 {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 2rem;
}

.info-panel ul {
    list-style: none;
}

.info-panel li {
    padding: 0.9rem 0;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-panel li::before {
    content: '►';
    color: var(--crimson);
    font-size: 1.3rem;
    font-weight: bold;
}

.content-area {
    padding: 3rem 0;
    max-width: 1050px;
    margin: 0 auto;
}

.content-area h2 {
    color: var(--charcoal);
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.content-area p {
    font-size: 1.12rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.gaming-box {
    background: white;
    border-radius: 10px;
    padding: 3rem;
    margin: 3.5rem auto;
    max-width: 1200px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.gaming-box h2 {
    text-align: center;
    color: var(--crimson);
    margin-bottom: 2rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
}

.game-embed {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 8px;
    background: #000;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
    max-width: 1200px;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--crimson);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.2);
}

.feature-card h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.75;
}

footer {
    background: var(--charcoal);
    color: white;
    padding: 3.5rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 0.7rem 0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--ash);
    max-width: 1200px;
    margin: 2rem auto 0;
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 23, 23, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-check.active {
    display: flex;
}

.age-dialog {
    background: white;
    padding: 3.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 520px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-top: 5px solid var(--crimson);
}

.age-dialog h2 {
    font-family: 'Rubik', sans-serif;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    font-weight: 800;
}

.age-dialog p {
    margin-bottom: 2rem;
    font-size: 1.08rem;
    line-height: 1.7;
}

.age-options {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.age-btn {
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
}

.btn-enter {
    background: var(--crimson);
    color: white;
}

.btn-enter:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-exit {
    background: white;
    color: var(--ash);
    border: 2px solid var(--border-light);
}

.btn-exit:hover {
    background: var(--border-light);
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .main-nav {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: var(--charcoal);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav li {
        padding: 1.2rem 0;
    }

    .main-hero h1 {
        font-size: 2.5rem;
    }

    .main-hero p {
        font-size: 1.15rem;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 500px;
    }

    .age-options {
        flex-direction: column;
    }
}
