/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: #0f172a;
    color: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #1e293b;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-banner-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e1;
}

.cookie-banner-content a {
    color: #38bdf8;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-btn.accept {
    background-color: #0ea5e9;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #0284c7;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #94a3b8;
    border: 1px solid #334155;
}

.cookie-btn.decline:hover {
    background-color: #1e293b;
    color: #cbd5e1;
}

@media (min-width: 640px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .cookie-banner-content {
        flex: 1;
    }

    .cookie-banner-actions {
        flex-shrink: 0;
    }
}