* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0A0E27;
    color: #E8E9ED;
    line-height: 1.6;
}

.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper.narrow {
    max-width: 900px;
}

/* Modal Age Verification */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, #1a1f3a, #0f1629);
    border: 2px solid #00C9A7;
    border-radius: 20px;
    max-width: 520px;
    box-shadow: 0 30px 60px rgba(0, 201, 167, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #00C9A7, #00F5D4);
    padding: 2rem;
    text-align: center;
}

.icon-large {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0A0E27;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8bcc8;
}

.modal-footer {
    padding: 0 2rem 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.btn {
    flex: 1;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #00C9A7, #00F5D4);
    color: #0A0E27;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 201, 167, 0.4);
}

.btn-secondary {
    background: #2a2f4a;
    color: #888;
}

.btn-secondary:hover {
    background: #353a55;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 201, 167, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #00F5D4;
    letter-spacing: 0.5px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-burger span {
    width: 28px;
    height: 3px;
    background: #00F5D4;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-item {
    color: #b8bcc8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #00F5D4;
    background: rgba(0, 201, 167, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1629 100%);
    border-bottom: 1px solid rgba(0, 201, 167, 0.2);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00F5D4, #00C9A7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #b8bcc8;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.feature-pills {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pill {
    background: rgba(0, 201, 167, 0.15);
    border: 1px solid rgba(0, 201, 167, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Game Showcase */
.game-showcase {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00F5D4;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #888;
}

.game-display {
    background: #1a1f3a;
    border: 2px solid rgba(0, 201, 167, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-display iframe {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 12px;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #0A0E27 0%, #1a1f3a 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 201, 167, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #00C9A7;
    box-shadow: 0 20px 40px rgba(0, 201, 167, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #00F5D4;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #b8bcc8;
    line-height: 1.8;
}

/* Important Info Section */
.important-info {
    padding: 4rem 0;
}

.info-container {
    background: rgba(0, 201, 167, 0.05);
    border: 2px solid rgba(0, 201, 167, 0.3);
    border-radius: 16px;
    padding: 3rem;
}

.info-container h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #00F5D4;
    margin-bottom: 2rem;
    text-align: center;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.info-column h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00C9A7;
    margin-bottom: 1rem;
}

.info-column p {
    color: #b8bcc8;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1f3a, #0f1629);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #00F5D4;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #00C9A7, #00F5D4);
    color: #0A0E27;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 201, 167, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 201, 167, 0.5);
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1f3a, #0f1629);
    border-bottom: 1px solid rgba(0, 201, 167, 0.2);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00F5D4, #00C9A7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    font-size: 0.95rem;
}

/* Game Info Section */
.game-info-section {
    padding: 3rem 0;
}

.info-box {
    background: rgba(26, 31, 58, 0.5);
    border: 1px solid rgba(0, 201, 167, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

.info-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00F5D4;
    margin-bottom: 1.5rem;
}

.info-box p {
    color: #b8bcc8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quick-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.quick-tip {
    background: rgba(0, 201, 167, 0.08);
    border: 1px solid rgba(0, 201, 167, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tip-icon {
    font-size: 2rem;
}

.tip-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #b8bcc8;
}

/* Play Section */
.play-section {
    padding: 2rem 0 5rem 0;
}

.game-player {
    background: #1a1f3a;
    border: 2px solid rgba(0, 201, 167, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-player iframe {
    width: 100%;
    height: 720px;
    border: none;
    border-radius: 12px;
}

/* Legal Content */
.legal-content {
    padding: 4rem 0;
}

.document h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #00F5D4;
    margin: 2.5rem 0 1.5rem 0;
}

.document h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00C9A7;
    margin: 2rem 0 1rem 0;
}

.document p {
    margin-bottom: 1.5rem;
    color: #b8bcc8;
    line-height: 1.9;
}

.document ul {
    margin: 1.5rem 0 2rem 2rem;
    color: #b8bcc8;
}

.document li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.document a {
    color: #00F5D4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.document a:hover {
    color: #00C9A7;
    text-decoration: underline;
}

.highlight-box {
    background: rgba(0, 201, 167, 0.1);
    border: 2px solid rgba(0, 201, 167, 0.4);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.highlight-box strong {
    color: #00F5D4;
    font-size: 1.1rem;
}

.highlight-box.important h3 {
    color: #00F5D4;
    margin-bottom: 1.5rem;
}

.highlight-box.important ul {
    list-style: none;
    margin: 0;
}

.highlight-box.important li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box.important li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00C9A7;
    font-weight: bold;
}

/* Footer */
.site-footer {
    background: #0f1629;
    border-top: 1px solid rgba(0, 201, 167, 0.2);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-block h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00F5D4;
    margin-bottom: 1.2rem;
}

.footer-block p {
    color: #888;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #b8bcc8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #00F5D4;
}

.footer-legal {
    border-top: 1px solid rgba(0, 201, 167, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        gap: 0;
        display: none;
        border-bottom: 1px solid rgba(0, 201, 167, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 1.2rem;
        border-bottom: 1px solid rgba(0, 201, 167, 0.1);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .feature-pills {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .game-display iframe,
    .game-player iframe {
        height: 500px;
    }

    .benefits-grid,
    .info-columns {
        grid-template-columns: 1fr;
    }

    .cta-content h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .modal-content {
        margin: 1rem;
    }

    .modal-footer {
        flex-direction: column;
    }

    .document h2 {
        font-size: 1.6rem;
    }
}
