@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&display=swap");

:root {
  color-scheme: only light;
  --holychat-blue-50: #f1f6ff;
  --holychat-blue-100: #dce6ff;
  --holychat-blue-400: #3373ff;
  --holychat-blue-600: #1357e6;
  --holychat-orange-400: #ff9d42;
  --holychat-sand-200: #fff4e1;
  --holychat-dark: #112443;
  --holychat-muted: #8b9bb7;
  --holychat-border: #d7def2;
  --holychat-bg: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  --shadow-soft: 0 20px 60px rgba(24, 40, 72, 0.18);
  font-family: "Archivo", "Segoe UI", Tahoma, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--holychat-bg);
  color: var(--holychat-dark);
  min-height: 100vh;
}

body.holychat-home {
  --holychat-home-surface: #252b4e;
  --holychat-home-text-strong: #f5f6ff;
  --holychat-home-text-muted: rgba(233, 236, 255, 0.82);
  --holychat-home-banner-strong: #ffdcb3;
  background: var(--holychat-home-surface);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/static/img/header-bg.png");
  background-repeat: repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

body.holychat-rooms::before,
body.holychat-chat::before,
body.holychat-home::before {
  display: none;
}

.holychat-age-gate {
  position: fixed;
  inset: 0;
  background: rgba(14, 28, 50, 0.94);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2000;
  padding: 2rem;
}

.holychat-age-gate.is-hidden {
  display: none;
}

.holychat-age-card {
  max-width: 520px;
  width: 100%;
  background: rgba(19, 40, 72, 0.95);
  border-radius: 24px;
  padding: 2.2rem 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(51, 115, 255, 0.25);
  display: grid;
  gap: 1.2rem;
}

.holychat-age-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(238, 245, 255, 0.88);
}

.holychat-age-actions {
  display: grid;
  gap: 0.8rem;
  justify-content: stretch;
}

.holychat-age-actions .btn {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
}

.holychat-age-actions .btn-age-accept {
  background: #2ecc71;
  color: #0f2a24;
}

.holychat-age-actions .btn-age-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(46, 204, 113, 0.3);
}

.holychat-age-actions .btn-age-deny {
  background: rgba(232, 74, 95, 0.15);
  color: #812030;
  border: 1px solid rgba(232, 74, 95, 0.35);
}

.holychat-age-actions .btn-age-deny:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(232, 74, 95, 0.25);
}

a {
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.65rem 1.4rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--holychat-blue-400);
  color: #fff;
  box-shadow: 0 10px 20px rgba(39, 74, 166, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 28px rgba(25, 58, 139, 0.3);
}

.btn-secondary {
  background: var(--holychat-orange-400);
  color: #172346;
  box-shadow: 0 10px 20px rgba(187, 97, 18, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 36, 67, 0.12);
  color: var(--holychat-dark);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-link {
  background: transparent;
  color: var(--holychat-blue-600);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  font-weight: 500;
}

.btn-link:hover {
  text-decoration: underline;
}

.holychat-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.holychat-banner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 157, 66, 0.18), rgba(51, 115, 255, 0.12));
  border: 1px solid rgba(255, 157, 66, 0.25);
  color: var(--holychat-dark);
  font-size: 0.95rem;
}

.holychat-banner strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #a75a07;
}

body.holychat-home .holychat-banner {
  background: linear-gradient(
      90deg,
      rgba(255, 157, 66, 0.32),
      rgba(84, 108, 199, 0.35)
    );
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--holychat-home-text-strong);
  backdrop-filter: blur(8px);
}

body.holychat-home .holychat-banner strong {
  color: var(--holychat-home-banner-strong);
}

.holychat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 246, 255, 0.92));
  padding: 1.4rem 1.8rem;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(19, 40, 72, 0.08);
}

.holychat-header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.holychat-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.holychat-header__title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.holychat-logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--holychat-blue-600);
}

.holychat-header__title small {
  font-size: 0.9rem;
  color: var(--holychat-muted);
}

.holychat-header__actions {
  display: flex;
  gap: 1rem;
}

.holychat-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 2.5rem;
  align-items: center;
}

.holychat-hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
}

.holychat-hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--holychat-dark);
  max-width: 540px;
}

body.holychat-home .holychat-hero h1 {
  color: var(--holychat-home-text-strong);
}

body.holychat-home .holychat-hero p {
  color: var(--holychat-home-text-muted);
}

body.holychat-home .hero-disclaimer {
  color: rgba(240, 242, 255, 0.7);
}

.holychat-hero__cta {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
}

body.holychat-home .holychat-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--holychat-home-text-strong);
}

body.holychat-home .holychat-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.holychat-hero__metrics {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: center;
}

.metrics-card {
  width: 100%;
  display: grid;
  gap: 1.2rem;
  text-decoration: none;
  color: inherit;
}

