/* Estilos del cookie banner — Sistema de Dominio Local AdsRanks */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(212, 162, 60, 0.25);
  padding: 18px 24px;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  color: #cfc4b4;
  font-size: 13.5px;
  margin: 0;
  max-width: 640px;
  line-height: 1.5;
}

.cookie-banner-inner a {
  color: #d4a23c;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex: none;
}

.cookie-btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  transition: 0.2s ease;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #d4a23c, #b8862e);
  color: #1a1206;
}
.cookie-btn-primary:hover {
  transform: translateY(-1px);
}

.cookie-btn-ghost {
  background: transparent;
  border-color: rgba(212, 162, 60, 0.3);
  color: #cfc4b4;
}
.cookie-btn-ghost:hover {
  background: rgba(212, 162, 60, 0.08);
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
