* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.7;
    color: #e8f4f8;
    background: #000814;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(2px 2px at 20% 30%, white, transparent),
                radial-gradient(2px 2px at 60% 70%, white, transparent),
                radial-gradient(1px 1px at 50% 50%, white, transparent),
                radial-gradient(1px 1px at 80% 10%, white, transparent),
                radial-gradient(2px 2px at 90% 60%, white, transparent),
                radial-gradient(1px 1px at 33% 80%, white, transparent),
                radial-gradient(2px 2px at 15% 90%, white, transparent);
    background-size: 200% 200%;
    background-position: 0 0, 40% 60%, 130% 270%, 70% 100%, 50% 120%, 90% 30%, 20% 90%;
    z-index: -1;
    opacity: 0.6;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00d9ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.main-header {
    background: rgba(0, 8, 20, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #00d9ff;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 4px 30px rgba(0, 217, 255, 0.2);
}

.top-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #00d9ff;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.7);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #e8f4f8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00d9ff;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.nav-links a:hover::before {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle .bar {
    width: 28px;
    height: 3px;
    background: #00d9ff;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
}

.hero-zone {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 8, 20, 0.8) 100%);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    margin-bottom: 4rem;
    box-shadow: 0 10px 50px rgba(0, 217, 255, 0.2);
}

.hero-tagline {
    font-size: 1.6rem;
    color: #00d9ff;
    margin-bottom: 3rem;
    font-weight: 500;
    opacity: 0.9;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.hero-card {
    padding: 2.5rem;
    background: rgba(0, 8, 20, 0.7);
    border: 2px solid rgba(0, 217, 255, 0.4);
    border-radius: 20px;
    transition: all 0.3s;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
    border-color: #00d9ff;
}

.card-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.alert-zone {
    margin: 4rem 0;
}

.alert-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.alert-box {
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid;
    background: rgba(0, 8, 20, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.alert-box.critical {
    border-color: #ff1744;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1) 0%, rgba(0, 8, 20, 0.8) 100%);
}

.alert-box.info {
    border-color: #2196f3;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(0, 8, 20, 0.8) 100%);
}

.alert-box.warning {
    border-color: #ffc107;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(0, 8, 20, 0.8) 100%);
}

.featured-game {
    margin: 4rem 0;
    text-align: center;
}

.game-intro {
    margin-bottom: 2.5rem;
}

.game-intro p {
    color: #00d9ff;
    font-size: 1.2rem;
    opacity: 0.8;
}

.game-embed {
    width: 100%;
    max-width: 1100px;
    margin: 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #00d9ff;
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
}

.game-window {
    width: 100%;
    height: 650px;
    border: none;
}

.game-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #00d9ff;
    opacity: 0.7;
}

.features-zone {
    margin: 5rem 0;
    padding: 3rem 2rem;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.features-zone h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    padding: 2.5rem;
    background: rgba(0, 8, 20, 0.8);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #00d9ff;
    box-shadow: 0 10px 35px rgba(0, 217, 255, 0.25);
}

.feature-symbol {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.stats-zone {
    margin: 5rem 0;
    text-align: center;
    padding: 3rem 2rem;
}

.stats-intro {
    font-size: 1.2rem;
    color: #e8f4f8;
    margin-bottom: 3rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.stats-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 8, 20, 0.9) 100%);
    border: 2px solid #00d9ff;
    border-radius: 20px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: #00d9ff;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.stat-title {
    color: #e8f4f8;
    margin-top: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-zone {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(0, 8, 20, 0.9) 100%);
    border-radius: 25px;
    border: 2px solid #00d9ff;
    margin: 4rem 0;
    box-shadow: 0 10px 50px rgba(0, 217, 255, 0.25);
}

.action-zone h2 {
    margin-bottom: 1.5rem;
}

.action-zone p {
    font-size: 1.2rem;
    color: #e8f4f8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.action-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
    color: #000814;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
    font-family: 'Orbitron', sans-serif;
}

.action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.6);
    background: linear-gradient(135deg, #0066ff 0%, #00d9ff 100%);
}

