/* cookie-consent.css */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 800px;
    background: rgba(15, 15, 21, 0.85); /* fallback to theme var --bg-card if possible */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    z-index: 99990;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--text-main, #ffffff);
}

.cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-primary, #00FFCC);
    font-family: var(--font-display, 'Outfit', sans-serif);
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted, #a0a0b0);
}

.cookie-content a {
    color: var(--accent-primary, #00FFCC);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.cookie-content a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

.cookie-btn.accept {
    background: var(--accent-primary, #00FFCC);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.cookie-btn.accept:hover {
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .cookie-buttons {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
