* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f7fa;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 75px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-emoji {
    font-size: 2.5rem;
}

.logo-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.menu-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-burger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.menu-item {
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.menu-item.active {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-content-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-heading {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subheading {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-cta {
    display: inline-block;
    background: #fff;
    color: #f5576c;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
}

/* Info Cards Section */
.info-cards-section {
    padding: 5rem 2rem;
    background: #fff;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-purple {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: #fff;
}

.card-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
}

.card-orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.section-heading.centered {
    text-align: center;
}

.about-paragraph {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}

/* Game Section */
.game-section {
    padding: 5rem 2rem;
    background: #fff;
}

.game-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.game-intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.game-frame-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2.5rem;
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
    background: #fff;
}

.game-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-pill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.why-choose-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.reason-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.reason-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.reason-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reason-item p {
    color: #666;
    line-height: 1.8;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}

.cta-text {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: #fff;
    color: #fa709a;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
}

/* Play Page */
.play-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
}

.play-page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.play-page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.quick-tips {
    padding: 3rem 2rem;
    background: #fff;
}

.tips-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tip-card h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tip-card ul {
    list-style-position: inside;
    color: #555;
}

.tip-card li {
    margin: 0.75rem 0;
    line-height: 1.7;
}

.game-player-section {
    padding: 3rem 2rem;
    background: #f5f7fa;
}

.game-player-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.game-player-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.game-player-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
    background: #fff;
}

.play-notice {
    padding: 2rem;
    background: #fff;
}

.notice-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid #ffc107;
    text-align: center;
}

.notice-box p {
    color: #856404;
    font-weight: 600;
    margin: 0;
    font-size: 1.05rem;
}

/* Legal Pages */
.legal-page-wrapper {
    padding: 4rem 2rem;
    background: #fff;
    min-height: calc(100vh - 75px);
}

.legal-container {
    max-width: 950px;
    margin: 0 auto;
}

.legal-title {
    color: #667eea;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: #999;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.legal-body {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-body h2 {
    color: #667eea;
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.legal-body ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #555;
}

.legal-body li {
    margin: 0.75rem 0;
    line-height: 1.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin: 0.75rem 0;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #667eea;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bar p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
}

.footer-notice {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
}

.age-gate.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-dialog {
    background: #fff;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-gate-icon {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.age-gate-dialog h2 {
    color: #667eea;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.age-gate-text {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.age-gate-question {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-gate-actions button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.btn-accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-reject {
    background: #e74c3c;
    color: #fff;
}

.btn-reject:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-burger {
        display: block;
    }

    .menu-list {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
    }

    .menu-list.active {
        left: 0;
    }

    .menu-item {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .hero-heading {
        font-size: 2.3rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .game-frame {
        height: 450px;
    }

    .game-player-frame {
        height: 550px;
    }

    .age-gate-dialog {
        padding: 2rem;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .legal-body {
        padding: 2rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}
