/* Passive cookie notice — small dismissible toast, bottom-left. */
#cookie-notice {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 340px;
  padding: 0.55rem 0.75rem;
  background: rgba(24, 24, 27, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.78rem;
  color: #ADADB8;
  line-height: 1.4;
}

#cookie-notice a {
  color: #00E676;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 230, 118, 0.3);
}

#cookie-notice a:hover {
  border-bottom-color: #00E676;
}

#cn-dismiss {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #68687A;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

#cn-dismiss:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}

@media (max-width: 480px) {
  #cookie-notice {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }
}
