.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1f1f1f;
    color: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner[hidden] {
    display: none;
}

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

.cookie-banner a:hover {
    opacity: 0.85;
}

.cookie-banner p {
    margin: 0;
    max-width: 640px;
    text-align: center;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner button {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: inherit;
}

.cookie-banner__accept {
    background: #484949;
    color: white;
}

.cookie-banner__accept:hover {
    background: #5a5b5b;
}

.cookie-banner__decline {
    background: transparent;
    color: #cccccc;
    border: 1px solid #666;
}

.cookie-banner__decline:hover {
    background: rgba(255, 255, 255, 0.08);
}