* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #2d3748;
    line-height: 1.7;
    min-height: 100vh;
}

.main-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area svg {
    color: #667eea;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: #667eea;
    letter-spacing: 1px;
}

.desktop-menu {
    display: flex;
    gap: 35px;
}

.desktop-menu a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.desktop-menu a:hover {
    color: #667eea;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-btn span {
    width: 32px;
    height: 4px;
    background: #667eea;
    border-radius: 4px;
    transition: all 0.3s;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.mobile-menu {
    display: none;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
}

.mobile-menu a {
    padding: 20px 25px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background: #f8f9fa;
    color: #667eea;
    padding-left: 35px;
}

.content {
    min-height: calc(100vh - 80px);
}

.intro-section {
    padding: 100px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.intro-inner h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.big-text {
    font-size: 1.6rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.badges-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.badge {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.badge.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.badge.pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.badge.purple {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.boxes-section {
    padding: 80px 25px;
    background: white;
}

.boxes-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.info-box {
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    color: white;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.box-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.box-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.box-purple {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.box-emoji {
    font-size: 4rem;
    margin-bottom: 25px;
}

.info-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.game-zone {
    padding: 80px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.zone-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.zone-header {
    text-align: center;
    margin-bottom: 60px;
}

.zone-header h2 {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
}

.zone-header p {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
}

.game-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 6px solid #f093fb;
}

.game-box iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.perks-section {
    padding: 80px 25px;
    background: white;
}

.perks-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.perks-title {
    text-align: center;
    font-size: 3.5rem;
    color: #667eea;
    font-weight: 900;
    margin-bottom: 70px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.perk-card {
    background: #f8f9fa;
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.perk-card:hover {
    transform: scale(1.05);
}

.perk-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
}

.blue-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.pink-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.purple-icon {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
}

.orange-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.teal-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: white;
}

.red-icon {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: white;
}

.perk-card h4 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.perk-card p {
    font-size: 1.05rem;
    color: #4a5568;
}

.notice-zone {
    padding: 70px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.notice-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.notice-card {
    background: #fef3c7;
    padding: 50px;
    border-radius: 20px;
    border-left: 8px solid #f59e0b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.notice-card h3 {
    color: #f59e0b;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 900;
}

.notice-card p {
    font-size: 1.2rem;
    color: #78350f;
}

.site-bottom {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 70px 25px 30px;
}

.bottom-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.bottom-brand .logo-area {
    margin-bottom: 20px;
}

.bottom-brand .logo-area svg {
    color: #f093fb;
}

.bottom-brand .logo-text {
    color: white;
}

.bottom-brand p {
    color: #cbd5e0;
}

.bottom-resources h4 {
    color: #f093fb;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.bottom-resources a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.bottom-resources a:hover {
    color: white;
}

.bottom-line {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #718096;
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check.active {
    display: flex;
}

.age-check-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    border: 6px solid #667eea;
}

.check-emoji {
    font-size: 6rem;
    margin-bottom: 30px;
}

.age-check-box h2 {
    color: #667eea;
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 900;
}

.age-check-box p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.check-question {
    font-weight: 800;
    font-size: 1.5rem;
    color: #2d3748;
    margin-top: 35px;
}

.check-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.check-buttons button {
    padding: 20px 50px;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.check-buttons button:hover {
    transform: scale(1.1);
}

.btn-yes {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(102,126,234,0.4);
}

.btn-no {
    background: #e2e8f0;
    color: #4a5568;
}

.title-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 90px 25px;
    text-align: center;
    color: white;
}

.title-block h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.title-block p {
    font-size: 1.4rem;
    opacity: 0.95;
}

.text-section {
    padding: 80px 25px;
    background: white;
}

.text-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.text-doc {
    background: #f8f9fa;
    padding: 70px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.text-doc h2 {
    color: #667eea;
    font-size: 2.2rem;
    margin: 50px 0 25px;
    font-weight: 800;
}

.text-doc h2:first-child {
    margin-top: 0;
}

.text-doc ul {
    margin-left: 40px;
    margin-bottom: 25px;
}

.text-doc li {
    margin-bottom: 12px;
    color: #4a5568;
}

.guide-section {
    padding: 60px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.guide-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.guide-box {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.guide-box h3 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 900;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    padding: 18px 0 18px 50px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1.1rem;
}

.guide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 2rem;
}

.guide-note {
    margin-top: 35px;
    padding: 25px;
    background: #fef3c7;
    border-left: 6px solid #f59e0b;
    border-radius: 10px;
    color: #78350f;
}

.play-zone {
    padding: 60px 25px;
    background: white;
}

.play-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.play-frame {
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 6px solid #f093fb;
}

.play-frame iframe {
    width: 100%;
    height: 800px;
    border: none;
}

.final-note {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    text-align: center;
}

.final-note h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 900;
}

@media (max-width: 968px) {
    .desktop-menu {
        display: none;
    }
    
    .burger-btn {
        display: flex;
    }
    
    .intro-inner h1,
    .title-block h1 {
        font-size: 2.5rem;
    }
    
    .big-text {
        font-size: 1.2rem;
    }
    
    .badges-row {
        flex-direction: column;
        align-items: center;
    }
    
    .boxes-container,
    .perks-grid {
        grid-template-columns: 1fr;
    }
    
    .zone-header h2,
    .perks-title {
        font-size: 2.2rem;
    }
    
    .game-box iframe,
    .play-frame iframe {
        height: 450px;
    }
    
    .age-check-box {
        margin: 20px;
        padding: 40px 25px;
    }
    
    .check-buttons {
        flex-direction: column;
    }
    
    .check-buttons button {
        width: 100%;
    }
    
    .text-doc {
        padding: 40px 25px;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
