.cookie-consent {

    position: fixed;
    right: 30px;
    bottom: 30px;

    width: 380px;
    max-width: calc(100% - 30px);

    background: rgba(22, 22, 22, .82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .45);

    color: white;

    z-index: 9999;

    overflow: hidden;

    transform: translateY(40px);
    opacity: 0;

    transition: .45s cubic-bezier(.2, .8, .2, 1);
}

.cookie-consent.is-visible {

    transform: translateY(0);
    opacity: 1;
}

.cookie-consent__content {

    padding: 28px;
}

.cookie-consent__icon {

    width: 64px;
    height: 64px;

    margin: 26px auto 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    background: linear-gradient(
            135deg,
            #ffb347,
            #ffcc33
    );

    box-shadow: 0 12px 30px rgba(255, 180, 0, .35);
}

.cookie-consent h3 {

    margin: 18px 0 10px;

    text-align: center;

    font-size: 22px;
}

.cookie-consent p {

    color: #d2d2d2;

    text-align: center;

    line-height: 1.6;
}

.cookie-consent__actions {

    margin-top: 22px;

    display: flex;

    gap: 12px;
}

.cookie-consent__btn {

    flex: 1;

    border: none;

    border-radius: 14px;

    height: 48px;

    cursor: pointer;

    font-weight: 600;

    transition: .25s;
}

.cookie-consent__btn--accept {

    background: linear-gradient(
            135deg,
            #FFD34E,
            #FF9F1A
    );

    color: #222;
}

.cookie-consent__btn--accept:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(255, 170, 0, .4);
}

.cookie-consent__link {

    display: flex;

    align-items: center;

    justify-content: center;

    color: #9ec9ff;

    text-decoration: none;

    padding: 0 10px;
}

.cookie-consent__close {

    position: absolute;

    right: 14px;

    top: 14px;

    width: 32px;

    height: 32px;

    border: none;

    background: transparent;

    color: #aaa;

    cursor: pointer;

    border-radius: 50%;

    transition: .2s;
}

.cookie-consent__close:hover {

    background: rgba(255, 255, 255, .08);

    color: white;
}

@media (max-width: 700px) {

    .cookie-consent {

        left: 15px;
        right: 15px;
        bottom: 15px;

        width: auto;
    }

    .cookie-consent__actions {

        flex-direction: column;
    }
}