.cookieConsentContainer {
    z-index: 99999;
    width: min(420px, calc(100% - 32px));
    box-sizing: border-box;
    padding: 24px;
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: none;

    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    color: #ffffff;
}

.cookieConsentContainer .cookieTitle a {
    display: block;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
    text-decoration: none;
}

.cookieConsentContainer .cookieDesc p {
    margin: 12px 0 0 0;
    padding: 0;
    color: #cbd5e1;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.cookieConsentContainer .cookieDesc a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 700;
}

.cookieConsentContainer .cookieDesc a:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 18px;
    padding: 13px 22px;
    min-width: 150px;

    border-radius: 18px;
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    color: #ffffff;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;

    box-shadow: 0 14px 35px rgba(14, 165, 233, 0.25);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(139, 92, 246, 0.35);
}

.cookieConsentContainer .cookieButton a:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    .cookieConsentContainer {
        right: 16px !important;
        bottom: 16px !important;
        width: calc(100% - 32px) !important;
        padding: 22px;
        border-radius: 24px;
    }

    .cookieConsentContainer .cookieTitle a {
        font-size: 18px;
    }

    .cookieConsentContainer .cookieDesc p {
        font-size: 13px;
    }

    .cookieConsentContainer .cookieButton a {
        width: 100%;
    }
}
