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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #333;
    line-height: 1.6;
}

.navbar {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.75rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
    font-size: 1.05rem;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(190, 24, 93, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23333" width="100" height="100"/></svg>');
    background-size: cover;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #EC4899;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #EC4899;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

.highlights {
    padding: 4rem 0;
    background: linear-gradient(to bottom, white, #f8f9fa);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.highlight-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: #EC4899;
}

.card-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.5rem;
    color: #BE185D;
    margin-bottom: 1rem;
}

.game-display {
    padding: 4rem 0;
    background: white;
}

.game-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.game-wrapper {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.features-grid {
    padding: 4rem 0;
    background: #f8f9fa;
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-col {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-col h4 {
    color: #EC4899;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.disclaimers {
    padding: 4rem 0;
    background: white;
}

.disclaimer-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.disclaimer-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #EC4899;
}

.disclaimer-box h3 {
    color: #BE185D;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.footer-col h4 {
    color: #EC4899;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #EC4899;
}

.footer-note {
    color: #999;
    margin-top: 0.5rem;
}

.age-modal {
    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-modal.active {
    display: flex;
}

.age-modal-inner {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-modal-inner h2 {
    color: #EC4899;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.age-modal-inner p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.age-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.age-btns button {
    flex: 1;
    padding: 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-age-yes {
    background: #10B981;
    color: white;
}

.btn-age-no {
    background: #EF4444;
    color: white;
}

.age-btns button:hover {
    transform: scale(1.05);
}

.play-header {
    padding: 3rem 0;
    text-align: center;
    background: white;
}

.play-header h1 {
    color: #EC4899;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.play-game {
    padding: 2rem 0;
}

.game-wrapper-full {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-wrapper-full iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.play-guide {
    padding: 3rem 0;
    background: white;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.guide-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.guide-box h4 {
    color: #EC4899;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-page {
    padding: 3rem 0;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #EC4899;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-date {
    color: #777;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: #BE185D;
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

.emphasis-box {
    background: #FFF0F6;
    border: 3px solid #EC4899;
    padding: 2rem;
    margin-top: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.emphasis-box h3 {
    color: #BE185D;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #BE185D 0%, #9D174D 100%);
        padding: 1.5rem;
        gap: 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-wrapper iframe,
    .game-wrapper-full iframe {
        height: 400px;
    }

    .highlight-cards,
    .feature-columns,
    .disclaimer-boxes,
    .guide-grid {
        grid-template-columns: 1fr;
    }
}