#cookie-consent {
  position: fixed;
  top: 1rem;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  width: min(92vw, 520px);
}

.cookie-consent .cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(6, 10, 17, 0.72);
  color: #fff;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: 0.95rem;
}

.cookie-consent p {
  margin: 0;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: flex-start;
}

.cookie-actions .cookie-more {
  margin-left: 0;
  color: #d3e0ea;
  text-decoration: none;
  font-weight: 600;
  align-self: center;
}

.button.cookie-btn-accept {
  background: linear-gradient(90deg, #16c1e2, #0891b2);
  color:#fff;
  border-radius: 12px;
  padding:0.5rem 1rem;
  border:none;
  box-shadow:0 10px 24px rgba(8,145,178,0.22);
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.button.cookie-btn-accept:hover{ transform:translateY(-3px); box-shadow:0 14px 36px rgba(8,145,178,0.18) }

.button.cookie-btn-decline{
  background:transparent;
  color:#e6eef0;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:0.45rem 0.95rem;
  transition:background .12s ease, color .12s ease;
}
.button.cookie-btn-decline:hover{ background: rgba(255,255,255,0.04); color:#fff }

.cookie-more{ font-size:0.9rem; opacity:0.95 }

@media (min-width: 640px) {
  #cookie-consent { width: min(90vw, 560px); }
  .cookie-consent .cookie-inner { padding: 1.2rem 1.35rem; }
}

/* small visual polish for cookie link */
#cookie-consent a { color: #c7f9f4 }
