* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #2d3748;
    line-height: 1.6;
}

.top-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-symbol {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: 1px;
}

.main-nav {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    background: #f7fafc;
    color: #ff6b6b;
}

.nav-menu a.nav-active {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #2d3748;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-banner {
    background: linear-gradient(135deg, #4ecdc4, #44a8a2);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tag-teal { background: rgba(78, 205, 196, 0.3); }
.tag-coral { background: rgba(255, 107, 107, 0.3); }
.tag-purple { background: rgba(155, 89, 182, 0.3); }

.info-section {
    margin-bottom: 3rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #4ecdc4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-card.card-accent-coral { border-left-color: #ff6b6b; }
.info-card.card-accent-purple { border-left-color: #9b59b6; }

.info-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: #4a5568;
    line-height: 1.8;
}

.alert-section {
    margin-bottom: 3rem;
}

.alert-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 2rem;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.alert-icon {
    font-size: 2rem;
}

.alert-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2d3748;
}

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    color: #2d3748;
}

.alert-item strong {
    color: #e67e22;
}

.game-showcase {
    margin-bottom: 3rem;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #718096;
}

.game-wrapper {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.benefits-section {
    margin-bottom: 3rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #2d3748;
    margin-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
}

.numbers-section {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.number-item {
    color: #fff;
}

.number-big {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.number-label {
    display: block;
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-title-section {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.page-title-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #718096;
}

.tips-section {
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.tip-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.tip-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.tip-box p {
    color: #4a5568;
    line-height: 1.7;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-article {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legal-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.legal-article p,
.legal-article li {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-article ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-article a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
}

.legal-article a:hover {
    text-decoration: underline;
}

.warning-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.warning-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.warning-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-banner p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.site-footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    margin-bottom: 0.75rem;
}

.resource-list a {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-list a:hover {
    color: #ff6b6b;
}

.footer-legal {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-top: 1.5rem;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-panel {
    background: #ffffff;
    max-width: 500px;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.age-gate-panel p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.age-gate-small {
    font-size: 0.95rem;
    color: #718096;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-btn {
    flex: 1;
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.age-btn:hover {
    transform: scale(1.05);
}

.age-btn-yes {
    background: linear-gradient(135deg, #4ecdc4, #44a8a2);
    color: #fff;
}

.age-btn-no {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-menu a {
        padding: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .game-iframe {
        height: 500px;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .age-gate-panel {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
}
