* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #1f2937;
    background: #ffffff;
}

.age-verify-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    backdrop-filter: blur(8px);
}

.age-verify-modal.hidden {
    display: none;
}

.age-verify-card {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    padding: 3rem 3.5rem;
    border-radius: 24px;
    max-width: 520px;
    box-shadow: 0 25px 80px rgba(5, 150, 105, 0.4);
    border: 3px solid #059669;
}

.verify-icon-wrap {
    text-align: center;
    margin-bottom: 1.5rem;
}

.icon-emoji {
    font-size: 4rem;
}

.verify-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #059669;
    text-align: center;
    margin-bottom: 1rem;
}

.verify-message {
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.verify-confirm {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 2rem 0;
}

.verify-action-buttons {
    display: flex;
    gap: 1rem;
}

.verify-action-buttons button {
    flex: 1;
    padding: 1.2rem;
    font-size: 1.05rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.btn-verify-yes {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.btn-verify-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
}

.btn-verify-no {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #d1d5db;
}

.btn-verify-no:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.site-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.2);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.toggle-line {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.primary-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active-link {
    color: white;
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
}

.main-wrapper {
    min-height: 100vh;
}

.welcome-banner {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    padding: 6rem 2.5rem;
}

.banner-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.main-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-subheading {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.badge-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-badge {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #059669;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15);
}

.banner-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.3);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.features-showcase {
    padding: 6rem 0;
    background: white;
}

.feature-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.green-theme {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    border: 2px solid #059669;
}

.blue-theme {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
}

.teal-theme {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border: 2px solid #14b8a6;
}

.feature-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.feature-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-text {
    line-height: 1.8;
    color: #4b5563;
}

.game-showcase-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #6b7280;
}

.game-embed-wrapper {
    width: 100%;
    height: 700px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid #059669;
}

.game-embed {
    width: 100%;
    height: 100%;
    border: none;
}

.information-section {
    padding: 6rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.info-panel {
    padding: 3rem;
    border-radius: 20px;
    color: white;
}

.panel-green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.panel-blue {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.panel-teal {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.info-panel h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-panel p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.play-intro-section {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 5rem 0;
    text-align: center;
}

.page-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.instructions-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.instructions-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid #059669;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.instructions-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    color: #059669;
    margin-bottom: 1.5rem;
}

.instructions-list {
    list-style-position: inside;
    line-height: 2.3;
    color: #4b5563;
}

.gameplay-section {
    padding: 4rem 0 6rem 0;
    background: #f9fafb;
}

.legal-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.legal-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 0.5rem;
}

.document-date {
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 4rem;
}

.legal-block {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #059669;
}

.legal-block h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.9rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-block p {
    line-height: 2;
    color: #4b5563;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin-left: 2rem;
    margin-top: 1rem;
    color: #4b5563;
}

.legal-block ul li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.attention-block {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.attention-block h2,
.attention-block p {
    color: #92400e;
}

.site-footer {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 5rem 0 2rem 0;
    margin-top: 6rem;
    border-top: 3px solid #059669;
}

.footer-main {
    margin-bottom: 3rem;
}

.footer-alert {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 2px solid #059669;
}

.footer-alert p {
    line-height: 1.9;
    color: #065f46;
}

.footer-support {
    text-align: center;
}

.footer-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: #059669;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.support-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.support-link:hover {
    color: #059669;
    background: #d1fae5;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #d1d5db;
}

.copyright-text {
    color: #9ca3af;
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .primary-nav.active {
        transform: translateX(0);
    }

    .banner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .visual-circle {
        width: 200px;
        height: 200px;
    }

    .feature-columns {
        grid-template-columns: 1fr;
    }

    .game-embed-wrapper {
        height: 500px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .page-heading {
        font-size: 2.5rem;
    }

    .legal-heading {
        font-size: 2.5rem;
    }

    .support-nav {
        flex-direction: column;
        gap: 1rem;
    }
}
