@import url("css2.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #f97316;
    --red: #ef4444;
    --yellow: #f59e0b;
    --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: rgb(127 29 29 / 95%);
    padding: 1.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ef4444;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-btn span {
    width: 32px;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, 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: #ef4444;
}

/* Hero */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.15));
    border-bottom: 2px solid #ef4444;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #ef4444;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 8px rgba(239, 68, 68, 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(239, 68, 68, 0.2), rgba(249, 115, 22, 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: #ef4444;
    font-size: 1.3rem;
}

.content-box {
    background: #7f1d1d;
    padding: 3.5rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 1350px;
    border-left: 5px solid #ef4444;
}

.content-box h2 {
    font-family: 'Outfit', sans-serif;
    color: #ef4444;
    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: #7f1d1d;
    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, #7f1d1d, var(--dark));
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.feature:hover {
    border-color: #ef4444;
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(239, 68, 68, 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: #7f1d1d;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #ef4444;
    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: #7f1d1d;
    padding: 4rem 2rem;
    margin-top: 6rem;
    border-top: 3px solid #ef4444;
}

.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, #ef4444, #f97316);
    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(239, 68, 68, 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, #7f1d1d, var(--dark));
    padding: 4rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 4px solid #ef4444;
    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: #ef4444;
    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, #ef4444, #f97316);
    color: var(--darker);
}

.btn-enter:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(239, 68, 68, 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: #7f1d1d;
        transition: right 0.3s;
        padding-top: 80px;
        border-left: 3px solid #ef4444;
    }

    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;
    }
}
