* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at center, #0a1628 0%, #020510 100%);
    color: #e0e0e0;
    min-height: 100vh;
}

/* Age Verification */
.age-verify {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
}

.age-verify.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-box {
    position: relative;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 60px 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.verify-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #00ff88, #00ffff);
    border-radius: 15px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
}

.verify-icon {
    font-size: 80px;
    margin-bottom: 25px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px #00ffff); }
    50% { filter: drop-shadow(0 0 25px #00ffff); }
}

.verify-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.verify-box p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #ccc;
}

.verify-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.verify-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-verify,
.btn-deny {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #00ffff;
    background: transparent;
    color: #00ffff;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-verify:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.btn-deny:hover {
    border-color: #666;
    color: #666;
}

/* Header */
.site-header {
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ffff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 36px;
    animation: glow 2s ease-in-out infinite;
}

.brand-title {
    font-size: 32px;
    font-weight: 900;
    color: #00ffff;
    letter-spacing: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 2px solid #00ffff;
    padding: 12px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #00ffff;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.site-navigation {
    display: flex;
    gap: 40px;
}

.nav-item {
    color: #999;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 90px;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.hero-tagline {
    font-size: 26px;
    color: #00ff88;
    margin-bottom: 35px;
    font-weight: 600;
}

.hero-separator {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    margin: 0 auto 35px;
}

.hero-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 50px;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    font-size: 50px;
    filter: drop-shadow(0 0 10px #00ffff);
}

.highlight-text {
    font-size: 16px;
    color: #00ffff;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Info Section */
.info-section {
    padding: 80px 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.info-card {
    background: rgba(15, 32, 39, 0.6);
    padding: 40px 35px;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 55px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00ffff);
}

.info-card h3 {
    font-size: 24px;
    color: #00ffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: #bbb;
    margin-bottom: 25px;
}

.about-visual {
    background: rgba(15, 32, 39, 0.6);
    padding: 50px 40px;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.visual-box {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.visual-stat {
    text-align: center;
    padding: 25px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
}

.stat-value {
    font-size: 56px;
    font-weight: 900;
    color: #00ffff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.stat-label {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Game Section */
.game-section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin-bottom: 50px;
}

.game-frame-container {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #00ffff;
}

.frame-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #00ff88, #00ffff);
    border-radius: 12px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.4;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    background: #000;
}

.game-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    color: #00ffff;
    font-weight: 600;
    font-size: 15px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(15, 32, 39, 0.6);
    padding: 40px 35px;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.feature-number {
    font-size: 20px;
    color: #00ffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
}

/* Play Header */
.play-header {
    padding: 80px 0 40px;
    text-align: center;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-title {
    font-size: 64px;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.header-description {
    font-size: 19px;
    color: #bbb;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Instructions Section */
.instructions-section {
    padding: 60px 0;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.instruction-box {
    background: rgba(15, 32, 39, 0.6);
    padding: 40px 35px;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.instruction-icon {
    font-size: 55px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00ffff);
}

.instruction-box h3 {
    font-size: 22px;
    color: #00ffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.instruction-box ul {
    list-style: none;
    padding: 0;
}

.instruction-box li {
    padding: 12px 0;
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.instruction-box li:last-child {
    border-bottom: none;
}

/* Legal Section */
.legal-section {
    background: #0a1628;
    padding: 70px 0;
    min-height: calc(100vh - 200px);
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-heading {
    font-size: 56px;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.legal-meta {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.legal-document {
    background: rgba(15, 32, 39, 0.4);
    padding: 50px 45px;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.legal-article {
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.legal-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-article h2 {
    font-size: 28px;
    color: #00ffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-article h3 {
    font-size: 22px;
    color: #00ff88;
    margin: 25px 0 15px;
    font-weight: 600;
}

.legal-article p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-article ul {
    margin: 20px 0;
    padding-left: 35px;
}

.legal-article li {
    margin-bottom: 12px;
    color: #aaa;
    line-height: 1.8;
}

.legal-article.warning {
    background: rgba(0, 255, 255, 0.05);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #00ffff;
    border-bottom: none;
}

.legal-article.warning h2 {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #00ffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-block h3 {
    font-size: 20px;
    color: #00ffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-block p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ffff;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .site-navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        padding: 40px;
        gap: 0;
        border-bottom: 2px solid #00ffff;
        transition: left 0.3s ease;
    }

    .site-navigation.active {
        left: 0;
    }

    .nav-item {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .info-grid,
    .features-grid,
    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .verify-box {
        margin: 20px;
        padding: 40px 30px;
    }

    .verify-actions {
        flex-direction: column;
    }

    .legal-heading {
        font-size: 40px;
    }

    .header-title {
        font-size: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-highlights {
        flex-wrap: wrap;
        gap: 30px;
    }
}
