.cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0E1623; color: #F0F4F8;
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; z-index: 9999;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.cookie-consent p { margin: 0; color: #B0B7C1; }
.cookie-consent a { color: #2EC4B6; text-decoration: none; }
.cookie-consent button {
  background: #2EC4B6; color: #080E17;
  border: none; padding: 10px 24px;
  border-radius: 8px; cursor: pointer;
  font-weight: 600; font-size: 14px;
  white-space: nowrap;
}
.cookie-consent button:hover { background: #26A89B; }
@media (max-width: 640px) {
  .cookie-consent { flex-direction: column; text-align: center; }
}
