.cookieConsent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.98);
    color: #100b37;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    box-shadow: 0 -6px 24px rgba(16, 11, 55, 0.28);
    box-sizing: border-box;
}
.cookieConsent::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(to right, #fff100, #f57e39, #e83d3a, #c7305d, #872d72, #455eaa, #589dd0);
}
.cookieConsent * {
    box-sizing: border-box;
}
.cookieConsent__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.cookieConsent__text {
    max-width: 850px;
    text-align: left;
}
.cookieConsent__mainText {
    color: #100b37;
}
.cookieConsent__moreText {
    margin-top: 6px;
}
.cookieConsent__text a {
    color: #455eaa;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookieConsent__text a:hover {
    color: #c7305d;
}
.cookieConsent__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.cookieConsent__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    min-height: 44px;
    border: 2px solid #100b37;
    border-radius: 4px;
    padding: 11px 20px;
    background: #fff;
    color: #100b37;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookieConsent__btn--accept {
    background: #100b37;
    color: #fff;
}
.cookieConsent__btn:hover {
    background: #c7305d;
    border-color: #c7305d;
    color: #fff;
}
.legal-links {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 2.2rem 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.4rem;
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
}
.legal-links a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-links a:hover {
    color: #589dd0;
}
@media all and (max-width: 768px) {
    .cookieConsent {
        padding: 16px;
        font-size: 13px;
    }
    .cookieConsent__inner {
        display: block;
    }
    .cookieConsent__text {
        margin-bottom: 15px;
    }
    .cookieConsent__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }
    .cookieConsent__btn {
        width: 100%;
    }
    .legal-links {
        margin-top: 3rem;
        padding: 1.8rem 4.8vw 0;
        display: block;
        font-size: 1.2rem;
    }
    .legal-links a {
        display: table;
        margin: 0 auto 1rem;
    }
    .legal-links a:last-child {
        margin-bottom: 0;
    }
}