.metrics-card header {
  display: grid;
  gap: 0.3rem;
}

.metrics-card header strong {
  font-size: 1.1rem;
}

.metrics-caption {
  font-size: 0.9rem;
  color: var(--holychat-muted);
}

.metrics-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--holychat-muted);
}

.metrics-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.metrics-grid li {
  background: rgba(241, 246, 255, 0.9);
  border: 1px solid rgba(51, 115, 255, 0.16);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
}

.metrics-grid strong {
  font-size: 2rem;
  color: var(--holychat-blue-600);
  word-break: break-word;
}

.metrics-grid span {
  font-size: 0.9rem;
  color: var(--holychat-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metrics-card footer p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--holychat-dark);
}

.holychat-main {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
  gap: 2rem;
  align-items: start;
}

.holychat-panel,
.holychat-sidebar section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  padding: 2rem 2.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17, 36, 67, 0.08);
}

.holychat-panel h2,
.holychat-sidebar h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.holychat-cities-summary {
  display: grid;
  gap: 1.2rem;
  background: rgba(241, 246, 255, 0.9);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid rgba(51, 115, 255, 0.16);
}

.holychat-cities-summary .metrics-grid.inline {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.holychat-cities-summary .legal-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--holychat-muted);
}
 
.holychat-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.holychat-feature-grid article {
  background: rgba(241, 246, 255, 0.75);
  border: 1px solid rgba(51, 115, 255, 0.15);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.holychat-feature-grid h3 {
  margin: 0;
  font-size: 1.15rem;
}

.holychat-feature-grid p {
  margin: 0;
  color: var(--holychat-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.holychat-section {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 2.2rem 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17, 36, 67, 0.08);
  display: grid;
  gap: 1.8rem;
}

.holychat-section header {
  display: grid;
  gap: 0.6rem;
}

.holychat-section header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.holychat-section header p {
  margin: 0;
  color: var(--holychat-muted);
  font-size: 0.95rem;
}

.holychat-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.holychat-section__grid article {
  background: rgba(241, 246, 255, 0.8);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(51, 115, 255, 0.12);
  display: grid;
  gap: 0.7rem;
}

.holychat-section__grid h3 {
  margin: 0;
  font-size: 1.2rem;
}

.holychat-section__grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.holychat-section--faq {
  background: rgba(255, 255, 255, 0.98);
}

.holychat-faq {
  display: grid;
  gap: 1.2rem;
  margin: 0;
}

.holychat-faq > div {
  background: rgba(241, 246, 255, 0.72);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(17, 36, 67, 0.1);
}

.holychat-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.holychat-room-card {
  background: rgba(241, 246, 255, 0.9);
  border: 1px solid rgba(51, 115, 255, 0.16);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  display: grid;
  gap: 0.8rem;
  position: relative;
}

.holychat-room-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.holychat-room-card small {
  color: var(--holychat-muted);
  font-size: 0.9rem;
}

.holychat-room-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9rem;
}

.holychat-room-meta strong {
  color: var(--holychat-blue-600);
}

.holychat-room-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: rgba(51, 115, 255, 0.14);
  color: var(--holychat-blue-600);
}

.status-pill.warning {
  background: rgba(255, 157, 66, 0.18);
  color: #9a4a04;
}

.status-pill.success {
  background: rgba(76, 201, 150, 0.2);
  color: #1d7a57;
}

.holychat-placeholder {
  margin: 0;
  color: var(--holychat-muted);
  text-align: center;
}

.holychat-rooms-shell {
  gap: 2rem;
  padding-top: 2.6rem;
}

.holychat-rooms-header {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.holychat-rooms-header__title h1 {
  margin: 0;
  font-size: 2.15rem;
  letter-spacing: 0.04em;
  color: var(--holychat-dark);
}

.holychat-rooms-header__title p {
  margin: 0.45rem 0 0;
  max-width: 620px;
  color: var(--holychat-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.holychat-rooms-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.holychat-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.holychat-rooms-shell .holychat-room-card {
  background: #fff;
  border: 1px solid rgba(17, 36, 67, 0.12);
  border-radius: 20px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 22px 46px rgba(17, 36, 67, 0.15);
  gap: 1rem;
}

.holychat-rooms-shell .holychat-room-card h3 {
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.holychat-rooms-shell .holychat-room-card small {
  margin-top: 0.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.holychat-rooms-shell .holychat-room-meta {
  gap: 0.55rem;
  font-size: 0.9rem;
}

.holychat-rooms-shell .holychat-room-meta strong {
  color: var(--holychat-dark);
  font-size: 1.05rem;
}

.holychat-rooms-shell .holychat-room-actions {
  gap: 0.75rem;
  align-items: center;
}

.holychat-rooms-shell .holychat-room-actions .btn {
  min-width: 140px;
}

.holychat-rooms-shell .holychat-placeholder {
  border: 1px dashed rgba(17, 36, 67, 0.18);
  border-radius: 16px;
  padding: 1.4rem;
  background: rgba(241, 246, 255, 0.6);
}


.holychat-faq dt {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--holychat-dark);
}

.holychat-faq dd {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--holychat-dark);
}

.bans-list {
  display: grid;
  gap: 1rem;
}

.ban-card {
  background: rgba(241, 246, 255, 0.92);
  border-radius: 20px;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(51, 115, 255, 0.2);
  display: grid;
  gap: 0.9rem;
}

.ban-card.inactive {
  opacity: 0.8;
  border-style: dashed;
}

.ban-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ban-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--holychat-dark);
}

.entry-options {
  display: grid;
  gap: 1rem;
}

.entry-options article {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(17, 36, 67, 0.08);
  display: grid;
  gap: 0.6rem;
}

.entry-options h3 {
  margin: 0;
}

.entry-options p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--holychat-dark);
}

