* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #15151f 50%, #0a0a0f 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

/* Age Check */
.age-check {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-check.hidden {
    display: none;
}

.age-panel {
    background: linear-gradient(135deg, #15151f 0%, #1a1a2a 100%);
    padding: 45px;
    border-radius: 12px;
    max-width: 550px;
    border: 3px solid #00ff88;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4);
}

.age-header {
    text-align: center;
    margin-bottom: 30px;
}

.tech-symbol {
    font-size: 70px;
    color: #00ff88;
    margin-bottom: 15px;
}

.age-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    color: #00ff88;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.tech-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: #80ffbb;
    letter-spacing: 3px;
}

.age-content p {
    text-align: center;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.age-req-box {
    background: rgba(0, 255, 136, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #00ff88;
    margin-bottom: 25px;
}

.age-req-title {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.age-req-desc {
    font-size: 14px;
    color: #b0b0b0;
}

.age-btns {
    display: flex;
    gap: 15px;
}

.btn-verify,
.btn-reject {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-verify {
    background: #00ff88;
    color: #0a0a0f;
}

.btn-verify:hover {
    background: #00cc6f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.5);
}

.btn-reject {
    background: #ff4444;
    color: white;
}

.btn-reject:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 2px solid #00ff88;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #00ff88;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff88;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ff88;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    width: 26px;
    height: 3px;
    background: #00ff88;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background: rgba(10, 10, 15, 0.98);
    padding: 25px;
    flex-direction: column;
    gap: 18px;
    border-bottom: 2px solid #00ff88;
}

.mobile-link {
    font-family: 'Orbitron', sans-serif;
    color: #b0b0b0;
    text-decoration: none;
    padding: 12px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    font-size: 13px;
    letter-spacing: 1px;
}

.mobile-link:hover,
.mobile-link.active {
    color: #00ff88;
    border-left-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

/* Hero */
.hero-section {
    padding: 90px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.hero-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #00ff88;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 62px;
    color: #00ff88;
    letter-spacing: 6px;
    margin-bottom: 12px;
    font-weight: 900;
}

.hero-lead {
    font-size: 22px;
    color: #b0b0b0;
    margin-bottom: 25px;
}

.hero-line {
    width: 100px;
    height: 3px;
    background: #00ff88;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    background: rgba(0, 255, 136, 0.1);
    padding: 18px 28px;
    border-radius: 8px;
    border: 1px solid #00ff88;
}

.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #00ff88;
    font-weight: 700;
}

.stat-lbl {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #80ffbb;
    letter-spacing: 2px;
}

/* Sections */
.info-section,
.pillars-section,
.game-section,
.features-section,
.platform-section {
    padding: 70px 30px;
}

.info-section {
    background: rgba(21, 21, 31, 0.5);
}

.info-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.section-h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    color: #00ff88;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.section-line {
    width: 80px;
    height: 3px;
    background: #00ff88;
    margin: 0 auto 35px;
}

.info-p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

/* Pillars */
.pillars-section {
    background: rgba(10, 10, 15, 0.6);
}

.pillars-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.pillar-box {
    background: rgba(21, 21, 31, 0.6);
    padding: 35px;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s;
    position: relative;
}

.pillar-box:hover {
    transform: translateY(-6px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.pillar-num {
    font-family: 'Orbitron', sans-serif;
    position: absolute;
    top: -15px;
    left: 25px;
    background: #00ff88;
    color: #0a0a0f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.pillar-box h3 {
    color: #00ff88;
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 22px;
}

.pillar-box p {
    color: #c0c0c0;
    line-height: 1.7;
}

/* Game */
.game-section,
.play-game-section {
    background: rgba(21, 21, 31, 0.5);
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-p {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 45px;
    font-size: 18px;
}

.game-box,
.game-display {
    background: #0a0a0f;
    padding: 20px;
    border-radius: 12px;
    border: 3px solid #00ff88;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
    margin-bottom: 25px;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
}

.game-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.spec-item {
    background: rgba(0, 255, 136, 0.1);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #d0d0d0;
}

.spec-item strong {
    color: #00ff88;
}

/* Features */
.features-section {
    background: rgba(10, 10, 15, 0.6);
}

.features-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(21, 21, 31, 0.6);
    padding: 32px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    font-size: 50px;
    color: #00ff88;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: 2px;
}

.feature-box p {
    color: #c0c0c0;
    font-size: 15px;
}

/* Platform */
.platform-section {
    background: rgba(21, 21, 31, 0.5);
}

.platform-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.platform-wrapper h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 2px;
}

.platform-wrapper p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

/* Play Page */
.page-header {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(21, 21, 31, 0.9) 100%);
    padding: 70px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: #00ff88;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.page-header p {
    color: #b0b0b0;
    font-size: 19px;
}

.play-info-section {
    padding: 50px 30px;
    background: rgba(21, 21, 31, 0.5);
}

.play-info-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 255, 136, 0.1);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #00ff88;
}

.play-info-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 22px;
    letter-spacing: 2px;
}

.tech-list {
    list-style: none;
    color: #d0d0d0;
}

.tech-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.tech-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-size: 18px;
}

.play-game-section {
    padding: 40px 30px 70px;
}

.play-warning-box {
    max-width: 1000px;
    margin: 25px auto 0;
    text-align: center;
    padding: 20px;
    background: rgba(255, 68, 68, 0.15);
    border: 2px solid #ff4444;
    border-radius: 8px;
    color: #ffaaaa;
}

/* Legal */
.legal-page {
    padding: 60px 30px;
    min-height: calc(100vh - 350px);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-wrapper h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: #00ff88;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.legal-date {
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-block {
    background: rgba(21, 21, 31, 0.4);
    padding: 32px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 5px solid #00ff88;
}

.legal-block h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    margin-bottom: 16px;
    font-size: 24px;
    letter-spacing: 1px;
}

.legal-block h3 {
    color: #80ffbb;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 19px;
}

.legal-block p {
    color: #d0d0d0;
    margin-bottom: 14px;
    line-height: 1.7;
}

.legal-block ul {
    margin: 16px 0;
    padding-left: 25px;
    color: #d0d0d0;
}

.legal-block li {
    margin-bottom: 10px;
}

.legal-block a {
    color: #00ff88;
    text-decoration: none;
}

.legal-block a:hover {
    text-decoration: underline;
}

.warning-block {
    background: rgba(255, 68, 68, 0.15);
    border-left-color: #ff4444;
}

.warning-block h2 {
    color: #ff8888;
}

/* Footer */
.footer {
    background: #0a0a0f;
    border-top: 2px solid #00ff88;
    padding: 50px 30px 25px;
    margin-top: 70px;
}

.footer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-bottom: 35px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    margin-bottom: 16px;
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-col p {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #00ff88;
}

.footer-copy {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 255, 136, 0.3);
    color: #888;
    font-size: 13px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero-h1 {
        font-size: 38px;
    }

    .section-h2 {
        font-size: 28px;
    }

    .pillars-wrapper,
    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

    .age-panel {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-header h1 {
        font-size: 28px;
    }

    .age-btns {
        flex-direction: column;
    }

    .legal-wrapper h1 {
        font-size: 32px;
    }
}
