* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-500: #10B981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --green-400: #4ADE80;
    --dark-900: #111827;
    --dark-800: #1F2937;
    --dark-700: #374151;
    --text-white: #FFFFFF;
    --text-light: #F3F4F6;
    --text-gray: #D1D5DB;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-900);
    color: var(--text-white);
    line-height: 1.6;
}

/* Age Verification */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.active {
    display: flex;
}

.age-box {
    background: var(--dark-800);
    padding: 50px 40px;
    border-radius: 16px;
    max-width: 550px;
    text-align: center;
    border: 3px solid var(--emerald-500);
    box-shadow: 0 0 70px rgba(16, 185, 129, 0.5);
}

.age-icon {
    font-size: 75px;
    display: block;
    margin-bottom: 25px;
}

.age-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--green-400);
}

.age-description {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.age-note {
    font-size: 16px;
    color: var(--emerald-500);
    font-weight: 600;
    margin-bottom: 35px;
}

.age-actions {
    display: flex;
    gap: 15px;
}

.age-button {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.age-button.accept {
    background: var(--emerald-500);
    color: var(--dark-900);
}

.age-button.accept:hover {
    background: var(--green-400);
    transform: scale(1.05);
}

.age-button.decline {
    background: #DC2626;
    color: white;
}

.age-button.decline:hover {
    background: #B91C1C;
    transform: scale(1.05);
}

/* Header */
.site-header {
    background: var(--dark-800);
    padding: 20px 0;
    border-bottom: 3px solid var(--emerald-500);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-emoji {
    font-size: 38px;
}

.site-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--green-400);
    letter-spacing: 1px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--emerald-500);
    transition: all 0.3s;
}

.main-menu {
    display: flex;
    gap: 35px;
}

.menu-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
}

.menu-link:hover,
.menu-link.active {
    color: var(--green-400);
    border-bottom-color: var(--emerald-500);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--emerald-700) 0%, var(--emerald-500) 100%);
    padding: 100px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-heading {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Content Container */
.content-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Styling */
.info-section,
.game-section,
.benefits-section,
.action-section {
    padding: 80px 0;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--green-400);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--dark-800);
    padding: 40px 35px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid var(--dark-700);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: var(--emerald-500);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--green-400);
}

.card-text {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Game Section */
.game-section {
    background: var(--dark-800);
}

.game-display {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
    margin-bottom: 40px;
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
}

.game-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.detail-box {
    background: var(--dark-900);
    padding: 22px 30px;
    border-radius: 10px;
    border-left: 4px solid var(--emerald-500);
    color: var(--text-gray);
}

/* Benefits Layout */
.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--dark-800);
    padding: 35px 30px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--emerald-500);
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 55px;
    display: block;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--green-400);
}

.benefit-card p {
    color: var(--text-gray);
}

/* Action Section */
.action-section {
    background: linear-gradient(135deg, var(--emerald-600) 0%, var(--emerald-700) 100%);
    text-align: center;
}

.action-content {
    max-width: 800px;
    margin: 0 auto;
}

.action-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.action-text {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.action-btn {
    display: inline-block;
    padding: 20px 60px;
    background: var(--dark-900);
    color: var(--green-400);
    text-decoration: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
    border: 3px solid var(--emerald-500);
}

.action-btn:hover {
    background: var(--dark-800);
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

/* Play Page */
.play-main {
    padding: 60px 30px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.play-header-section {
    text-align: center;
    margin-bottom: 50px;
}

.play-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--green-400);
}

.play-description {
    font-size: 20px;
    color: var(--text-gray);
}

.play-instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.instruction-item {
    background: var(--dark-800);
    padding: 35px 30px;
    border-radius: 14px;
    text-align: center;
    border-top: 4px solid var(--emerald-500);
}

.instruction-emoji {
    font-size: 55px;
    display: block;
    margin-bottom: 20px;
}

.instruction-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--green-400);
}

.instruction-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.play-game-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
    margin-bottom: 40px;
}

.play-game-iframe {
    width: 100%;
    height: 750px;
    border: none;
}

.play-disclaimer {
    background: var(--dark-800);
    padding: 25px 35px;
    border-radius: 10px;
    border-left: 5px solid var(--emerald-500);
    text-align: center;
}

.play-disclaimer p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-container {
    padding: 60px 30px 80px;
}

.legal-inner {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-800);
    padding: 60px 50px;
    border-radius: 14px;
}

.doc-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--green-400);
}

.doc-date {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.doc-section {
    margin-bottom: 45px;
}

.doc-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--green-400);
}

.doc-section p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 18px;
}

.doc-section ul {
    margin-left: 30px;
    color: var(--text-gray);
}

.doc-section ul li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.doc-section a {
    color: var(--emerald-500);
    text-decoration: none;
}

.doc-section a:hover {
    text-decoration: underline;
}

.doc-section.emphasis {
    background: rgba(16, 185, 129, 0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--emerald-500);
}

/* Footer */
.page-footer {
    background: var(--dark-800);
    padding: 70px 30px 30px;
    border-top: 3px solid var(--emerald-500);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.footer-section {
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--green-400);
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--green-400);
}

.footer-bar {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-700);
    color: var(--text-gray);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--dark-800);
        padding: 30px;
        border-radius: 12px 0 0 12px;
        box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.5);
        transition: right 0.3s;
        gap: 20px;
    }

    .main-menu.active {
        right: 0;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-text {
        font-size: 18px;
    }

    .section-title {
        font-size: 34px;
    }

    .play-title {
        font-size: 38px;
    }

    .doc-title {
        font-size: 36px;
    }

    .legal-inner {
        padding: 40px 25px;
    }

    .age-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-actions {
        flex-direction: column;
    }

    .game-embed {
        height: 450px;
    }

    .play-game-iframe {
        height: 550px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .game-embed {
        height: 400px;
    }

    .play-game-iframe {
        height: 500px;
    }
}
