* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #F5F5F7;
    color: #1D1D1F;
    line-height: 1.6;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.95), rgba(196, 30, 58, 0.95));
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-panel {
    background: white;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.age-gate-header {
    background: linear-gradient(135deg, #FF6B9D, #C41E3A);
    padding: 40px;
    text-align: center;
    color: white;
}

.age-icon {
    font-size: 4em;
    margin-bottom: 15px;
}

.age-gate-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    font-weight: 700;
}

.age-gate-body {
    padding: 40px;
}

.age-gate-body p {
    text-align: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05em;
}

.age-notice {
    font-size: 0.9em !important;
    color: #888 !important;
    font-style: italic;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-confirm, .btn-deny {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #FF6B9D, #C41E3A);
    color: white;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.btn-deny {
    background: #E0E0E0;
    color: #666;
}

.btn-deny:hover {
    background: #D0D0D0;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1D1D1F 0%, #2D2D2F 100%);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #FF6B9D;
    font-weight: 900;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.sidebar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FF6B9D;
    transition: all 0.3s ease;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FF6B9D;
    border-left-color: #FF6B9D;
}

.nav-link.active {
    background: rgba(255, 107, 157, 0.1);
    color: #FF6B9D;
    border-left-color: #FF6B9D;
}

.nav-icon {
    font-size: 1.3em;
}

.nav-text {
    font-weight: 600;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
}

.hero-banner {
    background: linear-gradient(135deg, #FF6B9D 0%, #C41E3A 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-tagline {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #C41E3A;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.introduction {
    padding: 80px 40px;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #C41E3A;
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.featured-game {
    padding: 80px 40px;
    background: #F8F8F8;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #C41E3A;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1em;
    color: #777;
}

.game-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.key-points {
    padding: 80px 40px;
    background: white;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.point-card {
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.point-card.pink {
    background: linear-gradient(135deg, #FFE5F0, #FFD4E5);
}

.point-card.purple {
    background: linear-gradient(135deg, #F0E5FF, #E5D4FF);
}

.point-card.blue {
    background: linear-gradient(135deg, #E5F4FF, #D4EBFF);
}

.point-card:hover {
    transform: translateY(-10px);
}

.point-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.point-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    color: #C41E3A;
    margin-bottom: 15px;
}

.point-card p {
    color: #555;
    line-height: 1.6;
}

.benefits {
    padding: 80px 40px;
    background: #F8F8F8;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-number {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 900;
    color: #FF6B9D;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #C41E3A;
    margin-bottom: 10px;
}

.benefit-details p {
    color: #666;
    line-height: 1.6;
}

.call-to-action {
    padding: 100px 40px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C41E3A 100%);
    text-align: center;
    color: white;
}

.call-to-action h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.main-footer {
    background: #1D1D1F;
    color: #B0B0B0;
    padding: 60px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    color: #FF6B9D;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-links, .footer-links {
    list-style: none;
}

.resource-links li, .footer-links li {
    margin-bottom: 12px;
}

.resource-links a, .footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-links a:hover, .footer-links a:hover {
    color: #FF6B9D;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sidebar-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-overlay h1 {
        font-size: 2.5em;
    }

    .hero-tagline {
        font-size: 1.1em;
    }

    .section-header h2 {
        font-size: 2em;
    }

    .game-frame {
        height: 450px;
    }

    .points-grid {
        grid-template-columns: 1fr;
    }

    .benefit-row {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        font-size: 2.5em;
    }
}

.content-page {
    background: white;
    padding: 60px 40px;
}

.content-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #C41E3A;
    margin-bottom: 10px;
}

.last-updated {
    color: #999;
    font-size: 0.95em;
    margin-bottom: 40px;
}

.content-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #C41E3A;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.play-hero {
    background: linear-gradient(135deg, #FF6B9D 0%, #C41E3A 100%);
    padding: 80px 40px;
    color: white;
    text-align: center;
}

.play-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 20px;
}

.play-intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.game-play-section {
    padding: 60px 40px;
    background: white;
}

.game-info {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 30px;
    background: #F8F8F8;
    border-radius: 15px;
}

.game-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #C41E3A;
    margin-bottom: 15px;
}

.game-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}