/* Clean cookie consent */
.ck-banner {
  position: fixed;
  z-index: 9999;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 380px;
  margin: 0 auto 0 0;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(18, 15, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: ckIn 0.28s ease-out;
}
@media (min-width: 520px) {
  .ck-banner {
    left: auto;
    right: 20px;
    bottom: 20px;
    margin: 0;
  }
}
@keyframes ckIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.ck-banner[hidden],
.ck-modal[hidden] {
  display: none !important;
}
.ck-text {
  margin: 0 0 12px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #b5aa98;
}
.ck-text strong {
  color: #f0e8dc;
  font-weight: 600;
}
.ck-text a {
  color: #e8a820;
  text-decoration: none;
}
.ck-text a:hover {
  text-decoration: underline;
}
.ck-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}
.ck-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.ck-btn-ghost {
  background: transparent;
  color: #a89880;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ck-btn-ghost:hover {
  color: #f0e8dc;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.ck-btn-primary {
  background: #e8a820;
  color: #0a0806;
}
.ck-btn-primary:hover {
  background: #f0b84a;
}
.ck-btn-block {
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
}

/* Settings modal */
.ck-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.5);
}
.ck-modal-card {
  width: min(360px, 100%);
  padding: 16px;
  border-radius: 14px;
  background: #14110d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.ck-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ck-modal-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f2ebe0;
}
.ck-x {
  appearance: none;
  border: 0;
  background: transparent;
  color: #8a8070;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
}
.ck-x:hover {
  color: #f2ebe0;
  background: rgba(255, 255, 255, 0.06);
}
.ck-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.ck-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.ck-row strong {
  display: block;
  font-size: 0.88rem;
  color: #f0e8dc;
  font-weight: 600;
}
.ck-row small {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: #8a8070;
}
.ck-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e8a820;
  flex-shrink: 0;
}
