.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.97);
  border-top: 1px solid rgba(250, 204, 21, 0.25);
  z-index: 9998;
  padding: 0.9rem 1.2rem;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
}

.cookie-content {
  max-width: 900px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-content p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
  line-height: 1.4;
}

.cookie-content a {
  color: var(--accent, #facc15);
  text-decoration: none;
  font-weight: 500;
}

.cookie-content a:hover {
  text-decoration: underline;
  color: white;
}

.cookie-accept-btn {
  background: var(--accent, #facc15);
  color: #000;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-accept-btn:hover {
  background: var(--accent-hover, #fde047);
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}