.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: #0d1c33;
    border-top: 3px solid #35f0ec;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-banner__text {
    flex: 1;
    min-width: 0;
}

.cookie-banner__text,
.cookie-banner__text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__text a {
    color: #35f0ec;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
    white-space: nowrap;
}

.cookie-banner__btn:hover {
    opacity: 0.85;
}

.cookie-banner__btn--accept {
    background-color: #35f0ec;
    color: #0d1c33;
}

.cookie-banner__btn--decline {
    background-color: transparent;
    color: #35f0ec;
    border: 1px solid #35f0ec;
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
    }
}
