.card#cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    max-width: calc(100vw - 48px);
    padding: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
    font-family: inherit;
}

.card#cookie-consent-banner.cookie-consent-hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    visibility: hidden;
    pointer-events: none;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-default, #ffffff);
}

.cookie-consent-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stars, #FFC49B);
}

.cookie-consent-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.cookie-consent-body {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-secondary, #A194C7);
}

.cookie-consent-link {
    color: var(--span, #8365DF);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.cookie-consent-link:hover {
    color: var(--button-hover, #6F52C4);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.cookie-consent-buttons button {
    width: 100%;
}

@media (max-width: 576px) {
    .card#cookie-consent-banner {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
        padding: 16px;
        gap: 10px;
    }

    .cookie-consent-buttons {
        gap: 8px;
    }
}