.analytics-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    display: flex;
    width: min(620px, calc(100vw - 40px));
    align-items: center;
    gap: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(38, 224, 140, 0.34);
    border-radius: 8px;
    background: rgba(4, 17, 24, 0.97);
    color: #eefbf7;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
}

.analytics-consent[hidden] {
    display: none;
}

.analytics-consent strong {
    display: block;
    margin-bottom: 5px;
    color: #eefbf7;
    font-size: 15px;
}

.analytics-consent p {
    margin: 0 0 5px;
    color: #a9bbb7;
    font-size: 13px;
    line-height: 1.5;
}

.analytics-consent a {
    color: #5ce4c0;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.analytics-consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.analytics-consent button,
.analytics-privacy-settings {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(92, 228, 192, 0.35);
    border-radius: 7px;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
}

.analytics-consent-reject {
    background: transparent;
    color: #d6e4e0;
}

.analytics-consent-accept {
    background: #22db92;
    color: #032016;
}

.analytics-privacy-settings {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 9999;
    min-height: 30px;
    padding: 0 10px;
    background: rgba(4, 17, 24, 0.88);
    color: #9eb6b0;
    opacity: 0.72;
}

.analytics-consent:not([hidden]) + .analytics-privacy-settings {
    display: none;
}

@media (max-width: 680px) {
    .analytics-consent {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .analytics-consent-actions {
        justify-content: flex-end;
    }
}
