/* ──────────────────────────────────────────────────────────────────────
   Cookie banner — bottom-left fixed modal (gameVgames style)
   ────────────────────────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 380px;
  width: calc(100vw - 40px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  font-family: 'Nunito', 'Inter', system-ui, sans-serif;
}
#cookie-banner.cc-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cc-card {
  background: linear-gradient(180deg, #1a1d2a 0%, #14171f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  color: #f0f2ff;
}
.cc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(225, 29, 72, 0.15);
  color: #ef4444;
  flex-shrink: 0;
}
.cc-title {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.3px;
}
.cc-msg {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #c8ccdb;
}
.cc-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.cc-btn {
  flex: 1;
  padding: 11px 18px;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.1s ease;
}
.cc-btn:hover { filter: brightness(1.1); }
.cc-btn:active { transform: scale(0.97); }
.cc-btn-accept {
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
}
.cc-btn-decline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0f2ff;
}
.cc-manage {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #9ca3b8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.cc-manage:hover { color: #f0f2ff; }

@media (max-width: 480px) {
  #cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; max-width: none; }
  .cc-card { padding: 18px; }
}