.site-footer {
    background: rgba(0, 8, 20, 0.98);
    margin-top: 5rem;
    padding: 3.5rem 2.5rem 1.5rem;
    border-top: 3px solid #00d9ff;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.footer-brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #00d9ff;
    letter-spacing: 3px;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #e8f4f8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-nav a:hover {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-resources {
    margin: 2.5rem 0;
}

.footer-resources h4 {
    color: #00d9ff;
    margin-bottom: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-links a {
    color: #e8f4f8;
    text-decoration: none;
    transition: all 0.3s;
}

.resource-links a:hover {
    color: #00d9ff;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
}

.footer-legal {
    border-top: 1px solid rgba(0, 217, 255, 0.3);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-disclaimer {
    font-weight: 700;
    color: #00d9ff;
    margin-top: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.gate-panel {
    background: linear-gradient(135deg, #000814 0%, #001428 100%);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #00d9ff;
    box-shadow: 0 15px 60px rgba(0, 217, 255, 0.4);
}

.gate-stars {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.gate-panel h2 {
    color: #00d9ff;
    margin-bottom: 1.5rem;
}

.gate-panel p {
    margin-bottom: 1.2rem;
    color: #e8f4f8;
    font-size: 1.1rem;
}

.gate-subtext {
    color: #00d9ff;
    font-style: italic;
    opacity: 0.8;
}

.gate-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.gate-button {
    flex: 1;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.gate-button.confirm {
    background: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
    color: #000814;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.gate-button.deny {
    background: #1a1a2e;
    color: #e8f4f8;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.gate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
}

.play-main {
    min-height: calc(100vh - 400px);
}

.play-intro {
    text-align: center;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.play-intro p {
    color: #00d9ff;
    font-size: 1.2rem;
    opacity: 0.8;
}

.play-game-area {
    margin: 3rem 0;
}

.full-game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #00d9ff;
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
}

.full-game-frame {
    width: 100%;
    height: 750px;
    border: none;
}

.play-guide {
    margin: 4rem 0;
    padding: 2.5rem;
}

.play-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.guide-item {
    padding: 2.5rem;
    background: rgba(0, 8, 20, 0.7);
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.guide-item h3 {
    margin-bottom: 1.2rem;
}

.play-reminders {
    margin: 4rem 0;
    padding: 2.5rem;
}

.reminder-panel {
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid #00d9ff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.reminder-panel h3 {
    margin-bottom: 1.5rem;
}

.reminder-panel ul {
    list-style-position: inside;
    color: #e8f4f8;
}

.reminder-panel li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.legal-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem;
}

.legal-title {
    text-align: center;
    padding: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(0, 8, 20, 0.8) 100%);
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.legal-updated {
    color: #00d9ff;
    font-style: italic;
    opacity: 0.8;
}

.legal-body {
    background: rgba(0, 8, 20, 0.7);
    padding: 3.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.term-block {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.term-block:last-child {
    border-bottom: none;
}

.term-block h2 {
    margin-bottom: 1.2rem;
}

.term-block h3 {
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: #e8f4f8;
    font-size: 1.3rem;
}

.term-block p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.term-block ul {
    margin: 1.2rem 0 1.2rem 2.5rem;
}

.term-block li {
    margin-bottom: 0.8rem;
}

.highlight-block {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 8, 20, 0.5) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #00d9ff;
}

.highlight-block h2 {
    color: #00d9ff;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 2001;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 8, 20, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 2.5rem 0;
        gap: 1.5rem;
        border-top: 2px solid #00d9ff;
    }

    .nav-links.active {
        left: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .game-window {
        height: 450px;
    }

    .full-game-frame {
        height: 550px;
    }

    .gate-panel {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .gate-actions {
        flex-direction: column;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .legal-body {
        padding: 2rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }
}
