@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f97316;
    --secondary: #eab308;
    --accent: #dc2626;
    --dark: #78350f;
    --light: #fffbeb;
    --text: #451a03;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: linear-gradient(to bottom, #fed7aa 0%, #fef3c7 100%);
}

.container {
    width: 100%;
    max-width: 100%;
}

header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
    background: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-section {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.95) 0%, rgba(234, 179, 8, 0.95) 100%);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 900px;
}

.main-content {
    background: white;
    padding: 4rem 3rem;
}

.content-box {
    max-width: 1600px;
    margin: 0 auto;
}

.main-content h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.main-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text);
}

.warning-panel {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid var(--secondary);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.warning-panel h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.warning-panel ul {
    list-style: none;
}

.warning-panel li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.warning-panel li::before {
    content: "🎯 ";
    margin-right: 0.8rem;
}

.game-embed {
    margin: 4rem auto;
    max-width: 1600px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.game-iframe {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 4rem auto;
    max-width: 1600px;
}

.info-item {
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--secondary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.info-item p {
    font-size: 1.05rem;
}

footer {
    background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
    color: white;
    padding: 4rem 3rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto 3rem;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-column a {
    color: #fef3c7;
    text-decoration: none;
    display: block;
    margin: 0.8rem 0;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: #fef3c7;
}

.age-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.age-modal-box {
    background: linear-gradient(135deg, white 0%, #fef3c7 100%);
    margin: 8% auto;
    padding: 4rem;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--secondary);
}

.age-modal-box h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.age-modal-box p {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.button {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
}

.button-confirm {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.button-decline {
    background: #f3f4f6;
    color: var(--text);
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
        transition: right 0.4s;
        padding: 6rem 2rem;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .header-wrapper {
        padding: 1rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .main-content h2 {
        font-size: 2rem;
    }

    .game-iframe {
        height: 500px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
