#mlh-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.09);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#mlh-consent.mlh-c-show { transform: translateY(0); }
.mlh-c-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 8%;
    display: flex;
    align-items: center;
    gap: 28px;
}
.mlh-c-text { flex: 1; min-width: 0; }
.mlh-c-text strong { display: block; color: #f1f5f9; font-size: 14px; font-weight: 700; margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.mlh-c-text p { color: #94a3b8; font-size: 13px; line-height: 1.5; margin: 0; font-family: 'Inter', sans-serif; }
.mlh-c-text a { color: #38bdf8; text-decoration: none; }
.mlh-c-text a:hover { text-decoration: underline; }
.mlh-c-btns { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }
.mlh-c-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
    line-height: 1;
}
.mlh-c-decline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.18);
    color: #94a3b8;
}
.mlh-c-decline:hover { border-color: rgba(255,255,255,0.38); color: #e2e8f0; }
.mlh-c-accept { background: #0ea5e9; color: white; }
.mlh-c-accept:hover { background: #0284c7; }
@media(max-width: 640px) {
    .mlh-c-inner { flex-direction: column; align-items: flex-start; padding: 16px 5%; gap: 12px; }
    .mlh-c-btns { width: 100%; }
    .mlh-c-btn { flex: 1; text-align: center; padding: 12px 16px; }
}
