#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #050505; /* Very dark grey, almost black */
  border-top: 1px solid #333;
  color: #fff;
  padding: 2rem;
  display: none;
  z-index: 10000;
  font-family: sans-serif;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}

.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  margin: 0 0 0.5rem 0;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #fff;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-btn {
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-btn:hover {
  border-color: #fff;
  color: #fff;
}

.cookie-btn.accept {
  background: #fff;
  border-color: #fff;
  color: #000;
  font-weight: 500;
}

.cookie-btn.accept:hover {
  background: #e0e0e0;
  border-color: #e0e0e0;
}
