* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #f1f8f4, #e8f5e9);
    color: #2e3d2f;
    line-height: 1.7;
}

.section-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(76, 175, 80, 0.15);
    position: sticky;
    top: 0;
    z-index: 3000;
    border-bottom: 3px solid #4caf50;
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 800;
    color: #2e7d32;
}

.brand-symbol {
    font-size: 44px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.brand-title {
    color: #2e7d32;
    text-shadow: 1px 1px 2px rgba(76, 175, 80, 0.2);
}

.main-menu {
    display: flex;
    gap: 35px;
}

.menu-item {
    color: #558b2f;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s;
    position: relative;
}

.menu-item:hover,
.menu-item.active {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-line {
    width: 30px;
    height: 3px;
    background: #4caf50;
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 87px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 87px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 40px 25px;
        gap: 20px;
        transition: right 0.4s;
        box-shadow: -5px 0 20px rgba(76, 175, 80, 0.2);
        border-left: 3px solid #4caf50;
    }

    .main-menu.open {
        right: 0;
    }

    .menu-item {
        width: 100%;
        font-size: 19px;
        padding: 14px 20px;
    }

    .menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }
}

.hero-banner {
    background: linear-gradient(135deg, #a5d6a7 0%, #66bb6a 100%);
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
}

.hero-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-heading {
    font-size: 62px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text {
    font-size: 26px;
    color: #f1f8e9;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 17px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 42px;
    }

    .hero-text {
        font-size: 20px;
    }

    .hero-banner {
        padding: 70px 0;
    }
}

.intro-section {
    padding: 90px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    color: #2e7d32;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #66bb6a, #4caf50);
    margin: 15px auto 0;
    border-radius: 2px;
}

.intro-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.intro-block {
    background: linear-gradient(135deg, #f1f8f4, #e8f5e9);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.15);
    transition: all 0.4s;
    border: 2px solid #c8e6c9;
}

.intro-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.25);
    border-color: #4caf50;
}

.block-emoji {
    font-size: 68px;
    margin-bottom: 20px;
}

.intro-block h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2e7d32;
    font-weight: 700;
}

.intro-block p {
    font-size: 17px;
    color: #558b2f;
    line-height: 1.8;
}

.game-display {
    padding: 90px 0;
    background: #f9fdf9;
}

