#cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
}

#cookie-consent.show {
  display: block;
  animation: cookieSlideUp 0.25s ease-out;
}

#cookie-consent .cookie-box {
  max-width: 980px;
  margin: 0 auto;
  background: #111827;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  padding: 18px 20px;
}

#cookie-consent .cookie-content {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

#cookie-consent .cookie-text {
  flex: 1 1 auto;
}

#cookie-consent .cookie-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

#cookie-consent .cookie-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

#cookie-consent .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-consent button,
#cookie-consent a.cookie-link {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

#cookie-consent button:hover,
#cookie-consent a.cookie-link:hover {
  transform: translateY(-1px);
}

#cookie-consent .cookie-accept {
  background: #f59e0b;
  color: #111827;
}

#cookie-consent .cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

#cookie-consent .cookie-link {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 700px) {
  #cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  #cookie-consent .cookie-box {
    padding: 16px;
  }

  #cookie-consent .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  #cookie-consent .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  #cookie-consent button,
  #cookie-consent a.cookie-link {
    width: 100%;
    text-align: center;
  }
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
