#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

#cookie-consent-banner.show {
    display: flex;
    transform: translateY(0);
}

#cookie-consent-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

#cookie-consent-text a {
    color: #60a5fa;
    text-decoration: none;
}

#cookie-consent-text a:hover {
    text-decoration: underline;
}

#cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#cookie-consent-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    #cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
