* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #1e1b4b, #312e81, #4c1d95);
    color: #f8fafc;
    line-height: 1.65;
    min-height: 100vh;
}

/* Age Gate */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 27, 75, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(12px);
}

.age-overlay.visible {
    display: flex;
}

.age-card {
    background: linear-gradient(135deg, #4c1d95, #6d28d9);
    padding: 3rem;
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid #84cc16;
}

.age-logo svg {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 4px 15px rgba(132, 204, 22, 0.5));
}

.age-card h2 {
    color: #84cc16;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.age-card p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #e2e8f0;
}

.age-note {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-style: italic;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #84cc16, #a3e635);
    color: #1e1b4b;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.5);
}

.btn-reject {
    background: #64748b;
    color: white;
}

.btn-reject:hover {
    background: #475569;
}

/* Navigation */
.navbar {
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #84cc16;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-svg {
    width: 50px;
    height: 50px;
}

.logo-name {
    font-size: 1.7rem;
    font-weight: 900;
    color: #84cc16;
    letter-spacing: 1px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #84cc16;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #84cc16;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #84cc16;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.15), rgba(76, 29, 149, 0.3)),
                radial-gradient(circle at top left, rgba(109, 40, 217, 0.2), transparent);
    padding: 7rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #84cc16;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(132, 204, 22, 0.4);
}

.hero-desc {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-btn {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
}

/* Content Sections */
section {
    padding: 4.5rem 2rem;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    color: #84cc16;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.intro-section {
    background: rgba(76, 29, 149, 0.25);
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    text-align: center;
}

/* Alert Cards */
.alert-section {
    background: linear-gradient(to bottom, rgba(30, 27, 75, 0.4), rgba(76, 29, 149, 0.3));
}

.alert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.alert-card {
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 3px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alert-card.purple {
    background: rgba(168, 85, 247, 0.15);
    border-color: #a855f7;
}

.alert-card.lime {
    background: rgba(132, 204, 22, 0.15);
    border-color: #84cc16;
}

.alert-card.violet {
    background: rgba(109, 40, 217, 0.15);
    border-color: #6d28d9;
}

.alert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(132, 204, 22, 0.3);
}

.alert-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.alert-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #f8fafc;
    font-weight: 700;
}

.alert-card p {
    font-size: 1rem;
    color: #cbd5e1;
}

/* Game Showcase */
.game-showcase {
    background: rgba(76, 29, 149, 0.25);
}

.showcase-desc {
    text-align: center;
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.game-box {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    margin: 2.5rem auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border: 3px solid #a855f7;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-link {
    display: block;
    margin: 2rem auto 0;
    padding: 1.1rem 2.8rem;
    background: transparent;
    color: #a855f7;
    text-decoration: none;
    font-weight: 700;
    border: 3px solid #a855f7;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.game-link:hover {
    background: #a855f7;
    color: white;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.5), rgba(76, 29, 149, 0.4));
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(109, 40, 217, 0.2);
    border-radius: 12px;
    border-left: 5px solid #84cc16;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(109, 40, 217, 0.3);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.3rem;
    color: #84cc16;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-text p {
    font-size: 1rem;
    color: #cbd5e1;
}

/* Responsibility Section */
.responsibility-section {
    background: rgba(76, 29, 149, 0.25);
}

.responsibility-box {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(30, 27, 75, 0.5);
    border-radius: 16px;
    border: 2px solid #a855f7;
}

.responsibility-box h2 {
    margin-bottom: 2rem;
}

.responsibility-box p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* Play Page */
.play-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(132, 204, 22, 0.15));
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid #84cc16;
}

.play-banner h1 {
    font-size: 3rem;
    color: #84cc16;
    margin-bottom: 1rem;
}

.banner-text {
    font-size: 1.2rem;
    color: #e2e8f0;
}

.play-area {
    padding: 2rem 0;
    background: rgba(30, 27, 75, 0.5);
}

.full-container {
    width: 100%;
}

.game-display {
    background: #000;
    border-top: 4px solid #a855f7;
    border-bottom: 4px solid #84cc16;
}

.play-iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.instructions {
    background: rgba(76, 29, 149, 0.25);
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.instruction-card {
    background: rgba(109, 40, 217, 0.25);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #84cc16;
}

.instruction-card h3 {
    font-size: 1.2rem;
    color: #a855f7;
    margin-bottom: 1rem;
    font-weight: 700;
}

.instruction-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.play-notice {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(132, 204, 22, 0.15));
}

.notice-card {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(30, 27, 75, 0.6);
    border-radius: 16px;
    border: 3px solid #84cc16;
}

.notice-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.notice-card p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

/* Legal Pages */
.page-top {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.2), rgba(76, 29, 149, 0.3));
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid #a855f7;
}

.page-top h1 {
    font-size: 3rem;
    color: #84cc16;
    margin-bottom: 0.5rem;
}

.date-info {
    font-size: 1rem;
    color: #94a3b8;
}

.terms-content {
    background: rgba(30, 27, 75, 0.4);
}

.text-content h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #a855f7;
}

.text-content p,
.text-content ul {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #cbd5e1;
}

.text-content ul {
    padding-left: 2.5rem;
}

/* Footer */
.main-footer {
    background: rgba(30, 27, 75, 0.95);
    border-top: 3px solid #84cc16;
    padding: 3.5rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-block h4 {
    color: #84cc16;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-block p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 0.7rem;
}

.footer-block a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #a855f7;
}

.footer-end {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(132, 204, 22, 0.2);
}

.footer-end p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    color: #64748b;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(30, 27, 75, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        border-left: 3px solid #84cc16;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .hero-content h1,
    .play-banner h1,
    .page-top h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .game-iframe,
    .play-iframe {
        height: 500px;
    }

    .alert-cards,
    .instruction-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-desc {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 1rem;
    }
}