* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #10b981;
    --dark-green: #059669;
    --light-green: #34d399;
    --bg-dark: #111827;
    --bg-gray: #1f2937;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --sidebar-width: 280px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verify-modal.show {
    display: flex;
}

.age-verify-box {
    background: var(--bg-gray);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
    border: 2px solid var(--primary-green);
}

.age-verify-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.verify-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.age-verify-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.verify-message {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.verify-info {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.verify-actions {
    display: flex;
    gap: 1rem;
}

.btn-verify, .btn-deny {
    flex: 1;
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-verify {
    background: var(--primary-green);
    color: white;
}

.btn-verify:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-deny {
    background: #374151;
    color: white;
}

.btn-deny:hover {
    background: #4b5563;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-gray);
    border-right: 3px solid var(--primary-green);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--primary-green);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sidebar-nav {
    flex: 1;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-link {
    padding: 1rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-link:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
}

.nav-link.active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-green);
    border-left-color: var(--primary-green);
    font-weight: 600;
}

.main-wrapper {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    background: var(--bg-gray);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}

.page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.content-area {
    flex: 1;
    padding: 2rem;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-hero:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.hero-graphic {
    position: relative;
    height: 250px;
}

.floating-chip {
    position: absolute;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.chip-1 {
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.chip-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.chip-3 {
    bottom: 0;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.intro-section {
    margin-bottom: 3rem;
}

.intro-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlights-section {
    margin-bottom: 3rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.disclaimers-section {
    margin-bottom: 3rem;
}

.disclaimers-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.disclaimer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.disclaimer-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid;
}

.red-border {
    border-left-color: #ef4444;
}

.blue-border {
    border-left-color: #3b82f6;
}

.yellow-border {
    border-left-color: #f59e0b;
}

.disclaimer-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.game-showcase {
    margin-bottom: 3rem;
}

.game-showcase-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 2px;
}

.game-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.game-frame {
    background: var(--bg-gray);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-notice {
    background: rgba(16, 185, 129, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    text-align: center;
}

.benefits-section {
    margin-bottom: 3rem;
}

.benefits-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-row:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.benefit-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-green);
    min-width: 60px;
}

.benefit-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.benefit-info p {
    color: var(--text-gray);
}

.site-footer {
    background: var(--bg-gray);
    padding: 3rem 2rem 1rem;
    border-top: 3px solid var(--primary-green);
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.play-content {
    padding: 2rem;
}

.play-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.play-intro h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.play-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.game-player {
    margin-bottom: 3rem;
}

.game-container-full {
    background: var(--bg-gray);
    padding: 1rem;
    border-radius: 15px;
}

.game-container-full iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.play-details {
    margin-bottom: 3rem;
}

.play-details h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-box {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.detail-box:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

.detail-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.detail-box p {
    color: var(--text-gray);
}

.play-reminder-section {
    margin-bottom: 2rem;
}

.reminder-box {
    background: rgba(16, 185, 129, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-green);
    text-align: center;
}

.reminder-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.legal-content {
    padding: 2rem;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-gray);
    padding: 3rem;
    border-radius: 15px;
}

.legal-wrapper h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.last-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.legal-block p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-block ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-block li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.legal-block a {
    color: var(--primary-green);
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-banner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-graphic {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
    }

    .sidebar-nav {
        display: none;
        padding: 1rem 0;
    }

    .sidebar-nav.open {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .main-wrapper {
        margin-left: 0;
    }

    body {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .game-frame iframe {
        height: 400px;
    }

    .game-container-full iframe {
        height: 500px;
    }

    .benefit-row {
        flex-direction: column;
        text-align: center;
    }

    .legal-wrapper {
        padding: 2rem 1.5rem;
    }

    .verify-actions {
        flex-direction: column;
    }
}
