#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 40, 55, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #e2e8f0;
  padding: 12px 16px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
  opacity: 0.85;
}

#cookie-banner a {
  color: #90cdf4;
  text-decoration: none;
  border-bottom: 1px solid rgba(144,205,244,0.4);
}

#cookie-accept {
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background .2s;
}

#cookie-accept:hover { background: #2563eb; }

#cookie-decline {
  background: transparent;
  color: rgba(160,174,192,0.7);
  border: none;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  padding: 6px 2px;
  font-family: inherit;
  text-decoration: underline;
}

#cookie-decline:hover { color: #e2e8f0; }

@media (max-width: 480px) {
  #cookie-banner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px 16px;
  }

  #cookie-banner p { width: 100%; }

  #cookie-accept {
    flex: 1;
    padding: 10px;
    font-size: 13px;
  }

  #cookie-decline {
    flex: 0;
    padding: 10px 6px;
    white-space: nowrap;
  }
}
