/* ================================
   COOKIE BANNER
================================ */
#cookie-banner {
    position: fixed;
    bottom: +320px;
    left: 20px;
    right: 20px;
    background: #1e1e1e;
    color: #fff;
    padding: 18px 22px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgb(1 33 89 / 85%);
    display: none;
    z-index: 99999;
    animation: fadeIn 0.4s ease;
}

#cookie-banner.is-visible {
    display: block;
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-text {
    font-size: 15px;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ================================
   COOKIE MODAL
================================ */
#cookie-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999999;
}

#cookie-modal.is-visible {
    display: block;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
}

.cookie-modal-dialog {
    position: relative;
    max-width: 480px;
    margin: 80px auto;
    background: #fff;
    color: #222;
    border-radius: 12px;
    padding: 25px;
    z-index: 2;
    animation: slideUp 0.35s ease;
}

.cookie-modal-dialog h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.cookie-category {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category strong {
    font-size: 16px;
}

.cookie-category p {
    margin: 6px 0 10px;
    font-size: 14px;
    color: #555;
}

.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* ================================
   ANIMATIONEN
================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.blocked-embed {
    filter: blur(4px);
    pointer-events: none;
}

.embed-placeholder {
    background: #f3f3f3;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
}

.embed-placeholder-inner {
    text-align: center;
}

.embed-placeholder button {
    margin-top: 10px;
}
.cookie-revoke {
    text-align: center;
    margin: 20px 0;
}

.cookie-revoke button {
    font-size: 14px;
}
