/* ===== FONDO CON IMAGEN ===== */
.background {
    position: fixed;
    inset: 0;
    background: url('https://radikalradiotelevision.com/fas-fa/img/youth_park_messaging.png') center/cover no-repeat;
    z-index: -3;
}

/* ===== DEGRADADO BRILLANTE EN LOS 4 LADOS ===== */
.edge-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at center, rgba(0,140,255,0.05), rgba(0,0,0,0) 60%),
        linear-gradient(to top, rgba(0,140,255,0.45), transparent 40%),
        linear-gradient(to bottom, rgba(0,140,255,0.45), transparent 40%),
        linear-gradient(to left, rgba(0,140,255,0.45), transparent 40%),
        linear-gradient(to right, rgba(0,140,255,0.45), transparent 40%);
}

/* ===== CAPA CRISTALINA (NO BLOQUEA CLICS) ===== */
.glass-layer {
    position: fixed;
    inset: 0;
backdrop-filter: blur(3px) saturate(115%);
/*
    backdrop-filter: blur(12px) saturate(130%);*/
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    background: rgba(255,255,255,0.04);
    z-index: -1;
    pointer-events: none;
}
