* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

.site-header {
    background: linear-gradient(to right, #1a1f3a, #0f1423);
    border-bottom: 2px solid #00ffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.3);
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-symbol {
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.brand-name {
    font-family: 'Electrolize', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.4);
    letter-spacing: 3px;
}

.main-navigation {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: #00ffff;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: #00ffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.intro-banner {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b4e 50%, #1a1f3a 100%);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
}

.intro-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 255, 0.03) 0px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
}

.banner-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
}

.main-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 3.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.4);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-tagline {
    font-size: 1.4rem;
    color: #b0b0b0;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.quick-facts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.fact-item {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.section-heading {
    font-family: 'Electrolize', sans-serif;
    font-size: 2.8rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.about-platform {
    background: #0f1423;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #c0c0c0;
}

.game-showcase {
    background: linear-gradient(to bottom, #1a1f3a, #0f1423);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.game-wrapper {
    border: 3px solid #00ffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    margin-bottom: 2rem;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-disclaimer {
    background: rgba(255, 165, 0, 0.15);
    border: 2px solid #ffa500;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: #ffa500;
}

.highlights {
    background: #0a0e27;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.highlight-card {
    background: linear-gradient(135deg, #1a1f3a, #0f1423);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-12px);
    border-color: #00ffff;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.highlight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #b0b0b0;
}

.vital-info {
    background: #0f1423;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid;
}

.info-card.accent-blue {
    background: rgba(0, 123, 255, 0.1);
    border-color: #007bff;
}

.info-card.accent-green {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
}

.info-card.accent-purple {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c0c0c0;
}

.site-footer {
    background: linear-gradient(to top, #000000, #0f1423);
    border-top: 2px solid #00ffff;
    padding: 3rem 3rem 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.resource-list,
.footer-menu {
    list-style: none;
    padding: 0;
}

.resource-list li,
.footer-menu li {
    margin-bottom: 0.7rem;
}

.resource-list a,
.footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-list a:hover,
.footer-menu a:hover {
    color: #00ffff;
    text-decoration: underline;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    color: #808080;
    font-size: 0.95rem;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a1f3a, #2d1b4e);
    border: 3px solid #00ffff;
    border-radius: 15px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.age-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.age-gate-box h2 {
    font-family: 'Electrolize', sans-serif;
    font-size: 2.3rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.age-gate-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.7;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.age-yes,
.age-no {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: 2px solid;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-yes {
    background: #00cc00;
    border-color: #00ff00;
    color: #fff;
}

.age-yes:hover {
    background: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    transform: scale(1.05);
}

.age-no {
    background: #cc0000;
    border-color: #ff0000;
    color: #fff;
}

.age-no:hover {
    background: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    transform: scale(1.05);
}

.legal-page {
    background: #0f1423;
    min-height: 60vh;
}

.legal-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 3.2rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.legal-date {
    text-align: center;
    color: #808080;
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.legal-content h2 {
    font-family: 'Electrolize', sans-serif;
    font-size: 2rem;
    color: #00ffff;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p,
.legal-content ul {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #c0c0c0;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin-left: 2rem;
}

.legal-content a {
    color: #00ffff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.play-header {
    background: linear-gradient(135deg, #1a1f3a, #2d1b4e);
    padding: 3rem 3rem;
    text-align: center;
    border-bottom: 2px solid #00ffff;
}

.page-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 3.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
}

.play-area {
    background: #0a0e27;
}

.gameplay-notice {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.gameplay-notice h3 {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.7rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.gameplay-notice p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.game-display {
    border: 3px solid #00ffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.fullscreen-game {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 0.5rem;
        transition: left 0.4s ease;
        border-top: 2px solid #00ffff;
        box-shadow: 0 5px 25px rgba(0, 255, 255, 0.3);
    }

    .main-navigation.active {
        left: 0;
    }

    .header-wrapper {
        padding: 1rem 1.5rem;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .main-tagline {
        font-size: 1.1rem;
    }

    .quick-facts {
        flex-direction: column;
        gap: 1rem;
    }

    .section-container {
        padding: 3rem 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .fullscreen-game {
        height: 550px;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .age-yes,
    .age-no {
        width: 100%;
    }
}
