.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(8, 14, 28, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 20px 55px rgba(2, 8, 23, 0.45);
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #d8e4f8;
}

.cookie-banner button {
    flex-shrink: 0;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-banner button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.32);
}

@media (max-width: 767px) {
    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner button {
        width: 100%;
    }
}