/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(29, 29, 31, 0.95);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 1rem 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-consent-banner.show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-consent-banner p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 600px;
}
.cookie-consent-banner a {
    color: #64acff;
    text-decoration: underline;
}
.cookie-consent-banner .btn-accept {
    background: #0071e3;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 980px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-consent-banner .btn-accept:hover {
    background: #0077ed;
}
.cookie-consent-banner .btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 980px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s;
}
.cookie-consent-banner .btn-reject:hover {
    border-color: #fff;
}
