@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Nunito:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #ff6b35;
    --red: #e63946;
    --yellow: #ffba08;
    --dark: #1b1b2f;
    --darker: #0f0f1e;
    --card: #2a2a3e;
    --light: #f8f9fa;
    --gray: #a8b2c1;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    color: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(42, 42, 62, 0.95);
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.logo::before {
    content: "●";
    color: var(--yellow);
    margin-right: 0.5rem;
    font-size: 2rem;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-btn span {
    width: 32px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-radius: 3px;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--orange);
}

/* Hero */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(230, 57, 70, 0.15));
    border-bottom: 2px solid var(--orange);
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.hero p {
    font-size: 1.5rem;
    max-width: 850px;
    margin: 0 auto;
    color: var(--gray);
    font-weight: 400;
}

/* Main */
.main {
    padding: 4rem 0;
}

.section {
    margin: 4rem 0;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(230, 57, 70, 0.2));
    border: 3px solid var(--red);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1350px;
}

.warning-box h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--yellow);
    margin-bottom: 2rem;
    font-size: 2.3rem;
    text-transform: uppercase;
}

.warning-box ul {
    list-style: none;
}

.warning-box li {
    padding: 1.2rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.15rem;
}

.warning-box li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 1.3rem;
}

.content-box {
    background: var(--card);
    padding: 3.5rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 1350px;
    border-left: 5px solid var(--orange);
}

.content-box h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--orange);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.content-box p {
    color: var(--gray);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.game-zone {
    background: var(--card);
    padding: 4rem;
    border-radius: 15px;
    margin: 4rem auto;
    text-align: center;
    max-width: 1350px;
    border: 3px solid var(--yellow);
}

.game-zone h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--yellow);
    margin-bottom: 2.5rem;
    font-size: 3rem;
    text-transform: uppercase;
}

.game-zone iframe {
    width: 100%;
    max-width: 900px;
    height: 700px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.7);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem auto;
    max-width: 1350px;
}

.feature {
    background: linear-gradient(135deg, var(--card), var(--dark));
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.feature:hover {
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.3);
}

.feature h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--yellow);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.feature p {
    color: var(--gray);
    line-height: 1.8;
}

.split-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin: 4rem auto;
    max-width: 1350px;
}

.sidebar {
    background: var(--card);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--orange);
    height: fit-content;
}

.sidebar h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--gray);
}

.sidebar li:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background: var(--card);
    padding: 4rem 2rem;
    margin-top: 6rem;
    border-top: 3px solid var(--orange);
}

.footer-content {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--yellow);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Age Verification */
.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 30, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-check.active {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, var(--card), var(--dark));
    padding: 4rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 4px solid var(--orange);
    box-shadow: 0 20px 80px rgba(255, 107, 53, 0.5);
}

.age-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--orange);
    text-transform: uppercase;
}

.age-box p {
    color: var(--gray);
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
}

.age-actions {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.age-actions button {
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.btn-enter {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: var(--darker);
}

.btn-enter:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.6);
}

.btn-exit {
    background: transparent;
    color: var(--gray);
    border: 3px solid var(--red);
}

.btn-exit:hover {
    background: var(--red);
    color: var(--light);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        background: var(--card);
        transition: right 0.3s;
        padding-top: 80px;
        border-left: 3px solid var(--orange);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    nav li {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 2.5rem;
    }

    .game-zone iframe {
        height: 450px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