.section-description {
    text-align: center;
    font-size: 20px;
    color: #558b2f;
    margin-bottom: 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.game-wrapper {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
    border: 3px solid #c8e6c9;
    margin-bottom: 25px;
}

.game-window {
    width: 100%;
    height: 640px;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .game-window {
        height: 510px;
    }
}

.game-info {
    text-align: center;
    font-size: 18px;
    color: #558b2f;
    font-weight: 600;
}

.important-info {
    padding: 90px 0;
    background: white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.info-card {
    padding: 40px 35px;
    border-radius: 18px;
    text-align: center;
    border: 3px solid;
    transition: all 0.3s;
    background: white;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.info-card.orange-accent {
    border-color: #ff9800;
    background: linear-gradient(to bottom, white, #fff3e0);
}

.info-card.green-accent {
    border-color: #4caf50;
    background: linear-gradient(to bottom, white, #e8f5e9);
}

.info-card.red-accent {
    border-color: #f44336;
    background: linear-gradient(to bottom, white, #ffebee);
}

.card-emoji {
    font-size: 68px;
    margin-bottom: 22px;
}

.info-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2e3d2f;
    font-weight: 700;
}

.info-card p {
    font-size: 17px;
    color: #558b2f;
    line-height: 1.8;
}

.benefits-section {
    padding: 90px 0;
    background: #f9fdf9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
    transition: all 0.3s;
    border-left: 4px solid #4caf50;
}

.benefit:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.2);
}

.benefit-icon {
    font-size: 52px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2e7d32;
    font-weight: 700;
}

.benefit-content p {
    font-size: 16px;
    color: #558b2f;
    line-height: 1.8;
}

.call-action {
    padding: 100px 0;
    background: linear-gradient(135deg, #66bb6a, #4caf50);
}

.action-box {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.action-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.action-box p {
    font-size: 22px;
    color: #f1f8e9;
    margin-bottom: 40px;
}

.action-btn {
    display: inline-block;
    padding: 18px 55px;
    background: white;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s;
    border: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: #f1f8e9;
    background: #f1f8e9;
}

.site-footer {
    background: #1b5e20;
    padding: 70px 0 30px;
    color: #c8e6c9;
}

.footer-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-column h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.footer-column p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #c8e6c9;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(200, 230, 201, 0.3);
    color: #a5d6a7;
    font-size: 15px;
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-dialog {
    background: linear-gradient(135deg, #f1f8f4, #e8f5e9);
    padding: 55px 45px;
    border-radius: 25px;
    text-align: center;
    max-width: 540px;
    border: 4px solid #4caf50;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.4);
}

.age-symbol {
    font-size: 85px;
    margin-bottom: 22px;
}

.age-dialog h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2e7d32;
    font-weight: 800;
}

.age-dialog p {
    font-size: 19px;
    margin-bottom: 16px;
    color: #558b2f;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 22px;
    margin-top: 35px;
    justify-content: center;
}

.accept-age,
.reject-age {
    padding: 16px 42px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.accept-age {
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    color: white;
}

.accept-age:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.reject-age {
    background: linear-gradient(135deg, #ef5350, #e53935);
    color: white;
}

.reject-age:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(239, 83, 80, 0.4);
}

@media (max-width: 768px) {
    .age-dialog {
        padding: 40px 28px;
        margin: 20px;
    }

    .age-buttons {
        flex-direction: column;
        width: 100%;
    }

    .accept-age,
    .reject-age {
        width: 100%;
    }
}

.play-header {
    padding: 70px 0 35px;
    text-align: center;
    background: white;
}

.play-header h2 {
    font-size: 44px;
    color: #2e7d32;
    margin-bottom: 18px;
    font-weight: 800;
}

.play-header p {
    font-size: 19px;
    color: #558b2f;
    max-width: 950px;
    margin: 0 auto;
    line-height: 1.8;
}

.instructions {
    background: linear-gradient(135deg, #f1f8f4, #e8f5e9);
    padding: 38px;
    border-radius: 18px;
    border: 2px solid #c8e6c9;
    margin-top: 35px;
}

.instructions h3 {
    font-size: 28px;
    color: #2e7d32;
    margin-bottom: 22px;
    font-weight: 700;
}

.instructions ul {
    list-style: none;
}

.instructions li {
    font-size: 17px;
    color: #558b2f;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    line-height: 1.8;
}

.instructions li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-size: 14px;
}

.play-alert {
    padding: 65px 0;
}

.policy-wrapper {
    padding: 75px 0;
    background: white;
}

.policy-wrapper h1 {
    font-size: 54px;
    text-align: center;
    margin-bottom: 55px;
    color: #2e7d32;
    font-weight: 800;
}

.policy-block {
    background: linear-gradient(135deg, #f1f8f4, #e8f5e9);
    padding: 42px;
    border-radius: 18px;
    border-left: 6px solid #4caf50;
    margin-bottom: 32px;
}

.policy-block h2 {
    font-size: 34px;
    margin-bottom: 22px;
    color: #2e7d32;
    font-weight: 700;
}

.policy-block h3 {
    font-size: 26px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #388e3c;
    font-weight: 600;
}

.policy-block p {
    font-size: 17px;
    color: #558b2f;
    margin-bottom: 16px;
    line-height: 1.9;
}

.policy-block ul,
.policy-block ol {
    margin-left: 28px;
    margin-bottom: 16px;
}

.policy-block li {
    font-size: 17px;
    color: #558b2f;
    margin-bottom: 11px;
    line-height: 1.9;
}

.policy-block strong {
    color: #2e7d32;
    font-weight: 700;
}

.last-update {
    text-align: center;
    font-size: 15px;
    color: #81c784;
    margin-top: 45px;
}
