@import url('https://fonts.googleapis.com/css2?family=Electrolize&family=Saira:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --galv-dark: #0f0f1a;
    --galv-navy: #1a1a2e;
    --galv-purple: #16213e;
    --galv-electric: #00ff88;
    --galv-volt: #00ffcc;
    --galv-spark: #ffff00;
    --galv-white: #f0f0f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Saira', sans-serif;
    background: var(--galv-dark);
    color: var(--galv-white);
    min-height: 100vh;
    line-height: 1.7;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, transparent 50%, rgba(0, 255, 136, 0.02) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 50%, rgba(0, 255, 136, 0.02) 50%, transparent 100%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    border-bottom: 2px solid var(--galv-electric);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1800px;
    margin: 0 auto;
}

.brand-logo {
    font-family: 'Electrolize', sans-serif;
    font-size: 2.2rem;
    color: var(--galv-electric);
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--galv-electric);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo::before {
    content: '⚡';
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--galv-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--galv-electric);
    border-color: var(--galv-electric);
    text-shadow: 0 0 8px var(--galv-electric);
}

.menu-btn {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--galv-electric);
    margin: 5px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--galv-electric);
}

.menu-btn.open span:first-child {
    transform: rotate(45deg) translate(5px, 7px);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:last-child {
    transform: rotate(-45deg) translate(6px, -8px);
}

.page-body {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.power-hero {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(160deg, var(--galv-dark) 0%, var(--galv-navy) 40%, var(--galv-purple) 100%);
    position: relative;
    overflow: hidden;
}

.power-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-energy 3s ease-in-out infinite;
}

@keyframes pulse-energy {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-info {
    max-width: 750px;
    position: relative;
    z-index: 2;
}

.hero-info h1 {
    font-family: 'Electrolize', sans-serif;
    font-size: 4rem;
    color: var(--galv-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-info h1 span {
    color: var(--galv-electric);
    text-shadow: 0 0 15px var(--galv-electric);
}

.hero-info .lead {
    font-size: 1.3rem;
    color: rgba(240, 240, 240, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.power-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--galv-electric);
    color: var(--galv-dark);
    text-decoration: none;
    font-family: 'Electrolize', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.power-btn:hover {
    background: var(--galv-volt);
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.7);
}

.indicators {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: rgba(240, 240, 240, 0.8);
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}

.indicator .dot {
    width: 8px;
    height: 8px;
    background: var(--galv-electric);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--galv-electric);
}

.game-zone {
    padding: 5rem 3rem;
    background: var(--galv-navy);
}

.zone-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--galv-electric);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.game-panel {
    max-width: 950px;
    margin: 0 auto;
    background: var(--galv-dark);
    padding: 1.5rem;
    border: 2px solid var(--galv-electric);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.game-panel iframe {
    width: 100%;
    height: 560px;
    border: none;
}

.specs-section {
    padding: 6rem 3rem;
    background: var(--galv-dark);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.spec-card {
    background: linear-gradient(180deg, var(--galv-navy) 0%, var(--galv-purple) 100%);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--galv-electric);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.spec-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.spec-card h3 {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.3rem;
    color: var(--galv-electric);
    margin-bottom: 0.8rem;
}

.spec-card p {
    color: rgba(240, 240, 240, 0.7);
    font-size: 0.9rem;
}

.info-block {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, var(--galv-purple) 0%, var(--galv-dark) 100%);
}

.info-wrap {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.info-wrap h2 {
    font-family: 'Electrolize', sans-serif;
    font-size: 2.2rem;
    color: var(--galv-volt);
    margin-bottom: 2rem;
}

.info-wrap p {
    font-size: 1.1rem;
    color: rgba(240, 240, 240, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.bottom-bar {
    background: var(--galv-dark);
    padding: 4rem 3rem;
    border-top: 2px solid var(--galv-electric);
    position: relative;
    z-index: 1;
}

.bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bottom-logo {
    font-family: 'Electrolize', sans-serif;
    font-size: 2rem;
    color: var(--galv-electric);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.resources h4 {
    font-size: 0.95rem;
    color: var(--galv-volt);
    margin-bottom: 1rem;
    font-weight: 500;
}

.resources-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.resources-list a {
    color: rgba(240, 240, 240, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.resources-list a:hover {
    color: var(--galv-electric);
    text-shadow: 0 0 5px var(--galv-electric);
}

.bottom-text {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    font-size: 0.85rem;
    color: rgba(240, 240, 240, 0.5);
}

.age-check {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.98);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.age-check.hidden {
    display: none;
}

.age-check-box {
    background: var(--galv-navy);
    padding: 3.5rem;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--galv-electric);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.age-check-box h2 {
    font-family: 'Electrolize', sans-serif;
    font-size: 2rem;
    color: var(--galv-electric);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.age-check-box p {
    color: rgba(240, 240, 240, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.age-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-family: 'Electrolize', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    letter-spacing: 1px;
}

.age-btn.yes {
    background: var(--galv-electric);
    color: var(--galv-dark);
}

.age-btn.no {
    background: transparent;
    border: 1px solid rgba(240, 240, 240, 0.5);
    color: var(--galv-white);
}

.age-btn:hover {
    transform: scale(1.05);
}

.content-section {
    padding: 6rem 3rem 4rem;
    min-height: calc(100vh - 200px);
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--galv-navy);
    padding: 3rem;
    border-left: 4px solid var(--galv-electric);
}

.content-box h1 {
    font-family: 'Electrolize', sans-serif;
    font-size: 2.8rem;
    color: var(--galv-electric);
    margin-bottom: 2rem;
}

.content-box h2 {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.5rem;
    color: var(--galv-volt);
    margin: 2.5rem 0 1rem;
}

.content-box p {
    color: rgba(240, 240, 240, 0.85);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-box ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: rgba(240, 240, 240, 0.85);
}

.content-box li {
    margin-bottom: 0.6rem;
}

.play-notice {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--galv-electric);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 26, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .top-bar-inner {
        padding: 1rem 1.5rem;
    }

    .power-hero {
        padding: 3rem 1.5rem;
    }

    .hero-info h1 {
        font-size: 2.5rem;
    }

    .indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .game-zone,
    .specs-section,
    .info-block,
    .bottom-bar,
    .content-section {
        padding: 3rem 1.5rem;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .game-panel iframe {
        height: 400px;
    }
}
