/* Endril cookie consent banner — lightweight, EU-only (zero risk, standalone) */
#endril-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  max-width: 660px;
  width: calc(100% - 32px);
  box-sizing: border-box;
  background: rgba(10, 18, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 223, 246, 0.25);
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  color: #e7eefc;
  font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  padding: 16px 18px;
  z-index: 99999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
#endril-cookie-banner p {
  margin: 0;
  flex: 1 1 320px;
}
#endril-cookie-banner a {
  color: #00dff6;
  text-decoration: underline;
}
.endril-cc-btns {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.endril-cc-btn {
  border: 0;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}
.endril-cc-accept {
  background: linear-gradient(135deg, #00dff6, #0068ff);
  color: #04122e;
}
.endril-cc-reject {
  background: rgba(255, 255, 255, 0.08);
  color: #cdd8ee;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 520px) {
  #endril-cookie-banner {
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .endril-cc-btns {
    justify-content: stretch;
  }
  .endril-cc-btn {
    flex: 1;
  }
}
