#cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  z-index: 9999;
  width: calc(100% - 2.5rem);
  max-width: 780px;
  background: #0B1F35;
  border: 1px solid rgba(255, 210, 0, 0.22);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#cookie-banner .cookie-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 210, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cookie-banner .cookie-icon svg {
  width: 18px;
  height: 18px;
  stroke: #FFD200;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#cookie-banner p {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #8FA3BB;
  line-height: 1.55;
  margin: 0;
}

#cookie-banner p a {
  color: #FFD200;
  text-decoration: underline;
  text-decoration-color: rgba(255, 210, 0, 0.4);
}

#cookie-banner p a:hover {
  text-decoration-color: #FFD200;
}

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

.cookie-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn.accept {
  background: #FFD200;
  color: #08121E;
}

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

.cookie-btn.decline {
  background: transparent;
  color: #8FA3BB;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn.decline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-wrap: wrap;
    gap: 0.85rem;
    padding: 1rem;
    bottom: 0.75rem;
  }

  #cookie-banner .cookie-icon {
    display: none;
  }

  #cookie-banner p {
    font-size: 12px;
    flex: 1 1 100%;
  }

  .cookie-buttons {
    width: 100%;
    gap: 0.5rem;
  }

  .cookie-btn {
    flex: 1;
    padding: 9px 12px;
    font-size: 13px;
  }
}
