/* olimpiada-hero.css - Versión sin avisos de VS Code */

.font-display {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    /* Añadimos ambos para que el editor reconozca la intención */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-filter: blur(10px) brightness(0.5);
    /* Prefijo para filtro */
    filter: blur(10px) brightness(0.5);
    -webkit-transform: scale(1.1);
    /* Prefijo para transform */
    transform: scale(1.1);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Los degradados radiales a veces disparan avisos si no son muy específicos */
    background: -webkit-radial-gradient(center, circle, rgba(2, 6, 23, 0.6) 0%, rgba(2, 6, 23, 0.95) 100%);
    background: radial-gradient(circle at center, rgba(2, 6, 23, 0.6) 0%, rgba(2, 6, 23, 0.95) 100%);
    z-index: 1;
}

.search-container-hero {
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(20px);
    /* Esto suele ser lo que causa el amarillo */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4rem;
    padding: 8px;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}