#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  border-top: 2px solid #c0392b;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9rem;
  color: #e8e8e8;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

#cookie-banner a {
  color: #c0392b;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.cookie-btn-accept {
  background: #c0392b;
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #a93226;
}

.cookie-btn-decline {
  background: transparent;
  color: #888;
  border: 1px solid #444;
}

.cookie-btn-decline:hover {
  color: #e8e8e8;
  border-color: #888;
}
