#cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 99999;
  background: #131316; border-top: 1px solid #232328; color: #EDEDEF;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  animation: cbUp .3s ease;
}
@keyframes cbUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
#cookie-banner .cb-inner {
  max-width: 1100px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
#cookie-banner .cb-text { flex: 1 1 400px; min-width: 260px; }
#cookie-banner .cb-text strong { font-size: 15px; }
#cookie-banner .cb-text p { margin: 4px 0 0; font-size: 13px; line-height: 1.5; color: #A0A0A8; }
#cookie-banner .cb-text a { color: #EDEDEF; text-decoration: underline; }
#cookie-banner .cb-actions { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-banner button {
  min-height: 44px; padding: 10px 18px; border-radius: 8px; font-size: 14px;
  font-weight: 500; cursor: pointer; border: 1px solid #232328; white-space: nowrap;
}
#cookie-banner .cb-reject { background: transparent; color: #EDEDEF; }
#cookie-banner .cb-reject:hover { background: #1C1C20; }
#cookie-banner .cb-accept { background: #EDEDEF; color: #0A0A0B; border-color: #EDEDEF; }
#cookie-banner .cb-accept:hover { background: #fff; }
@media (max-width: 640px) {
  #cookie-banner .cb-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  #cookie-banner .cb-actions { flex-direction: column-reverse; }
  #cookie-banner button { width: 100%; }
}