.holychat-footer {
  text-align: center;
  color: var(--holychat-muted);
  font-size: 0.85rem;
}

.holychat-footer a {
  text-decoration: none;
}

.holychat-footer a:hover {
  text-decoration: underline;
}

.holychat-footer small + small {
  display: block;
  margin-top: 0.3rem;
}

body.holychat-home .holychat-footer {
  color: rgba(236, 239, 255, 0.7);
}

.holychat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 36, 67, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1200;
}

.holychat-overlay.is-visible {
  display: flex;
}

.holychat-overlay[hidden] {
  display: none !important;
}

.holychat-overlay__card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17, 36, 67, 0.12);
  max-width: 520px;
  width: 100%;
  display: grid;
  gap: 1.2rem;
  padding: 2.2rem 2.4rem;
}

.holychat-overlay__card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.holychat-overlay__card header h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
}

.holychat-overlay__body {
  display: grid;
  gap: 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--holychat-dark);
}

.holychat-overlay__body ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.holychat-overlay__card footer {
  display: flex;
  justify-content: flex-end;
}

.holychat-overlay__note {
  font-size: 0.85rem;
  color: var(--holychat-muted);
}

.holychat-modal-form {
  display: grid;
  gap: 1rem;
}

.holychat-modal-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.holychat-modal-form input {
  border-radius: 12px;
  border: 1px solid var(--holychat-border);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.holychat-modal-status {
  font-size: 0.9rem;
  color: var(--holychat-muted);
}

.pill {
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pill-success {
  background: rgba(40, 167, 69, 0.18);
  color: #1d643b;
}

.pill-warning {
  background: rgba(255, 157, 66, 0.18);
  color: #a75a07;
}

.pill-muted {
  background: rgba(102, 112, 128, 0.12);
  color: rgba(17, 24, 39, 0.6);
}

.level {
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.level-info {
  background: rgba(51, 115, 255, 0.18);
  color: var(--holychat-blue-600);
}

.level-warning {
  background: rgba(255, 157, 66, 0.2);
  color: #a75a07;
}

.level-critical {
  background: rgba(232, 74, 95, 0.2);
  color: #b7203b;
}

.room-tag {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.holychat-locked {
  min-height: 100vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
  color: var(--holychat-dark);
}

.holychat-locked code {
  background: rgba(26, 46, 86, 0.08);
  padding: 0.25rem 0.4rem;
  border-radius: 6px;
}

.empty {
  color: var(--holychat-muted);
  font-style: italic;
}

@media (max-width: 1024px) {
  .holychat-shell {
    padding: 2.5rem 1.5rem;
  }

  .holychat-rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .holychat-hero {
    grid-template-columns: 1fr;
  }

  .holychat-hero__metrics {
    order: -1;
  }

  .holychat-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .holychat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .holychat-logo-img {
    width: 52px;
    height: 52px;
  }

  .holychat-header__actions {
    width: 100%;
    justify-content: space-between;
  }

  .holychat-hero__cta,
  .holychat-header__actions {
    flex-wrap: wrap;
  }

  .holychat-rooms-header__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .holychat-rooms-shell .holychat-room-actions {
    width: 100%;
  }

  .holychat-rooms-shell .holychat-room-actions .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .holychat-rooms-shell .holychat-room-actions .btn {
    width: 100%;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 420px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(17, 36, 67, 0.95);
  color: #fff;
  padding: 1.2rem 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  z-index: 999;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
}

.cookie-banner.is-hidden {
  display: none;
}

.turnstile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 36, 67, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
}

.turnstile-modal__card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.turnstile-modal__card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.turnstile-modal__card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.turnstile-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--holychat-muted);
}

.turnstile-backdrop[hidden] {
  display: none;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .turnstile-modal__card {
    padding: 1.6rem;
  }
}
