:root {
    --hydrostop-consent-bg: rgba(15, 41, 66, 0.98);
    --hydrostop-consent-border: rgba(255, 255, 255, 0.12);
    --hydrostop-consent-text: #ffffff;
    --hydrostop-consent-muted: rgba(255, 255, 255, 0.72);
    --hydrostop-consent-accent: #e91e8c;
    --hydrostop-consent-accent-hover: #f24ca6;
}

.hydrostop-consent {
    position: fixed;
    left: 16px;
    right: 90px;
    bottom: 16px;
    z-index: 1000;
    display: none;
}

.hydrostop-consent.is-visible {
    display: block;
}

.hydrostop-consent__card {
    max-width: 880px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid var(--hydrostop-consent-border);
    background:
        radial-gradient(circle at top left, rgba(233, 30, 140, 0.18), transparent 34%),
        var(--hydrostop-consent-bg);
    color: var(--hydrostop-consent-text);
    box-shadow: 0 24px 80px rgba(2, 8, 23, 0.4);
    backdrop-filter: blur(14px);
}

.hydrostop-consent__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--hydrostop-consent-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hydrostop-consent__title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.hydrostop-consent__text {
    margin: 0;
    max-width: 680px;
    color: var(--hydrostop-consent-muted);
    font-size: 15px;
    line-height: 1.7;
}

.hydrostop-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hydrostop-consent__button {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 18px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hydrostop-consent__button:hover {
    transform: translateY(-1px);
}

.hydrostop-consent__button:focus-visible,
.hydrostop-consent-manage:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.hydrostop-consent__button--primary {
    background: var(--hydrostop-consent-accent);
    color: #ffffff;
}

.hydrostop-consent__button--primary:hover {
    background: var(--hydrostop-consent-accent-hover);
}

.hydrostop-consent__button--secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
}

.hydrostop-consent__button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.hydrostop-consent-manage,
#hydrostop-consent-manage {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 640px) {
    .hydrostop-consent {
        left: 12px;
        right: 82px;
        bottom: 12px;
    }

    .hydrostop-consent__card {
        padding: 20px;
        border-radius: 16px;
    }

    .hydrostop-consent__title {
        font-size: 24px;
    }

    .hydrostop-consent__text {
        font-size: 14px;
    }

    .hydrostop-consent__actions {
        flex-direction: column;
    }

    .hydrostop-consent__button {
        width: 100%;
        text-align: center;
    }

}
