/* ===========================
   Hero Section
   =========================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--section-padding);
    padding-top: 120px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f1e 100%);
    overflow: hidden;
}

/* CRT Scanline Effect */
.scanline-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 255, 0.03),
        rgba(0, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

/* Logo Styling */
.hero-logo {
    max-width: 90%;
    width: clamp(300px, 60vw, 700px);
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px var(--primary-cyan));
    animation: alternatingGlow 6s ease-in-out infinite;
}

.hero-tagline-main {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--secondary-magenta);
    text-shadow: var(--glow-magenta);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.hero-tagline-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ===========================
   Concept Section
   =========================== */

.concept-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.concept-intro {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* ===========================
   Games Section
   =========================== */

.games-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f1e 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* ===========================
   Updates Section
   =========================== */

.updates-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.updates-content {
    /* Container for update content */
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* ===========================
   Download Section
   =========================== */

.download-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f1e 100%);
}

.download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.system-requirements {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
}

.requirements-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: var(--glow-cyan);
}

.requirements-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.requirements-list li {
    font-size: 1rem;
    color: var(--text-light);
    padding: 15px 20px;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--secondary-magenta);
    text-align: center;
}

.requirements-list li:nth-child(4) {
    grid-column: 2;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: #0f0f1e;
    border-top: 1px solid var(--primary-cyan);
    padding: 40px 20px;
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-link a {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: var(--glow-cyan);
}

.footer-link a:hover {
    color: var(--secondary-magenta);
    text-shadow: var(--glow-magenta);
}
