#hero{
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-ghost-wheel {
    position: absolute;
    width: clamp(400px, 80vw, 900px);
    height: clamp(400px, 80vw, 900px);
    border-radius: 50%;
    background: conic-gradient(
        var(--accent) 0deg 45deg,
        transparent 45deg 90deg,
        var(--accent) 90deg 135deg,
        transparent 135deg 180deg,
        var(--accent) 180deg 225deg,
        transparent 225deg 270deg,
        var(--accent) 270deg 315deg,
        transparent 315deg 360deg
    );
    opacity: 0.04;
    animation: ghostSpin 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ghostSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scanline-h,
.scanline-v,
.scanline-d {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* HORIZONTAL LINE — left to right */
.scanline-h::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: -3px;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    animation: scanH 3s linear infinite;
}

@keyframes scanH {
    from { transform: translateX(0); }
    to { transform: translateX(100vw); }
}

/* VERTICAL LINE — top to bottom */
.scanline-v::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    top: -3px;
    left: 0;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    animation: scanV 4s linear infinite;
}

@keyframes scanV {
    from { transform: translateY(0); }
    to { transform: translateY(100vh); }
}

.scanline-d::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 200%;
    top: -180%;
    left: 0;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    transform-origin: top center;
    transform: rotate(45deg) translateX(-50vw);
    animation: scanD 5s linear infinite;
}

@keyframes scanD {
    from { transform: rotate(45deg) translateX(-50vw); }
    to { transform: rotate(45deg) translateX(150vw); }
}

.hero-content h1 span {
    display: inline-block;
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0%, 88%, 100% {
        text-shadow: 0 0 30px var(--accent-glow);
        transform: translate(0);
    }
    89% {
        text-shadow: -3px 0 #ff0080, 3px 0 #00ffff;
        transform: translate(-2px, 1px);
    }
    90% {
        text-shadow: 3px 0 #ff0080, -3px 0 #00ffff;
        transform: translate(2px, -1px);
    }
    91% {
        text-shadow: 0 0 30px var(--accent-glow);
        transform: translate(0);
    }
    92% {
        text-shadow: -4px 0 #ff0080, 4px 0 #00ffff;
        transform: translate(3px, 2px);
    }
    93% {
        text-shadow: 0 0 30px var(--accent-glow);
        transform: translate(0);
    }
}

@keyframes lightning {
    0%, 82%, 100% {
        box-shadow: none;
        color: var(--text-secondary);
        border-color: var(--border-color);
    }
    83% {
        box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
        color: var(--accent);
        border-color: var(--accent);
    }
    84% {
        box-shadow: none;
        color: var(--text-secondary);
        border-color: var(--border-color);
    }
    85% {
        box-shadow: 0 0 30px var(--accent), 0 0 70px var(--accent);
        color: var(--accent);
        border-color: var(--accent);
    }
    86% {
        box-shadow: none;
        color: var(--text-secondary);
        border-color: var(--border-color);
    }
}

.choice-divider span {
    animation: lightning 4s ease-in-out infinite;
}

.hero-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
}

.hero-content h1{
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--text-primary);
    line-height: 1;
}

.hero-content h1 span{
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
}

.hero-content p{
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
}

.hero-buttons{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

#choice{
    padding: 4rem 2rem;
}

.choice-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.choice-card{
    background-color: var(--bg-secondary);
    border: 1p solid var(--border-color) ;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: box-shadow 0.3s;
}

.choice-card:hover{
    box-shadow: 0 0 24px var(--accent-glow);
}

.choice-card h2{
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.choice-card p{
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.choice-divider{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.choice-divider span{
    font-family: 'Bebas Neue',sans-serif;
    font-size: 2rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items:center ;
    justify-content: center;
}

