/* =========================================
   COOKIE NOTICE – RADIO-LISA
   DSGVO-HINWEIS (kein Tracking)
========================================= */

#cookie-banner {
    position: fixed;
    bottom: 32px;
    right: 32px;
    left: auto;
    transform: translateX(120%) translateY(0);
    width: 370px;
    max-width: 95vw;
    background: linear-gradient(135deg,#020617,#0f172a);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    color: #e5e7eb;
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    z-index: 9999;
    transition: transform .5s cubic-bezier(.77,0,.18,1), opacity .4s;
    opacity: 0;
}

#cookie-banner.show {
    transform: translateX(0) translateY(0);
    opacity: 1;
}


.cookie-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #cbd5f5;
    margin-bottom: 8px;
}

.cookie-text a{
    color:#93c5fd;
    text-decoration:none;
}
.cookie-text a:hover{
    text-decoration:underline;
}

#cookie-accept {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(59,130,246,.6);
    transition: transform .15s, box-shadow .15s;
    font-size: 1.08rem;
    margin-top: 6px;
    align-self: flex-end;
}
#cookie-accept:hover {
    transform: scale(1.07);
    box-shadow: 0 0 32px rgba(59,130,246,.9);
}

/* Mobile */
@media(max-width:720px) {
    #cookie-banner {
        right: 2vw;
        left: 2vw;
        width: 96vw;
        max-width: 98vw;
        padding: 16px 10px;
    }
    #cookie-accept {
        align-self: flex-end;
    }
}
