* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0c4a6e;
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka', sans-serif;
}

/* Age Verification */
.age-check {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.age-check.visible {
    display: flex;
}

.age-check-content {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.age-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-check-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.age-check-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm, .btn-reject {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.btn-confirm {
    background: white;
    color: #06b6d4;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-reject {
    background: #ec4899;
    color: white;
}

.btn-reject:hover {
    background: #db2777;
    transform: scale(1.05);
}

/* Navigation */
.top-nav {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #06b6d4;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-menu a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: #ec4899;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #06b6d4;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Welcome Header */
.welcome-header {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    color: white;
}

.welcome-content {
    max-width: 600px;
}

.welcome-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.welcome-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-play {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ec4899;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.cta-play:hover {
    background: #db2777;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}

.welcome-visual {
    position: relative;
    height: 400px;
}

.bubble {
    position: absolute;
    font-size: 4rem;
    background: white;
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    left: 10%;
}

.bubble-2 {
    top: 50%;
    right: 15%;
    animation-delay: 0.5s;
}

.bubble-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 1s;
}

.bubble-4 {
    top: 35%;
    right: 35%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Perks Section */
.perks-section {
    padding: 5rem 2rem;
    background: white;
}

.perks-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.perk-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 25px;
    border: 2px solid #bae6fd;
    transition: all 0.3s ease;
    text-align: center;
}

.perk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
}

.perk-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.perk-card h3 {
    font-size: 1.6rem;
    color: #0891b2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.perk-card p {
    color: #475569;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    font-size: 2.8rem;
    color: #0891b2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.game-display {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #06b6d4;
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
}

/* Must Know Section */
.must-know {
    padding: 5rem 2rem;
    background: white;
}

.must-know-container {
    max-width: 1200px;
    margin: 0 auto;
}

.must-know-container h2 {
    font-size: 2.5rem;
    color: #ec4899;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.know-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.know-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-radius: 25px;
    border: 2px solid #fbcfe8;
}

.know-card h4 {
    font-size: 1.4rem;
    color: #ec4899;
    margin-bottom: 1rem;
    font-weight: 700;
}

.know-card p {
    color: #475569;
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
}

.why-us-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.why-us-wrapper h2 {
    font-size: 2.8rem;
    color: #0891b2;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.reasons {
    display: grid;
    gap: 2.5rem;
}

.reason-item {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.reason-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.reason-text h3 {
    font-size: 1.5rem;
    color: #0891b2;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.reason-text p {
    color: #475569;
    line-height: 1.8;
}

/* Gaming Responsibility */
.gaming-responsibility {
    padding: 5rem 2rem;
    background: white;
}

.responsibility-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-radius: 25px;
}

.responsibility-box h2 {
    font-size: 2.5rem;
    color: #ec4899;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.responsibility-box p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.help-org {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.help-org a {
    padding: 1rem 2rem;
    background: #ec4899;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-org a:hover {
    background: #db2777;
    transform: translateY(-2px);
}

/* Play Page */
.play-page {
    min-height: 70vh;
}

.play-banner {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.play-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.play-banner p {
    font-size: 1.25rem;
}

.play-area {
    padding: 3rem 2rem;
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
}

.play-container {
    max-width: 1400px;
    margin: 0 auto;
}

.play-tips {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.play-tips h3 {
    font-size: 1.6rem;
    color: #06b6d4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.tip {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 15px;
    border-left: 4px solid #06b6d4;
    color: #475569;
    line-height: 1.8;
}

.tip strong {
    color: #0891b2;
    display: block;
    margin-bottom: 0.5rem;
}

.game-box {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #06b6d4;
    margin-bottom: 2.5rem;
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
}

.play-reminder {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid #ec4899;
}

.play-reminder p {
    color: #be185d;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f0f9ff, #e0f2fe);
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #0891b2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 3rem;
}

.terms-block {
    margin-bottom: 2.5rem;
}

.terms-block h2 {
    font-size: 1.7rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 700;
}

.terms-block p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-block ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-block li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.terms-block strong {
    color: #0c4a6e;
}

.terms-block a {
    color: #ec4899;
    text-decoration: underline;
}

.warning-block {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid #ec4899;
}

.warning-block h2 {
    font-size: 1.8rem;
    color: #ec4899;
    margin-bottom: 1rem;
    font-weight: 700;
}

.warning-block p {
    font-size: 1.1rem;
    color: #be185d;
    line-height: 1.8;
}

/* Footer */
.page-footer {
    background: linear-gradient(135deg, #0c4a6e, #075985);
    padding: 3.5rem 2rem;
    color: white;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Fredoka', sans-serif;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bae6fd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-help {
    margin-bottom: 2rem;
}

.footer-help p {
    color: #7dd3fc;
    margin-bottom: 1rem;
}

.help-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-links a {
    color: #bae6fd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.help-links a:hover {
    color: white;
}

.footer-note {
    color: #7dd3fc;
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        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);
    }

    .main-menu.show {
        left: 0;
    }

    .main-menu li {
        margin: 1.5rem 0;
    }

    .welcome-header {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }

    .welcome-content h1 {
        font-size: 2.5rem;
    }

    .welcome-visual {
        height: 300px;
    }

    .bubble {
        font-size: 2.5rem;
        padding: 1rem;
    }

    .perks-wrapper,
    .know-cards {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 450px;
    }

    .game-embed {
        height: 550px;
    }

    .reason-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .help-org {
        flex-direction: column;
        align-items: center;
    }

    .legal-content {
        padding: 2.5rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }
}
