/* === QuizGames.win — Homepage Styles === */

/* ── Hero ── */
.hero {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

/* Particle-like dots in hero */
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-primary-bright);
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    10% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
        transform: translateY(-200px) scale(1);
    }

    90% {
        opacity: 0;
    }
}

/* ── Steps ── */
.steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}

.step__number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: var(--weight-extrabold);
    font-size: var(--text-xl);
    color: white;
    box-shadow: var(--shadow-glow-primary);
}

.step__content h3 {
    margin-bottom: var(--space-2);
}

/* ── Featured Game Card ── */
.game-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.game-card--featured {
    border-color: var(--accent-pink-dim);
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.08) 0%, rgba(16, 16, 42, 0.9) 100%);
}

.game-card--featured:hover {
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(236, 72, 153, 0.2);
}

/* ── CTA Section ── */
.cta-section {
    text-align: center;
}

.cta-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-16) var(--space-8);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--gradient-primary);
}

/* ── Section Header ── */
.section__header {
    margin-bottom: var(--space-4);
}