.cookie-banner {
    display: none;
    position: fixed;
    bottom: 100px; /* ← Subiu para cima do player */
    left: 20px;
    right: 20px;
    background: #1f2937;
    color: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    justify-content: space-between;
    align-items: center;
    z-index: 999999 !important;
    gap: 12px;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.cookie-message {
    flex: 1 1 auto;
    font-size: 14px;
}

.cookie-message a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: #059669;
}
