/* Cookie consent banner */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    max-width: 380px;
    width: calc(100% - 40px);
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    font-family: 'Ubuntu', sans-serif;
    animation: cbSlideIn 0.35s ease;
}
@keyframes cbSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner.cb-hide {
    animation: cbSlideOut 0.25s ease forwards;
}
@keyframes cbSlideOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(20px); }
}
.cookie-banner p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 14px;
}
.cookie-banner a {
    color: var(--accent-light);
    text-decoration: none;
}
.cookie-banner a:hover {
    text-decoration: underline;
}
.cookie-banner .cb-buttons {
    display: flex;
    gap: 8px;
}
.cookie-banner .cb-btn {
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.cookie-banner .cb-accept {
    background: transparent;
    border: 2px solid var(--accent-muted);
    color: var(--text-primary);
}
.cookie-banner .cb-accept:hover {
    background: var(--accent-muted);
}
.cookie-banner .cb-decline {
    background: transparent;
    border: 2px solid rgba(89,106,138,0.3);
    color: rgba(255,255,255,0.35);
}
.cookie-banner .cb-decline:hover {
    border-color: var(--accent-muted);
    color: var(--text-primary);
}
