/* GDPR cookie consent banner (site-wide, self-contained — no theme vars) */
.t10c {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.t10c[hidden] {
  display: none;
}
.t10c-card {
  pointer-events: auto;
  max-width: 460px;
  background: #0d0d18;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}
.t10c.t10c-in .t10c-card {
  opacity: 1;
  transform: translateY(0);
}
.t10c-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}
.t10c-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.t10c-link {
  color: #7fa8ff;
  text-decoration: underline;
}
.t10c-link:hover {
  color: #a8c4ff;
}
.t10c-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.t10c-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 200ms,
    border-color 200ms,
    color 200ms;
}
.t10c-accept {
  border: 1px solid #fff;
  background: #fff;
  color: #0d0d18;
}
.t10c-accept:hover {
  background: #e8e8f2;
  border-color: #e8e8f2;
}
.t10c-decline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
}
.t10c-decline:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
@media (max-width: 640px) {
  .t10c {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .t10c-card {
    max-width: none;
    width: 100%;
  }
}
