.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 8, 15, 0.95);
    backdrop-filter: blur(5px);
    color: var(--text-light);
    padding: 15px 0;
    z-index: 1200;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    font-size: 0.9rem;
}
.cookie-consent-bar.visible {
    transform: translateY(0);
}
.cookie-consent-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-consent-bar p {
    margin: 0;
}
.cookie-consent-bar a {
    color: var(--primary-color);
    text-decoration: underline;
}
.cookie-consent-bar button {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .cookie-consent-bar .container {
        flex-direction: column;
        text-align: center;
    }
}