.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 520px;
    width: 90%;
    background: #101010;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
    border: 1px solid #d06131;
}

.cookie-content p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #ededed;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .cookie-buttons {
        justify-content: center;
    }
}