/* ── CSH Age Gate ─────────────────────────────────────────────── */

#csh-age-gate {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 14, 0.7);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  animation: csh-age-fadein .35s ease;
}
#csh-age-gate.csh-age-closing {
  opacity: 0;
  transition: opacity .4s ease;
}
@keyframes csh-age-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.csh-age-box {
  width: 92%;
  max-width: 620px;
  background: #fff;
  border-radius: 6px;
  padding: 52px 44px 48px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  transform: scale(1);
  animation: csh-age-pop .4s cubic-bezier(.22,1,.36,1);
}
@keyframes csh-age-pop {
  from { transform: scale(.92) translateY(16px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.csh-age-title {
  font-family: var(--theme-font-h2_font-family, 'Roboto', sans-serif);
  font-size: 22px;
  font-weight: 900;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.35;
  margin: 0 0 12px;
}

.csh-age-subtitle {
  font-family: var(--theme-font-h5_font-family, 'Roboto', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 32px;
}

.csh-age-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.csh-age-btn {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 18px 28px;
  font-family: var(--theme-font-h5_font-family, 'Roboto', sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}
.csh-age-btn:hover {
  background: #333;
  transform: translateY(-2px);
}
.csh-age-btn.csh-age-reject {
  background: #222;
}
.csh-age-btn.csh-age-reject:hover {
  background: #444;
}

/* Responsive */
@media (max-width: 580px) {
  .csh-age-box {
    padding: 36px 24px 32px;
  }
  .csh-age-title {
    font-size: 18px;
  }
  .csh-age-subtitle {
    font-size: 15px;
  }
  .csh-age-buttons {
    flex-direction: column;
    align-items: center;
  }
  .csh-age-btn {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
}
