.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: .85rem 1rem;
    color: #fff;
    background: rgba(31, 27, 46, .96);
    box-shadow: 0 -8px 28px rgba(46, 33, 97, .18);
}

.cookie-consent-banner .cookie-consent-inner {
    width: 100%;
    max-width: var(--container, 1080px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-text {
    font-size: .92rem;
    line-height: 1.45;
    text-align: left;
}

.cookie-consent-text a {
    color: #cdc3f6;
    font-weight: 700;
}

.cookie-consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: .5rem;
}

.cookie-consent-btn,
.cookie-consent-link {
    min-height: 40px;
    border-radius: 999px;
    padding: .5rem .9rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent-btn {
    background: var(--c-primary, #6c4cf0);
    color: #fff;
    border: 1px solid var(--c-primary, #6c4cf0);
}

.cookie-consent-link {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
}

.cookie-consent-btn:hover {
    background: var(--c-primary-dark, #5739d6);
    border-color: var(--c-primary-dark, #5739d6);
}

.cookie-consent-link:hover {
    background: rgba(255, 255, 255, .08);
}

.cookie-consent-modal {
    background: rgba(31, 27, 46, .62);
    color: #fff;
    z-index: 9999;
}

.cookie-consent-modal .cookie-consent-actions {
    justify-content: center;
}

#cookie-settings-link {
    color: #c8c1ec;
    text-decoration: none;
}

#cookie-settings-link:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .cookie-consent-banner .cookie-consent-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-btn,
    .cookie-consent-link {
        flex: 1;
    }
}
