* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(to bottom, #0a192f 0%, #1a365d 50%, #2d5f8e 100%);
    color: #e0e7ff;
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* Age Verification Overlay */
.age-verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.98);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.age-verification-overlay.show {
    display: flex;
}

.age-verification-box {
    background: linear-gradient(135deg, #0e7490 0%, #00bcd4 100%);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 450px;
    text-align: center;
    border: 3px solid #00bcd4;
    box-shadow: 0 25px 50px rgba(0, 188, 212, 0.4);
}

.age-verification-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.age-verification-box p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #e0e7ff;
}

.age-disclaimer {
    font-style: italic;
    font-size: 0.95rem;
    color: #ffd700;
}

.age-verification-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.age-confirm-btn,
.age-deny-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.age-confirm-btn {
    background: #10b981;
    color: white;
}

.age-confirm-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.age-deny-btn {
    background: #ef4444;
    color: white;
}

.age-deny-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Header */
.site-header {
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 3px solid #00bcd4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00bcd4;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #00bcd4;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.site-navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.site-navigation a {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.site-navigation a:hover,
.site-navigation a.nav-active {
    color: #00bcd4;
    border-color: #00bcd4;
    background: rgba(0, 188, 212, 0.1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10, 25, 47, 0.98);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        border-left: 3px solid #00bcd4;
        gap: 1rem;
    }

    .site-navigation.open {
        right: 0;
    }

    .site-navigation a {
        width: 100%;
        text-align: center;
        font-size: 1.3rem;
        padding: 1rem;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2) 0%, rgba(14, 116, 144, 0.2) 100%);
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 2px solid #00bcd4;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #00bcd4;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.6rem;
    color: #e0e7ff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature-tag {
    background: rgba(0, 188, 212, 0.2);
    border: 2px solid #00bcd4;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Welcome Section */
.welcome-section {
    padding: 5rem 2rem;
}

.welcome-section h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #00bcd4;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.9;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 188, 212, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: #00bcd4;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.8rem;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.game-showcase h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.game-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.game-embed {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border: 3px solid #00bcd4;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
}

.game-disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 188, 212, 0.1);
    border-left: 5px solid #00bcd4;
    border-radius: 6px;
}

/* Key Notices */
.key-notices {
    padding: 5rem 2rem;
}

.key-notices h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #00bcd4;
    margin-bottom: 3rem;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.notice-box {
    padding: 2.5rem;
    border-radius: 12px;
    border: 3px solid;
}

.notice-red {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.notice-blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.notice-orange {
    background: rgba(249, 115, 22, 0.1);
    border-color: #f97316;
}

.notice-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.notice-box p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Platform Benefits */
.platform-benefits {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.platform-benefits h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #00bcd4;
    margin-bottom: 3rem;
}

.benefits-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.benefit-marker {
    font-size: 3rem;
    color: #00bcd4;
    font-weight: 700;
    min-width: 60px;
}

.benefit-text h3 {
    font-size: 1.8rem;
    color: #00bcd4;
    margin-bottom: 0.8rem;
}

.benefit-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Engagement Section */
.engagement-section {
    padding: 5rem 2rem;
    text-align: center;
}

.engagement-content h2 {
    font-size: 2.8rem;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.engagement-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.action-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #00bcd4;
    color: #0a192f;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 3px solid #00bcd4;
}

.action-button:hover {
    background: transparent;
    color: #00bcd4;
    transform: scale(1.05);
}

/* Play Page */
.play-title-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.play-title-section h1 {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.play-intro {
    font-size: 1.4rem;
    color: #e0e7ff;
}

.play-instructions-section {
    padding: 4rem 2rem;
}

.instructions-panel {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid rgba(0, 188, 212, 0.3);
}

.instructions-panel h2 {
    color: #00bcd4;
    margin-bottom: 1rem;
}

.instruction-list {
    list-style: none;
    margin: 1.5rem 0;
}

.instruction-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compatibility-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 6px;
}

.game-window {
    max-width: 100%;
}

.play-reminder-box {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(249, 115, 22, 0.1);
    border: 3px solid #f97316;
    border-radius: 12px;
}

.play-reminder-box h3 {
    color: #f97316;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-title-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #00bcd4;
}

.legal-title-section h1 {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.legal-date {
    font-style: italic;
    color: #a0aec0;
}

.legal-body-section {
    padding: 4rem 2rem;
}

.legal-document {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 188, 212, 0.2);
}

.legal-document h2 {
    color: #00bcd4;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-document ul {
    margin: 1rem 0 1rem 2.5rem;
    line-height: 1.8;
}

.legal-document li {
    margin-bottom: 0.6rem;
}

.legal-acknowledgment,
.legal-summary-box,
.final-acknowledgment {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 188, 212, 0.1);
    border: 3px solid #00bcd4;
    border-radius: 10px;
}

.critical-notice {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(249, 115, 22, 0.1);
    border-left: 6px solid #f97316;
    border-radius: 8px;
}

.final-acknowledgment ul {
    list-style: none;
    margin-left: 0;
}

.final-acknowledgment li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: rgba(10, 25, 47, 0.95);
    padding: 3rem 2rem 1.5rem;
    border-top: 3px solid #00bcd4;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #00bcd4;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-column p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link-list a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-link-list a:hover {
    color: #00bcd4;
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 188, 212, 0.3);
    color: #a0aec0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-feature-tag {
        width: 100%;
        max-width: 280px;
    }

    .welcome-section h2,
    .game-showcase h2,
    .key-notices h2,
    .platform-benefits h2,
    .engagement-content h2 {
        font-size: 2.2rem;
    }

    .info-cards,
    .notices-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .benefit-row {
        flex-direction: column;
        gap: 1rem;
    }

    .play-title-section h1 {
        font-size: 2.3rem;
    }

    .legal-title-section h1 {
        font-size: 2.3rem;
    }

    .legal-document {
        padding: 2rem 1.5rem;
    }

    .age-verification-box {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .age-verification-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.5rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .game-iframe {
        height: 400px;
    }
}