.cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg2, #141716);
    border-top: 0.5px solid var(--border-md, rgba(255,255,255,0.13));
    z-index: 9999;
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-bar.hidden { display: none; }
.cookie-text { font-size: 12.5px; color: var(--text-2, #9a9790); max-width: 680px; line-height: 1.6; }
.cookie-text a { color: var(--accent, #c8f060); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 500; padding: 8px 18px; border-radius: var(--r, 8px); border: none; cursor: pointer; transition: background .15s; }
.cookie-accept  { background: var(--accent, #c8f060); color: #0d0f0e; }
.cookie-accept:hover  { background: var(--accent-d, #a8d040); }
.cookie-decline { background: transparent; color: var(--text-2, #9a9790); border: 0.5px solid var(--border-md, rgba(255,255,255,0.13)); }
.cookie-decline:hover { background: var(--surface, #1f2321); color: var(--text, #f0ede8); }