* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.age-gate.hidden {
    display: none;
}

.age-gate-panel {
    background: white;
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.gate-icon {
    font-size: 72px;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-gate-panel h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.gate-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 20px;
    font-weight: 500;
}

.age-gate-panel > p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.gate-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.gate-btn {
    flex: 1;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.gate-btn.primary {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
}

.gate-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.gate-btn.secondary {
    background: #f3f4f6;
    color: #6b7280;
}

.gate-btn.secondary:hover {
    background: #e5e7eb;
}

.top-nav {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-links a {
    padding: 12px 24px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
}

.nav-links a:hover {
    background: #fef3f9;
    color: #ec4899;
}

.nav-links a.active {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
}

.hero-banner {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
    padding: 120px 32px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: #ec4899;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.content-wrap.narrow {
    max-width: 1000px;
}

.features-strip {
    padding: 100px 32px;
    background: white;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-box {
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-box.pink {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border: 2px solid #fbcfe8;
}

.feature-box.yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #fde68a;
}

.feature-box.purple {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 2px solid #ddd6fe;
}

.box-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-box p {
    color: #4b5563;
    line-height: 1.7;
}

.important-banner {
    padding: 100px 32px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.banner-heading {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.info-block {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 6px solid;
}

.info-block:nth-child(1) {
    border-left-color: #f59e0b;
}

.info-block:nth-child(2) {
    border-left-color: #ec4899;
}

.info-block:nth-child(3) {
    border-left-color: #8b5cf6;
}

.block-badge {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.info-block h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    color: #6b7280;
    line-height: 1.7;
}

.game-display {
    padding: 100px 32px;
    background: white;
}

.section-heading {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-heading.white {
    color: white;
}

.section-description {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 60px;
}

.game-wrapper {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 1200px;
    margin: 0 auto;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.perks-section {
    padding: 100px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.perk-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.perk-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.perk-emoji {
    font-size: 52px;
    display: block;
    margin-bottom: 20px;
}

.perk-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.perk-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.page-banner {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
    padding: 100px 32px;
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.banner-content p {
    font-size: 20px;
    opacity: 0.9;
}

.play-details {
    padding: 80px 32px;
    background: #fafafa;
}

.detail-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
}

.detail-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.detail-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.detail-card p {
    color: #6b7280;
    line-height: 1.7;
}

.legal-text {
    padding: 80px 32px;
    background: white;
}

.legal-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-text li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

.disclaimer-special .warning-panel {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 48px;
    border-left: 8px solid;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.warning-panel.red {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.warning-panel.blue {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.warning-panel.green {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.panel-icon {
    font-size: 48px;
}

.panel-header h2 {
    margin: 0;
    font-size: 28px;
}

.main-footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 80px 32px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-block h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-block p {
    line-height: 1.7;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.support-links a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.support-links a:hover {
    color: #fde68a;
}

.footer-legal {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
}

.footer-legal p {
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        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;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-text {
        font-size: 18px;
    }

    .banner-heading,
    .section-heading {
        font-size: 36px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .game-frame {
        height: 500px;
    }

    .age-gate-panel {
        padding: 40px 30px;
    }

    .gate-buttons {
        flex-direction: column;
    }

    .feature-boxes,
    .info-blocks,
    .perks-grid,
    .detail-cards {
        grid-template-columns: 1fr;
    }
}
