* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98), rgba(26, 26, 46, 0.98));
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, #1e1e3f, #2a2a4a);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3), 0 0 80px rgba(138, 43, 226, 0.2);
    border: 2px solid rgba(0, 255, 255, 0.3);
    animation: gateAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes gateAppear {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.age-content h2 {
    color: #00ffff;
    font-size: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.age-content p {
    color: #b0b0b0;
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-accept, .age-decline {
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.age-accept {
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    color: white;
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.4);
}

.age-accept:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 255, 255, 0.6);
}

.age-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-decline:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Main Header */
.main-header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
}

.brand-icon {
    font-size: 28px;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.brand-text {
    font-size: 26px;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    letter-spacing: 2px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: #00ffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 8px;
}

.menu-link {
    display: block;
    padding: 10px 22px;
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(138, 43, 226, 0.2));
    color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Hero Area */
.hero-area {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    opacity: 0.8;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: bgScroll 20s linear infinite;
}

@keyframes bgScroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 25px;
}

.hero-title {
    font-size: 62px;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 60px rgba(138, 43, 226, 0.5);
    text-transform: uppercase;
}

.hero-desc {
    font-size: 22px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.hero-button {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.hero-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6);
}

/* Info Cards */
.info-cards {
    padding: 80px 0;
    background: #0f0f23;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    padding: 35px;
    border-radius: 15px;
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.info-card.cyan {
    border-color: rgba(0, 255, 255, 0.5);
}

.info-card.cyan:hover {
    box-shadow: 0 15px 45px rgba(0, 255, 255, 0.3);
}

.info-card.purple {
    border-color: rgba(138, 43, 226, 0.5);
}

.info-card.purple:hover {
    box-shadow: 0 15px 45px rgba(138, 43, 226, 0.3);
}

.info-card.pink {
    border-color: rgba(255, 0, 255, 0.5);
}

.info-card.pink:hover {
    box-shadow: 0 15px 45px rgba(255, 0, 255, 0.3);
}

.card-icon {
    font-size: 46px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 22px;
}

.info-card p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.7;
}

/* About Platform */
.about-platform {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 46px;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.about-header p {
    font-size: 19px;
    color: #888;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-content p {
    color: #b0b0b0;
    font-size: 17px;
    margin-bottom: 22px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    gap: 20px;
}

.highlight-box {
    background: rgba(0, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #00ffff;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateX(10px);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.highlight-num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #8a2be2;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.highlight-box h4 {
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.highlight-box p {
    color: #888;
    font-size: 14px;
}

/* Game Feature */
.game-feature {
    padding: 80px 0;
    background: #0f0f23;
}

.game-header {
    text-align: center;
    margin-bottom: 50px;
}

.game-header h2 {
    font-size: 42px;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.game-header p {
    font-size: 18px;
    color: #888;
}

.game-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0, 255, 255, 0.3), 0 0 100px rgba(138, 43, 226, 0.2);
    border: 3px solid rgba(0, 255, 255, 0.5);
}

.game-player {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

.game-notice {
    margin-top: 35px;
    padding: 25px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    border-left: 4px solid #8a2be2;
    color: #b0b0b0;
    text-align: center;
    font-size: 16px;
}

.game-notice strong {
    color: #00ffff;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
}

.benefits-title {
    text-align: center;
    font-size: 46px;
    color: #00ffff;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #00ffff;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}

.benefit-number {
    font-size: 56px;
    font-weight: 900;
    color: #8a2be2;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.benefit-item h3 {
    color: #00ffff;
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-item p {
    color: #888;
    font-size: 15px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #0f0f23;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.trust-item {
    background: rgba(26, 26, 46, 0.6);
    padding: 40px;
    border-radius: 15px;
    border-top: 4px solid #8a2be2;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(138, 43, 226, 0.3);
}

.trust-item h3 {
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 24px;
}

.trust-item p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Play Content */
.play-content {
    padding: 80px 0;
    min-height: calc(100vh - 300px);
}

.play-intro {
    text-align: center;
    margin-bottom: 50px;
}

.play-intro h1 {
    font-size: 52px;
    color: #00ffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.play-intro p {
    font-size: 20px;
    color: #888;
}

.tech-specs {
    background: rgba(26, 26, 46, 0.8);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.tech-specs h3 {
    color: #00ffff;
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

.specs-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.spec-card {
    background: rgba(15, 15, 35, 0.8);
    padding: 22px;
    border-radius: 10px;
    border-left: 3px solid #8a2be2;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.spec-card strong {
    color: #00ffff;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.virtual-currency-alert {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 255, 255, 0.2));
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #00ffff;
    text-align: center;
    color: #e0e0e0;
}

.alert-badge {
    display: inline-block;
    background: #00ffff;
    color: #0f0f23;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-right: 10px;
    font-size: 12px;
}

.game-display {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0, 255, 255, 0.3);
    border: 3px solid rgba(0, 255, 255, 0.5);
    margin-bottom: 35px;
}

.fullscreen-game {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.support-info {
    background: rgba(26, 26, 46, 0.6);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    color: #888;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    min-height: calc(100vh - 300px);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 50px;
    color: #00ffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.date-stamp {
    color: #666;
    font-size: 14px;
}

.legal-body {
    background: rgba(26, 26, 46, 0.8);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.legal-body h2 {
    color: #00ffff;
    margin-top: 35px;
    margin-bottom: 20px;
    font-size: 26px;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    color: #b0b0b0;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-body ul {
    margin: 20px 0;
    padding-left: 40px;
    color: #b0b0b0;
}

.legal-body ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-closure {
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid #00ffff;
}

.legal-closure p {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.legal-closure ul {
    list-style: none;
    padding-left: 0;
}

.legal-closure ul li {
    color: #b0b0b0;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0a0a1a, #0f0f23);
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 45px;
    margin-bottom: 40px;
}

.footer-block h4 {
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 19px;
}

.footer-block p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list 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;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .menu-items {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    }

    .menu-items.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .menu-link {
        padding: 15px;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .about-layout,
    .cards-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .game-player,
    .fullscreen-game {
        height: 450px;
    }

    .legal-body {
        padding: 30px 20px;
    }

    .age-content {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-accept,
    .age-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .game-player,
    .fullscreen-game {
        height: 350px;
    }
}
