* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #1f2937;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Righteous', cursive;
    color: #10b981;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(16, 185, 129, 0.2);
}

h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}

.header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: #fbbf24;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-items {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-items a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-items a:hover {
    background: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: #fbbf24;
    border-radius: 3px;
    transition: 0.3s;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 30px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}

.hero-lead {
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid #10b981;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.25);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.important-info {
    margin: 3rem 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    border-radius: 20px;
    background: #ffffff;
    border-left: 6px solid;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.info-card.danger {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, #ffffff 100%);
}

.info-card.primary {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, #ffffff 100%);
}

.info-card.accent {
    border-left-color: #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, #ffffff 100%);
}

.game-showcase {
    margin: 3rem 0;
    text-align: center;
}

.showcase-header {
    margin-bottom: 2rem;
}

.showcase-header p {
    color: #059669;
    font-size: 1.15rem;
}

.game-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
    border: 4px solid #10b981;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #059669;
}

.why-choose {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.1);
    transition: transform 0.3s;
    border: 2px solid #d1fae5;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.community-stats {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
}

.stats-description {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    padding: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.3);
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Righteous', cursive;
}

.stat-desc {
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 600;
}

.call-to-action {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 30px;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.call-to-action h2 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.call-to-action p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-link {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fbbf24;
    color: #1f2937;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
    background: #f59e0b;
}

.footer {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-text {
    font-family: 'Righteous', cursive;
    font-size: 1.5rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1fae5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-support {
    margin: 2rem 0;
}

.footer-support h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-family: 'Righteous', cursive;
}

.support-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-links a {
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover {
    color: #fbbf24;
}

.footer-info {
    border-top: 2px solid rgba(251, 191, 36, 0.3);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #d1fae5;
}

.footer-warning {
    font-weight: 700;
    color: #fbbf24;
    margin-top: 0.5rem;
}

.age-overlay {
    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-overlay.show {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 15px 60px rgba(16, 185, 129, 0.5);
    border: 4px solid #fbbf24;
}

.age-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.age-box p {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.05rem;
}

.age-info {
    color: #fbbf24;
    font-style: italic;
    font-weight: 500;
}

.age-options {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-option {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.age-option.yes-btn {
    background: #fbbf24;
    color: #1f2937;
}

.age-option.no-btn {
    background: #ffffff;
    color: #1f2937;
}

.age-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-content {
    min-height: calc(100vh - 350px);
}

.play-intro {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.play-intro p {
    color: #059669;
    font-size: 1.15rem;
}

.play-area {
    margin: 2rem 0;
}

.full-game-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.25);
    border: 4px solid #10b981;
}

.full-game-iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.play-details {
    margin: 3rem 0;
    padding: 2rem;
}

.play-details h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.detail-box {
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.15);
    border: 2px solid #d1fae5;
}

.detail-box h3 {
    margin-bottom: 1rem;
}

.play-warnings {
    margin: 3rem 0;
    padding: 2rem;
}

.warning-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 3px solid #10b981;
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.2);
}

.warning-container h3 {
    margin-bottom: 1rem;
}

.warning-container ul {
    list-style-position: inside;
    color: #374151;
}

.warning-container li {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.legal-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-intro {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.2);
}

.legal-update {
    color: #059669;
    font-style: italic;
}

.legal-text {
    background: #ffffff;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.15);
}

.legal-article {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #d1fae5;
}

.legal-article:last-child {
    border-bottom: none;
}

.legal-article h2 {
    margin-bottom: 1rem;
}

.legal-article h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #374151;
    font-size: 1.4rem;
}

.legal-article p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-article ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-article li {
    margin-bottom: 0.7rem;
}

.legal-article.highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0.5) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #10b981;
}

.legal-article.highlight h2 {
    color: #10b981;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        z-index: 1001;
    }

    .nav-items {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-items.active {
        left: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .hero-lead {
        font-size: 1.2rem;
    }

    .game-iframe {
        height: 400px;
    }

    .full-game-iframe {
        height: 500px;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-options {
        flex-direction: column;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .legal-text {
        padding: 1.5rem;
    }

    main {
        padding: 1rem;
    }
}
