.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    background: #1a1d29;
    color: #fff;
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
    animation: cookieSlideUp 0.3s ease-out;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.cookie-banner-text {
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: #8ec5ff;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #fff;
}

.cookie-banner-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner-accept {
    background: #4a90e2;
    color: #fff;
    border: 0;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.cookie-banner-accept:hover {
    background: #3a7fd1;
}

.cookie-banner-decline {
    background: transparent;
    color: #c0c5d0;
    border: 1px solid #3a3f4e;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s ease;
}

.cookie-banner-decline:hover {
    color: #fff;
    border-color: #5a5f6e;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .cookie-banner {
        padding: 12px 16px;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
