.cookieConsentContainer {
    z-index: 999;
    width: min(350px, calc(100vw - 24px));
    min-height: 20px;
    box-sizing: border-box;
    padding: 28px;
    background: rgba(6, 21, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(6, 21, 42, 0.28);
    overflow: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cookieConsentContainer .cookieTitle a {
    display: block;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    line-height: 1.1;
    font-weight: 700;
    text-decoration: none;
}

.cookieConsentContainer .cookieDesc p {
    display: block;
    margin: 10px 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
}

.cookieConsentContainer .cookieDesc a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookieConsentContainer .cookieButton a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 16px;
    padding: 0 18px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--secondary);
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(176, 141, 87, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    transform: translateY(-1px);
    background: #c9a26b;
    box-shadow: 0 12px 24px rgba(176, 141, 87, 0.34);
}

@media (max-width: 980px) {
    .cookieConsentContainer {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 18px 18px 0 0;
    }
}
