* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    min-height: 100vh;
    line-height: 1.6;
}

/* Age Verification */
.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.age-gate.active {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.age-gate-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-options {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.age-btn.confirm {
    background: white;
    color: #10b981;
}

.age-btn.confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.age-btn.deny {
    background: #ef4444;
    color: white;
}

.age-btn.deny:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* Navigation */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #10b981;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #10b981;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 5rem 2rem;
    color: white;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: white;
    color: #10b981;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-graphic {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 1s;
}

.card-4 {
    top: 30%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Highlights Section */
.highlights {
    padding: 5rem 2rem;
    background: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.highlight-box {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
    border-color: #10b981;
}

.highlight-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.highlight-box h3 {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-box p {
    color: #64748b;
    line-height: 1.8;
}

/* Game Feature Section */
.game-feature {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.game-embed {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Important Info Section */
.important-info {
    padding: 5rem 2rem;
    background: white;
}

.info-banner {
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 3rem;
    border-radius: 25px;
    color: white;
}

.info-banner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.info-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-col p {
    line-height: 1.8;
    opacity: 0.95;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 800;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.reason-num {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.reason-content h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.reason-content p {
    color: #64748b;
    line-height: 1.8;
}

/* Responsibility Section */
.responsibility {
    padding: 5rem 2rem;
    background: white;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.responsibility-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.help-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.help-link {
    padding: 1rem 2rem;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

/* Play Page */
.play-page {
    min-height: 70vh;
}

.play-intro {
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.play-intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.play-intro p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.game-instructions {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-instructions h3 {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.instruction-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    line-height: 1.8;
    color: #475569;
}

.instruction-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.5rem;
}

.game-player {
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.fullscreen-game {
    width: 100%;
    height: 700px;
    border: none;
}

.game-disclaimer {
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
}

.game-disclaimer p {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-container h1 {
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 800;
}

.updated-date {
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-article {
    margin-bottom: 3rem;
}

.legal-article h2 {
    font-size: 1.8rem;
    color: #10b981;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-article p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-article ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-article li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-article strong {
    color: #1e293b;
}

.legal-article a {
    color: #10b981;
    text-decoration: underline;
}

.alert-box {
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    color: white;
}

.alert-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alert-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: #1e293b;
    padding: 3rem 2rem;
    color: white;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #10b981;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #10b981;
}

.footer-resources {
    margin-bottom: 2rem;
}

.footer-resources p {
    color: #64748b;
    margin-bottom: 1rem;
}

.resource-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-links a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: #059669;
}

.footer-legal {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        left: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-graphic {
        height: 300px;
    }

    .floating-card {
        font-size: 2.5rem;
        padding: 1rem;
    }

    .highlight-row,
    .info-columns,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 400px;
    }

    .fullscreen-game {
        height: 500px;
    }

    .age-options {
        flex-direction: column;
    }

    .help-links {
        flex-direction: column;
        align-items: center;
    }

    .legal-container {
        padding: 2rem 1.5rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }
}
