/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-consent-banner.cc-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cc-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cc-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin: 0;
}

.cc-link {
    color: var(--color-accent, #3b79db);
    text-decoration: underline;
}

.cc-link:hover {
    color: #fff;
}

.cc-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cc-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.cc-btn--reject {
    background: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cc-btn--reject:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #e2e8f0;
}

.cc-btn--accept {
    background: var(--color-accent, #3b79db);
    color: #fff;
}

.cc-btn--accept:hover {
    background: #2d63b8;
}

@media (max-width: 640px) {
    .cc-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cc-buttons {
        justify-content: stretch;
    }

    .cc-btn {
        flex: 1;
        text-align: center;
    }
}
