* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff6600;
    --bright-yellow: #ffcc00;
    --deep-orange: #cc5200;
    --light-orange: #ff9944;
    --red-accent: #ff3300;
    --cream-bg: #fff8e7;
    --white: #ffffff;
    --text-dark: #2c1810;
    --text-gray: #666666;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--cream-bg) 0%, #fff 50%, var(--cream-bg) 100%);
    color: var(--text-dark);
    line-height: 1.6;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.95) 0%, rgba(204, 82, 0, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-overlay.hidden {
    display: none;
}

.age-container {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--bright-yellow);
}

.age-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-container h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.age-container p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 2.5rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--deep-orange) 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.6);
}

.btn-secondary {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.top-bar {
    background: white;
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area svg {
    height: 70px;
    width: auto;
}

.nav-burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-burger span {
    width: 30px;
    height: 4px;
    background: var(--primary-orange);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.hero-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bright-yellow) 0%, var(--light-orange) 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a3020;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-circle {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--bright-yellow) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(255, 102, 0, 0.6);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.intro-block,
.game-section,
.info-cards,
.features-grid {
    padding: 5rem 2rem;
}

.intro-block h2,
.game-section h2,
.info-cards h2,
.features-grid h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.text-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.text-block {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-orange);
}

.text-block h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 800;
}

.text-block p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.game-section {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.game-box {
    margin: 0 auto;
    max-width: 100%;
    border: 6px solid var(--primary-orange);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255, 102, 0, 0.25);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-tags {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--deep-orange) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.info-card {
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.card-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--deep-orange) 100%);
}

.card-yellow {
    background: linear-gradient(135deg, var(--bright-yellow) 0%, var(--light-orange) 100%);
    color: var(--text-dark);
}

.card-red {
    background: linear-gradient(135deg, var(--red-accent) 0%, var(--primary-orange) 100%);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary-orange);
    text-align: center;
}

.feature-num {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--bright-yellow);
    text-shadow: 2px 2px 0 var(--primary-orange);
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-box p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.bottom-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a0f08 100%);
    color: white;
    padding: 4rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    color: var(--bright-yellow);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-list a:hover {
    color: var(--bright-yellow);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 204, 0, 0.3);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        padding: 2rem;
        box-shadow: -5px 5px 25px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 0 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        gap: 1.5rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 250px;
    }

    .energy-circle {
        width: 200px;
        height: 200px;
    }

    .game-iframe {
        height: 500px;
    }

    .game-tags {
        flex-direction: column;
        align-items: center;
    }

    .age-container {
        margin: 1.5rem;
        padding: 3rem 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
