#cookie-banner {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #141824;
  border-top: 1px solid #232A3D;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 20px;
}

#cookie-banner p {
  margin: 0;
  max-width: 640px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #98A2B8;
}

#cookie-banner a {
  color: #A78BFA;
}

#cookie-banner button {
  flex-shrink: 0;
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  background: #6D4FFF;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow .2s ease;
}
#cookie-banner button:hover {
  box-shadow: 0 6px 18px -6px rgba(109, 79, 255, .6);
}
#cookie-banner button:active {
  transform: scale(.96);
}

@media (max-width: 480px) {
  #cookie-banner {
    padding: 8px 12px;
    gap: 10px;
    justify-content: space-between;
  }
  #cookie-banner p {
    font-size: 11px;
    line-height: 1.35;
    text-align: left;
  }
  #cookie-banner button {
    padding: 6px 14px;
    font-size: 12px;
  }
}
