/* cookie consent banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a1020;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent__text {
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-consent__link {
    color: #3571CB;
    text-decoration: underline;
}

.cookie-consent__link:hover {
    color: #01B0B0;
}

.cookie-consent__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-consent__actions .blue_gradient button {
    height: 40px;
    line-height: 40px;
    padding: 0 24px;
    font-size: 14px;
}

.cookie-consent__button--decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    height: 40px;
    line-height: 40px;
    padding: 0 24px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Alliance No.1';
    letter-spacing: .02em;
    text-transform: none;
    cursor: pointer;
    white-space: nowrap;
    transition: .3s;
}

.cookie-consent__button--decline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

@media screen and (max-width: 1000px) {
    .cookie-consent__text {
        font-size: 12px;
        line-height: 16px;
    }
}

@media screen and (max-width: 600px) {
    .cookie-consent {
        padding: 16px 0;
    }

    .cookie-consent__inner {
        flex-direction: column;
        gap: 16px;
    }

    .cookie-consent__actions {
        width: 100%;
        flex-shrink: 1;
    }

    .cookie-consent__actions .blue_gradient,
    .cookie-consent__actions .blue_gradient button,
    .cookie-consent__button--decline {
        width: 100%;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
}
