* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #e0e0e0;
    line-height: 1.8;
    min-height: 100vh;
}

.site-wrapper {
    width: 100%;
}

.top-bar {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    padding: 18px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 35px;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emoji {
    font-size: 42px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-name {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.burger-menu {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.burger-line {
    width: 32px;
    height: 4px;
    background: #ffffff;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.site-nav {
    display: flex;
    gap: 35px;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 10px 18px;
    border-radius: 8px;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.intro-block {
    padding: 90px 35px;
    text-align: center;
}

.intro-block h1 {
    font-size: 68px;
    font-weight: 900;
    color: #00d2ff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.intro-block p {
    font-size: 26px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.9;
    color: #b3e5fc;
}

.info-card {
    max-width: 1100px;
    margin: 50px auto;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(58, 123, 213, 0.2));
    border: 4px solid #00d2ff;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.info-card h2 {
    font-size: 40px;
    color: #00d2ff;
    text-align: center;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border-left: 5px solid #00d2ff;
}

.info-emoji {
    font-size: 36px;
}

.info-description {
    font-size: 19px;
    line-height: 1.8;
}

.game-area {
    padding: 80px 35px;
}

.game-area h2 {
    font-size: 52px;
    text-align: center;
    color: #00d2ff;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-box {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(58, 123, 213, 0.3));
    padding: 35px;
    border-radius: 30px;
    border: 4px solid #00d2ff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-box iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 20px;
}

.main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 35px;
}

.main-content h1 {
    font-size: 58px;
    color: #00d2ff;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-content h2 {
    font-size: 46px;
    color: #00d2ff;
    margin-bottom: 30px;
    margin-top: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-content p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 2;
}

.main-content ul {
    list-style: none;
    margin: 35px 0;
}

.main-content ul li {
    padding: 18px 0;
    padding-left: 45px;
    position: relative;
    font-size: 19px;
}

.main-content ul li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #00d2ff;
    font-size: 22px;
}

.bottom-bar {
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    padding: 45px 35px;
    text-align: center;
    margin-top: 90px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    transition: opacity 0.3s;
    text-transform: uppercase;
}

.footer-menu a:hover {
    opacity: 0.8;
}

.footer-info {
    font-size: 16px;
    color: #ffffff;
}

.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 39, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-overlay.visible {
    display: flex;
}

.age-dialog {
    background: linear-gradient(135deg, #0f2027, #2c5364);
    border: 5px solid #00d2ff;
    border-radius: 30px;
    padding: 55px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
}

.age-dialog h2 {
    font-size: 44px;
    color: #00d2ff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-dialog p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.age-choices {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.age-choice {
    padding: 20px 55px;
    font-size: 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.age-choice.accept {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
}

.age-choice.decline {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    color: white;
}

.age-choice:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: linear-gradient(180deg, #0f2027, #2c5364);
        flex-direction: column;
        padding: 45px;
        gap: 25px;
        transition: left 0.4s;
    }

    .site-nav.active {
        left: 0;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .intro-block h1 {
        font-size: 44px;
    }

    .intro-block p {
        font-size: 20px;
    }

    .game-box iframe {
        height: 550px;
    }

    .age-dialog {
        padding: 35px;
        margin: 20px;
    }

    .age-dialog h2 {
        font-size: 34px;
    }

    .age-choices {
        flex-direction: column;
    }

    .logo-name {
        font-size: 28px;
    }

    .logo-emoji {
        font-size: 34px;
    }
}
