/* =========================================
   DISEÑO PREMIUM NEON VIBRANTE
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    touch-action: manipulation; /* Evita el zoom automático al hacer doble toque o pellizcar */
}

body {
    font-family: 'Poppins', sans-serif;
    /* Fondo base extremadamente oscuro (casi negro púrpura) */
    background: #0a0010;
    color: #fff;
    min-height: 100vh;
    padding-bottom: 120px;
    overflow-x: hidden;
    position: relative;
}

/* --- FONDO ANIMADO CON ESFERAS DE LUZ --- */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: floatBlobs 20s infinite alternate ease-in-out;
}

body::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff00ff, transparent 70%);
    top: -100px;
    left: -100px;
}

body::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00f0ff, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -10s; /* Desfase para que no se muevan iguales */
}

@keyframes floatBlobs {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.2); }
    100% { transform: translate(-50px, 100px) scale(0.9); }
}

/* --- HEADER --- */
.header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(10, 0, 16, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    position: relative;
}

/* --- CONTENEDOR PRINCIPAL --- */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* --- TARJETAS DE RADIO (GLASSMORPHISM EXTREMO) --- */
.grid-radios {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.radio-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo sutil en la esquina superior */
.radio-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

.radio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(138, 43, 226, 0.3),
        0 0 15px rgba(255, 0, 255, 0.2);
    border-color: rgba(255, 0, 255, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

/* Estado: Reproduciéndose */
.radio-card.playing {
    border-color: #39ff14;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3), 0 15px 30px rgba(0,0,0,0.5);
    background: linear-gradient(145deg, rgba(57, 255, 20, 0.1), rgba(0,0,0,0.2));
}

.radio-card.playing::after {
    content: '🔊 EN VIVO';
    position: absolute;
    top: 15px;
    right: -35px;
    background: #39ff14;
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 5px 45px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(57, 255, 20, 0.5);
    letter-spacing: 1px;
}

/* --- LOGO EN TARJETA --- */
.card-img-container {
    width: 100%;
    height: 140px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Sombra interior para dar profundidad a la imagen */
.card-img-container::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(to top, rgba(10, 0, 16, 0.9), transparent);
    pointer-events: none;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.radio-card:hover .card-img {
    transform: scale(1.1);
}

.card-img-placeholder {
    font-size: 4rem;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-freq {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.card-location {
    font-size: 0.8rem;
    color: #bbb;
    margin-top: 5px;
}

/* --- FORMULARULARIO LATERAL --- */
.form-container {
    background: rgba(20, 5, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 25px;
    padding: 35px;
    height: fit-content;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.form-container h2 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #ff00ff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="url"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="url"]:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #8a2be2, #ff00ff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6);
    background: linear-gradient(90deg, #ff00ff, #8a2be2);
}

.file-input {
    padding: 8px 0 !important;
    cursor: pointer;
    color: #aaa !important;
}
.file-input::file-selector-button {
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    border: 1px solid #ff00ff;
    padding: 8px 15px;
    border-radius: 8px;
    margin-right: 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.2s;
}
.file-input::file-selector-button:hover {
    background: #ff00ff;
    color: #fff;
}

/* Mensajes de éxito/error */
.success-msg {
    background: rgba(57, 255, 20, 0.15);
    border: 1px solid #39ff14;
    color: #39ff14;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }


/* =========================================
   REPRODUCTOR INFERIOR (MEGA BRILLO)
   ========================================= */

.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 0, 20, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 -10px 50px rgba(138, 43, 226, 0.3);
}

/* Vinilo */
.vinyl-container {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #2a0040 30%, #0a0010 70%);
    border: 3px solid #444;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    flex-shrink: 0;
    margin-right: 25px;
    animation: spin 4s linear infinite;
    animation-play-state: paused;
    transition: all 0.5s ease;
}

.vinyl-container.spinning {
    animation-play-state: running;
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6), inset 0 0 10px rgba(0,0,0,0.8);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#playerLogo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.vinyl-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #0a0010;
    border-radius: 50%;
    border: 3px solid #ff00ff;
    z-index: 2;
    box-shadow: 0 0 10px #ff00ff;
    transition: all 0.5s ease;
}

.vinyl-container.spinning .vinyl-hole {
    border-color: #39ff14;
    box-shadow: 0 0 15px #39ff14;
}

.player-info { flex: 1; min-width: 0; }
.player-info h4 { color: #fff; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600;}
.player-info span { font-size: 0.8rem; color: #aaa; }

/* Ecualizador */
.visualizer {
    display: flex;
    align-items: flex-end;
    height: 35px;
    gap: 4px;
    margin: 0 30px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}
.visualizer.active { opacity: 1; }

.visualizer span {
    width: 5px;
    border-radius: 3px;
    /* DEGRADADO MULTICOLOR PARA LAS BARRAS */
    background: linear-gradient(0deg, #00f0ff, #ff00ff, #39ff14);
    animation: equalizer 1.2s ease-in-out infinite;
    animation-play-state: paused;
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}
.visualizer.active span { animation-play-state: running; }

.visualizer span:nth-child(1) { height: 10px; animation-duration: 0.8s; }
.visualizer span:nth-child(2) { height: 20px; animation-duration: 1.1s; }
.visualizer span:nth-child(3) { height: 15px; animation-duration: 0.9s; }
.visualizer span:nth-child(4) { height: 25px; animation-duration: 1.3s; }
.visualizer span:nth-child(5) { height: 12px; animation-duration: 1s; }

@keyframes equalizer {
    0%, 100% { height: 5px; }
    50% { height: 35px; }
}

/* Controles */
.audio-controls { display: flex; align-items: center; gap: 20px; }

.btn-player-control {
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0);
}

.btn-player-control:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
    transform: scale(1.1);
}

.btn-player-control.playing {
    border-color: #39ff14;
    color: #39ff14;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
    background: rgba(57, 255, 20, 0.1);
}

/* Volumen */
.volume-container { display: flex; align-items: center; gap: 10px; }
.vol-icon { color: #ff00ff; filter: drop-shadow(0 0 3px rgba(255,0,255,0.5)); }

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 6px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    /* Fondo del slider con degradado */
    background: linear-gradient(90deg, #8a2be2, #ff00ff);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 10px #ff00ff;
    transition: transform 0.2s;
}
.volume-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }
.volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px #ff00ff;
}

/* --- ACCESIBILIDAD (Brillo) --- */
.accessibility-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: rgba(20, 0, 30, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.accessibility-widget:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 0, 255, 0.3);
    border-color: #ff00ff;
}

.a11y-icon {
    width: 18px;
    height: 18px;
    color: #ff00ff;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(255,0,255,0.5));
}

.a11y-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #333, #ff00ff);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.a11y-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 8px #ff00ff;
}

.a11y-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px #ff00ff;
}

/* =========================================
   MEGA RESPONSIVE (MOVILES Y TABLETS)
   ========================================= */

/* Tablets pequeñas y celulares grandes (De 768px hacia abajo) */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-container {
        order: -1; /* Sube el formulario arriba de las radios en tablets para mejor UX */
    }
}

/* Celulares estándar y pantallas pequeñas (De 600px hacia abajo) */
@media (max-width: 600px) {
    /* Fondo animado menos agresivo para no lag en celulares baratos */
    body::before, body::after {
        width: 250px;
        height: 250px;
        filter: blur(80px);
        opacity: 0.3;
    }

    /* Ajuste de Logo */
    .header {
        padding: 20px 15px;
    }
    .header svg {
        max-width: 100% !important;
        height: auto !important;
    }
    .header p {
        font-size: 0.8rem !important;
        margin-top: -5px !important;
    }

    /* Barra de búsqueda */
    .search-container {
        margin-top: 20px;
        padding: 0 15px;
    }
    #buscarRadio {
        padding: 15px 20px 15px 48px;
        font-size: 1rem;
        border-radius: 15px;
    }
    .search-icon {
        left: 15px;
        width: 20px;
        height: 20px;
    }

    /* Contenedor Principal */
    .container {
        padding: 0 15px;
        margin: 20px auto;
    }

    /* La Magia de las Tarjetas: 1 sola columna, tamaño perfecto */
    .grid-radios {
        grid-template-columns: 1fr; /* Fuerza a que sea solo 1 tarjeta por fila */
        gap: 20px;
    }

    .radio-card {
        padding: 20px;
        border-radius: 15px;
        /* Quita la elevación exagerada en celular para que no se salga de la pantalla */
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .radio-card:hover {
        transform: translateY(-5px) scale(1.01); /* Scale mucho más suave */
    }

    /* Imagen de la tarjeta adaptativa */
    .card-img-container {
        height: 180px; /* Un poco más grande en celular para aprovechar el ancho completo */
        border-radius: 12px;
    }

    .card-title {
        /* clamp(min, preferred, max): Letras que se adaptan solas al ancho */
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .card-freq {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }

    .card-location {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
    }

    /* Formulario */
    .form-container {
        border-radius: 20px;
        padding: 25px 20px;
    }

    .form-container h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .btn-submit {
        padding: 14px;
        font-size: 0.95rem;
    }

    /* Widget de Brillo */
    .accessibility-widget {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        border-radius: 40px;
        background: rgba(10, 0, 16, 0.9); /* Más opaco para que no se confunda con el fondo */
    }
    .a11y-icon {
        width: 14px;
        height: 14px;
    }
    .a11y-slider {
        width: 60px;
        height: 3px;
    }
    .a11y-slider::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
    }

    /* REPRODUCTOR INFERIOR MOBILE */
    .player-bar {
        flex-wrap: wrap; /* Permite que los elementos se acomoden en 2 líneas si no caben */
        padding: 10px 15px;
        gap: 10px;
        border-top: 1px solid rgba(255, 0, 255, 0.3);
    }

    .vinyl-container {
        width: 50px;
        height: 50px;
        margin-right: 10px;
        border-width: 2px;
    }
    .vinyl-hole {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .player-info {
        flex: 1 1 60%; /* Ocupa el 60% del ancho */
        min-width: 0;
    }
    .player-info h4 {
        font-size: 0.85rem;
        white-space: normal; /* Permite que el nombre de la radio baje a la segunda línea si es muy largo */
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Máximo 2 líneas */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .player-info span {
        font-size: 0.7rem;
    }

    .visualizer {
        display: none; /* Se oculta en celular para dar espacio a lo importante */
    }

    .audio-controls {
        flex: 1 1 30%;
        justify-content: flex-end;
        gap: 12px;
    }

    .btn-player-control {
        width: 48px;
        height: 48px;
    }
    .btn-player-control svg {
        width: 26px;
        height: 26px;
    }

    .volume-container {
        display: none; /* Se oculta el volumen en móvil (el usuario usa los botones físicos de su teléfono) */
    }
}

/* Celulares ultra pequeños (Ej: iPhone SE, Galaxy Z Flip) */
@media (max-width: 380px) {
    .card-img-container {
        height: 150px;
    }
    
    .social-icons {
        gap: 8px;
    }
    .social-btn {
        width: 28px;
        height: 28px;
    }
    .social-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* --- REDES SOCIALES --- */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn svg {
    width: 16px;
    height: 16px;
    color: #aaa;
    transition: color 0.3s ease;
}

/* Estado inactivo (Cuando la radio no registró esa red) */
.social-btn.inactive {
    opacity: 0.3;
    cursor: default;
    pointer-events: none; /* Desactiva totalmente el clic y el hover */
}

/* Colores al pasar el mouse */
.social-btn.facebook:hover { background: rgba(24, 119, 242, 0.2); box-shadow: 0 0 10px rgba(24, 119, 242, 0.3); }
.social-btn.facebook:hover svg { color: #1877F2; }

.social-btn.instagram:hover { background: rgba(225, 48, 108, 0.2); box-shadow: 0 0 10px rgba(225, 48, 108, 0.3); }
.social-btn.instagram:hover svg { color: #E1306C; }

.social-btn.tiktok:hover { background: rgba(255, 0, 80, 0.2); box-shadow: 0 0 10px rgba(255, 0, 80, 0.3); }
.social-btn.tiktok:hover svg { color: #ff0050; }

.social-btn.whatsapp:hover { background: rgba(37, 211, 102, 0.2); box-shadow: 0 0 10px rgba(37, 211, 102, 0.3); }
.social-btn.whatsapp:hover svg { color: #25D366; }

/* =========================================
   BARRA DE BÚSQUEDA
   ========================================= */
.search-container {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 20px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    color: #ff00ff;
    filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.5));
    pointer-events: none;
    transition: color 0.3s ease;
}

#buscarRadio {
    width: 100%;
    padding: 18px 25px 18px 55px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff;
    background: rgba(20, 5, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 50px;
    outline: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

#buscarRadio::placeholder {
    color: #888;
    font-weight: 300;
}

#buscarRadio:focus {
    border-color: #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.3), 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(30, 10, 45, 0.8);
}

#buscarRadio:focus + .search-icon {
    color: #00f0ff;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.8));
}

/* Mensaje de "No se encontraron resultados" */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
    font-size: 1.2rem;
}

.no-results span {
    display: block;
    font-size: 3rem;
    margin-bottom: 10px;
}