/* DDU Tracker — cookie banner (frontend) */
.ddu-cookie{
    position:fixed;left:16px;right:16px;bottom:16px;z-index:999999;
    background:rgba(15,23,42,.92);color:#fff;border-radius:16px;
    padding:16px 20px;box-shadow:0 20px 50px rgba(0,0,0,.35);
    backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.08);
    font-family:'DM Sans','Inter',system-ui,-apple-system,Segoe UI,sans-serif;
    transform:translateY(16px);opacity:0;transition:all .3s ease;
    max-width:640px;margin:0 auto;
}
.ddu-cookie.ddu-cookie-show{transform:translateY(0);opacity:1}
.ddu-cookie-inner{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.ddu-cookie-text{flex:1;min-width:220px;line-height:1.45;font-size:14px}
.ddu-cookie-text strong{display:block;font-family:'Sora','DM Sans',sans-serif;font-weight:600;margin-bottom:2px;font-size:15px;letter-spacing:.2px}
.ddu-cookie-text span{opacity:.78}
.ddu-cookie-actions{display:flex;gap:8px}
.ddu-cookie-actions button{
    border:0;cursor:pointer;font-weight:600;font-size:13.5px;
    padding:10px 16px;border-radius:10px;font-family:inherit;
    transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.ddu-btn-ghost{background:transparent;color:rgba(255,255,255,.82);border:1px solid rgba(255,255,255,.18)!important}
.ddu-btn-ghost:hover{background:rgba(255,255,255,.08)}
.ddu-btn-primary{
    background:linear-gradient(135deg,#0077b6 0%,#00b4d8 100%);color:#fff;
    box-shadow:0 8px 20px rgba(0,119,182,.35);
}
.ddu-btn-primary:hover{transform:translateY(-1px);box-shadow:0 10px 24px rgba(0,119,182,.45)}
@media (max-width:480px){
    .ddu-cookie{left:8px;right:8px;bottom:8px;padding:14px}
    .ddu-cookie-actions{width:100%;justify-content:flex-end}
}
