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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(to bottom, #006d77 0%, #83c5be 100%);
    min-height: 100vh;
    color: #1a1a1a;
}

/* Age Verification */
.age-verification {
    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-verification.show {
    display: flex;
}

.verification-box {
    background: linear-gradient(135deg, #006d77 0%, #029faa 100%);
    max-width: 550px;
    width: 100%;
    padding: 3.5rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.verification-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.verification-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.verification-text {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.verification-question {
    font-size: 1.3rem;
    margin: 2rem 0;
    font-weight: 600;
}

.verification-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.verification-actions button {
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.btn-confirm {
    background: white;
    color: #006d77;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-deny {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-deny:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Top Navigation */
.top-nav {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #006d77;
}

.brand-icon {
    font-size: 2rem;
}

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

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #006d77;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #006d77;
    color: white;
}

.nav-menu a.active {
    background: #006d77;
    color: white;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Banner */
.hero-banner {
    background: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-banner h1 {
    font-size: 3.2rem;
    color: #006d77;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #006d77 0%, #029faa 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Alert Section */
.alert-section {
    margin-bottom: 2rem;
}

.alert-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.alert-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 6px solid #006d77;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.alert-box.alert-primary {
    border-left-color: #006d77;
}

.alert-box.alert-success {
    border-left-color: #029faa;
}

.alert-box.alert-warning {
    border-left-color: #e07a5f;
}

.alert-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.alert-box h3 {
    font-size: 1.6rem;
    color: #006d77;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alert-box p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Content Section */
.content-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #006d77;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.content-body p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

/* Game Section */
.game-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.game-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 2rem;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.game-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 109, 119, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.benefit-card h4 {
    font-size: 1.4rem;
    color: #006d77;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Page Hero */
.page-hero {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #006d77;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.25rem;
    color: #666;
}

/* Instructions Panel */
.instructions-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.panel-header h3 {
    font-size: 2rem;
    color: #006d77;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.instructions-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.instruction-number {
    background: #006d77;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.instruction-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    padding-top: 0.5rem;
}

/* Gameplay Tips */
.gameplay-tips {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.tip-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.tip-box h4 {
    font-size: 1.3rem;
    color: #006d77;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tip-box p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Legal Document */
.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.9rem;
    color: #006d77;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.legal-section p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
}

.critical-notice {
    background: linear-gradient(135deg, #006d7715 0%, #029faa15 100%);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 6px solid #006d77;
}

.critical-notice h2 {
    font-size: 1.9rem;
    color: #006d77;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.critical-notice p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
}

/* Footer */
.site-footer {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    color: #006d77;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-links {
    list-style: none;
    margin-top: 1rem;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #029faa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #006d77;
    text-decoration: underline;
}

.footer-info {
    list-style: none;
}

.footer-info li {
    color: #555;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.footer-copyright {
    font-weight: 600;
    color: #006d77;
}

.footer-tagline {
    font-style: italic;
    color: #777;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        text-align: center;
    }

    .container {
        padding: 1rem;
    }

    .hero-banner {
        padding: 2.5rem 1.5rem;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.15rem;
    }

    .alert-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .tips-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .verification-box {
        padding: 2rem 1.5rem;
    }

    .verification-box h2 {
        font-size: 1.8rem;
    }

    .verification-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .verification-actions button {
        width: 100%;
    }
}
