/* ══ BANNER DE COOKIES ══════════════════════════════════════ */
#cookie-banner {
    position: fixed;
    bottom: 85px; /* por encima del player fijo */
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.97);
    border-top: 2px solid #00bfff;
    box-shadow: 0 -4px 20px rgba(0, 191, 255, 0.3);
    z-index: 99998;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-family: 'Roboto', sans-serif;
    backdrop-filter: blur(8px);
    animation: slideUpBanner 0.4s ease;
}
@keyframes slideUpBanner {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
#cookie-banner p {
    color: #ccc;
    font-size: 13px;
    margin: 0;
    flex: 1;
    min-width: 200px;
}
#cookie-banner a {
    color: #00bfff;
    text-decoration: underline;
}
#cookie-banner-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
#cookie-aceptar, #cookie-rechazar {
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}
#cookie-aceptar {
    background: #00bfff;
    color: #000;
}
#cookie-aceptar:hover { background: #00ffff; transform: scale(1.03); }
#cookie-rechazar {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
}
#cookie-rechazar:hover { border-color: #aaa; color: #fff; }

@media (max-width: 600px) {
    #cookie-banner { bottom: 80px; flex-direction: column; align-items: flex-start; }
}
