* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: linear-gradient(135deg, #fff5f7 0%, #fffef0 50%, #f0fff4 100%);
    color: #2d3748;
}

.age-check-modal {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #6bcf7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.age-check-modal.hidden {
    display: none;
}

.check-box {
    background: white;
    padding: 50px 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 5px solid #ff6b6b;
}

.check-emoji {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.check-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.check-text {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 12px;
}

.check-question {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.check-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.check-btn {
    flex: 1;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.check-btn.yes {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
}

.check-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.check-btn.no {
    background: #e2e8f0;
    color: #718096;
}

.check-btn.no:hover {
    background: #cbd5e0;
}

.top-bar {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-name {
    font-size: 30px;
    font-weight: 700;
    color: #2d3748;
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #ff6b6b;
}

.top-menu {
    display: flex;
    gap: 12px;
}

.menu-link {
    padding: 12px 24px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.2s;
}

.menu-link:hover {
    background: #fef5f7;
    color: #ff6b6b;
}

.menu-link.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
}

.page-main {
    min-height: calc(100vh - 80px);
}

.hero-zone {
    padding: 100px 32px;
    background: linear-gradient(135deg, #ffb6c1 0%, #ffd93d 50%, #98fb98 100%);
    text-align: center;
}

.zone-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.big-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.big-text {
    font-size: 24px;
    color: white;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.area-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.area-container.slim {
    max-width: 900px;
}

.features-area {
    padding: 100px 32px;
}

.feature-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.tile {
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s;
    border: 4px solid transparent;
}

.tile:hover {
    transform: translateY(-8px) rotate(2deg);
}

.tile.pink {
    background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 100%);
    border-color: #ff69b4;
}

.tile.yellow {
    background: linear-gradient(135deg, #ffd93d 0%, #ffe66d 100%);
    border-color: #ffc107;
}

.tile.green {
    background: linear-gradient(135deg, #6bcf7f 0%, #98fb98 100%);
    border-color: #00c853;
}

.tile.blue {
    background: linear-gradient(135deg, #87ceeb 0%, #b0e0e6 100%);
    border-color: #4682b4;
}

.tile-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
}

.tile-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d3748;
}

.tile-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.important-info {
    padding: 100px 32px;
    background: white;
}

.section-head {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2d3748;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.info-box {
    padding: 40px;
    border-radius: 24px;
    border: 4px solid;
}

.info-box.red-theme {
    background: #fff5f5;
    border-color: #fc8181;
}

.info-box.orange-theme {
    background: #fffaf0;
    border-color: #ffa500;
}

.info-box.purple-theme {
    background: #faf5ff;
    border-color: #9f7aea;
}

.box-badge {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.box-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d3748;
}

.box-content {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.game-zone {
    padding: 100px 32px;
    background: linear-gradient(135deg, #e0f7fa 0%, #f0f4c3 50%, #fce4ec 100%);
}

.zone-description {
    text-align: center;
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 60px;
}

.game-box {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 5px solid #ff6b6b;
    max-width: 1200px;
    margin: 0 auto;
}

.game-player {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.perks-section {
    padding: 100px 32px;
    background: white;
}

.perks-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.perk-bubble {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 36px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid #cbd5e0;
}

.perk-bubble:hover {
    transform: scale(1.05);
    border-color: #ff6b6b;
}

.bubble-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.perk-bubble h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3748;
}

.perk-bubble p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.page-top {
    padding: 80px 32px;
    background: linear-gradient(135deg, #ffb6c1 0%, #ffd93d 100%);
    text-align: center;
}

.top-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.page-intro {
    font-size: 22px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tips-area {
    padding: 80px 32px;
    background: white;
}

.tip-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
}

.tip-card {
    background: linear-gradient(135deg, #fff5f7 0%, #fffef0 100%);
    padding: 36px;
    border-radius: 24px;
    border: 3px solid #ffd93d;
}

.tip-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2d3748;
}

.tip-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.doc-content {
    padding: 80px 32px;
    background: white;
}

.doc-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.doc-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.doc-text ul {
    margin: 20px 0;
    padding-left: 32px;
}

.doc-text li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 10px;
}

.disclaimer-special .warning-card {
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 48px;
    border: 5px solid;
}

.warning-card.age-warning {
    background: #fff5f5;
    border-color: #fc8181;
}

.warning-card.money-warning {
    background: #fffaf0;
    border-color: #ffd93d;
}

.warning-card.fun-warning {
    background: #f0fff4;
    border-color: #6bcf7f;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.warning-emoji {
    font-size: 52px;
}

.warning-header h2 {
    margin: 0;
    font-size: 32px;
}

.page-footer {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: #e2e8f0;
    padding: 80px 32px 40px;
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd93d;
}

.footer-para {
    font-size: 16px;
    line-height: 1.7;
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.help-links a {
    color: #6bcf7f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.help-links a:hover {
    color: #98fb98;
}

.footer-note {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid #4a5568;
}

.footer-note p {
    color: #cbd5e0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-burger {
        display: block;
    }

    .top-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
    }

    .top-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .big-title {
        font-size: 40px;
    }

    .big-text {
        font-size: 18px;
    }

    .section-head {
        font-size: 36px;
    }

    .page-title {
        font-size: 36px;
    }

    .game-player {
        height: 500px;
    }

    .check-box {
        padding: 40px 30px;
    }

    .check-buttons {
        flex-direction: column;
    }

    .feature-tiles,
    .info-grid,
    .perks-layout,
    .tip-cards {
        grid-template-columns: 1fr;
    }
}
