/* Streamer theme — gaming / live stream */

/* ── Base ──────────────────────────────────── */
body {
    background-color: #0d0117 !important;
}
body, .grid-bg {
    background-image:
        radial-gradient(ellipse 90% 70% at 50% -5%,  rgba(145,70,255,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 95% 95%, rgba(26,68,200,0.14)   0%, transparent 55%),
        linear-gradient(rgba(145,70,255,0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145,70,255,0.09) 1px, transparent 1px) !important;
}

/* ── Orbs — pulsing ────────────────────────── */
.glow-orb-1 { background: #9146ff; animation: orbPulse 5s ease-in-out infinite; }
.glow-orb-2 { background: #1a44c8; animation: orbPulse 7s ease-in-out 2.5s infinite; }

/* ── Cards ─────────────────────────────────── */
.glass-card {
    background: rgba(145,70,255,0.07) !important;
    border: 1px solid rgba(145,70,255,0.28) !important;
    box-shadow: 0 0 20px rgba(145,70,255,0.08) !important;
}

/* ── Link buttons — shimmer sweep on hover ─── */
.link-btn { position: relative; overflow: hidden; }
.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(145,70,255,0.28), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}
.link-btn:hover::before { left: 160%; }
.link-btn:hover {
    border-color: rgba(145,70,255,0.6) !important;
    box-shadow: 0 0 28px rgba(145,70,255,0.35), 0 8px 30px rgba(145,70,255,0.2) !important;
}

/* ── Floating game icons (behind content) ───── */
body::before {
    content: "🎮    🖱    💻    🕹    👾    🎯    🏆    🖥\A🕹    💻    🎮    👾    🎲    🖱    🏆    🎯\A👾    🎲    🖥    🎮    🕹    🖱    💻    🏆\A🎮    🖱    💻    🎲    🕹    👾    🎯    🏆\A🕹    💻    🎮    👾    🎲    🖱    🏆    🎯";
    position: fixed;
    top: -20%;
    left: -10%;
    width: 130%;
    height: 150%;
    white-space: pre;
    font-size: 1.35rem;
    line-height: 7rem;
    letter-spacing: 1.6rem;
    opacity: 0.055;
    pointer-events: none;
    z-index: 0;
    animation: iconsFloat 50s ease-in-out infinite;
    filter: blur(0.4px);
}

/* ── CRT scanlines overlay ──────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent      0px,
        transparent      3px,
        rgba(0,0,0,0.04) 3px,
        rgba(0,0,0,0.04) 4px
    );
}

/* ── Keyframes ─────────────────────────────── */
@keyframes iconsFloat {
    0%   { transform: translate(0,    0); }
    25%  { transform: translate(1%,  -6%); }
    50%  { transform: translate(2%,  -10%); }
    75%  { transform: translate(1%,  -6%); }
    100% { transform: translate(0,    0); }
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50%       { opacity: 0.60; transform: scale(1.12); }
}
