/* ============================================
   GHAZALI Design System
   Source: Blue Quran of Kairouan (9th century)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --indigo-ground: #1A2D42;
  --indigo-structure: #263D54;
  --indigo-muted: #3E5D78;
  --indigo-secondary: #6A8CA8;
  --gold: #E8C65D;
  --gold-glow: #EDD07A;
  --gold-active-bg: rgba(232, 198, 93, 0.06);
  --vellum: #EDE5D4;
  --vellum-dim: #B0C4D6;

  --font-mono: 'DM Mono', monospace;
  --font-serif: 'Source Serif 4', serif;
  --font-arabic: 'Amiri', serif;

  --padding-page: 20px;
  --gap-section: 28px;
  --gap-label: 12px;
  --gap-item: 6px;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--indigo-ground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- SVG Grain Filter (referenced by .grain-layer) --- */

/* --- App Background (vellum texture) --- */
.app-bg {
  position: relative;
  background: var(--indigo-ground);
  min-height: 100%;
}

.app-bg::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(35,55,78,0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(20,38,56,0.6) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(28,48,68,0.5) 0%, transparent 40%),
    radial-gradient(ellipse at 15% 70%, rgba(18,34,52,0.5) 0%, transparent 35%),
    radial-gradient(ellipse at 85% 30%, rgba(32,50,72,0.4) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.app-bg::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(10,18,28,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

.grain-layer {
  position: fixed;
  inset: 0;
  filter: url(#grain);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* --- PWA install banner --- */
.pwa-banner {
  position: relative;
  padding: 12px 20px;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
  background: rgba(232, 198, 93, 0.08);
  border-bottom: 0.5px solid rgba(232, 198, 93, 0.2);
  text-align: center;
  z-index: 20;
}

.pwa-banner[hidden],
.pwa-install-panel[hidden] {
  display: none;
}

.pwa-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0 22px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.pwa-banner-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--gold-glow);
}

.pwa-banner-subtitle {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--indigo-secondary);
  letter-spacing: 1px;
}

.pwa-banner-close {
  position: absolute;
  top: calc(8px + env(safe-area-inset-top, 0px));
  right: 12px;
  background: none;
  border: none;
  color: var(--indigo-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}

.pwa-install-panel {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(232, 198, 93, 0.14);
  text-align: left;
}

.pwa-platform-row {
  margin: 0;
}

.pwa-platform-row .ob-platform-btn {
  min-width: 0;
}

.pwa-platform-row #app-btn-iphone {
  flex: 1;
}

.pwa-platform-row #app-btn-android {
  width: 110px;
  flex: 0 0 110px;
}

.pwa-flow {
  margin-top: 12px;
}

/* --- App Shell --- */
.app-shell {
  position: relative;
  z-index: 2;
  max-width: 393px;
  margin: 0 auto;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.app-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.app-content::-webkit-scrollbar {
  display: none;
}

/* --- Header --- */
.app-header {
  padding: 16px var(--padding-page) 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand-latin {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.brand-arabic {
  font-family: var(--font-arabic);
  font-size: 15px;
  font-weight: 400;
  color: var(--gold);
}

/* --- Dates --- */
.dates {
  text-align: center;
  padding: 0 var(--padding-page);
}

.date-hijri {
  font-family: var(--font-arabic);
  font-size: 12px;
  font-weight: 400;
  color: var(--indigo-muted);
  letter-spacing: 1px;
}

.date-gregorian {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--indigo-structure);
  text-transform: uppercase;
  margin-top: 2px;
}

/* --- Nafs Selector --- */
.nafs-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px var(--padding-page);
  gap: 0;
}

.nafs-divider {
  width: 1px;
  height: 28px;
  background: var(--indigo-structure);
  flex-shrink: 0;
}

.nafs-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 4px;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.nafs-option .nafs-arabic {
  font-family: var(--font-arabic);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.25;
  transition: all 0.3s ease;
}

.nafs-option .nafs-latin {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.25;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nafs-option.active .nafs-arabic {
  font-size: 38px;
  opacity: 1;
}

.nafs-option.active .nafs-latin {
  font-size: 9px;
  opacity: 1;
  letter-spacing: 3px;
}

.nafs-option.active {
  position: relative;
}

.nafs-option.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}

/* --- Dividers --- */
.divider {
  height: 0.5px;
  background: rgba(38,61,84,0.8);
  margin: 0 var(--padding-page);
}

.section-break {
  height: 0.5px;
  background: rgba(62, 93, 120, 0.4);
  margin: var(--gap-section) var(--padding-page);
}

.small-separator {
  width: 20px;
  height: 0.5px;
  background: var(--indigo-structure);
  margin: 16px 0;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in       { animation: fadeIn 0.6s ease both; }
.fade-in-delay { animation: fadeIn 0.8s ease both; }
.fade-in-delay-2 { animation: fadeIn 1s ease both; }
.slide-up      { animation: slideUp 1.1s ease both; }

/* --- Home Page (new single-ayah layout) --- */
.home-page {
  padding: 0;
}

.home-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px var(--padding-page) 0;
  padding-top: calc(40px + env(safe-area-inset-top, 0px));
  margin-bottom: 40px;
}

.home-dates {
  text-align: right;
}

/* --- Home Ayah Section --- */
.home-ayah-section {
  padding: 0 var(--padding-page);
}

.home-surah-ref {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.home-ayah-arabic {
  font-family: var(--font-arabic);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-glow);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  margin-bottom: 16px;
}

.home-ayah-french {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo-secondary);
  line-height: 1.6;
}

/* --- Home Paragraph (the mirror) --- */
.home-paragraph {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--vellum-dim);
  line-height: 1.85;
  padding: var(--gap-section) var(--padding-page);
}

/* --- Home Niyyah / Tanbih Columns --- */
.home-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  column-gap: 18px;
  padding: 18px var(--padding-page) 16px;
  align-items: stretch;
  border-top: 0.5px solid rgba(62, 93, 120, 0.24);
  border-bottom: 0.5px solid rgba(62, 93, 120, 0.18);
}

.home-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.home-col-divider {
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(62, 93, 120, 0.4) 18%,
    rgba(62, 93, 120, 0.32) 82%,
    transparent 100%
  );
  margin: 0;
  align-self: stretch;
}

.home-col-label-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 8px;
}

.home-niyyah-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2.4px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}

.home-tanbih-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2.4px;
  color: rgba(176, 196, 214, 0.52);
  text-transform: uppercase;
  line-height: 1;
}

.home-col-sub {
  font-family: var(--font-mono);
  font-size: 7px;
  color: rgba(106, 140, 168, 0.78);
  letter-spacing: 0.8px;
  line-height: 1;
  white-space: nowrap;
}

.home-niyyah-item {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--vellum);
  line-height: 1.32;
  margin-bottom: 0;
}

.home-tanbih-item {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  color: rgba(176, 196, 214, 0.68);
  line-height: 1.32;
  margin-bottom: 0;
}

/* --- Home Action Buttons --- */
.home-actions {
  padding: 0 var(--padding-page);
  margin-top: 32px;
}

.home-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: transparent;
  border: 1px solid var(--indigo-muted);
  padding: 14px 18px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 12px;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  text-decoration: none !important;
  -webkit-text-decoration: none;
}

.home-share-btn:link,
.home-share-btn:visited,
.home-share-btn:hover,
.home-share-btn:focus,
.home-share-btn:active {
  color: inherit;
  text-decoration: none !important;
  -webkit-text-decoration: none;
  outline: none;
}

.home-share-btn:active { transform: scale(0.98); }

.whatsapp-icon {
  display: block;
  width: 17px;
  height: 17px;
  fill: #25D366;
  flex-shrink: 0;
}

.home-share-btn span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vellum);
  text-decoration: none;
}

.home-musharata-btn {
  display: block;
  width: 100%;
  background: var(--gold);
  border: none;
  padding: 16px 18px;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.home-musharata-btn:active { transform: scale(0.98); }

.home-musharata-btn span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo-ground);
}

.home-share-cta {
  display: none;
  width: 100%;
  background: var(--gold);
  border: none;
  padding: 16px 18px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.home-share-cta:active { transform: scale(0.98); }

.home-share-cta span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--indigo-ground);
  line-height: 1.4;
}

.home-musharata-hint {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo-muted);
  text-align: center;
  margin-top: 8px;
}

/* Spacer above nav adapts to context */
.home-spacer {
  height: 100px;
}

.share-mode #pwa-banner,
.share-mode .bottom-nav,
.share-mode #tab-recherche,
.share-mode #tab-musharata,
.share-mode #tab-profil,
.share-mode .home-share-btn,
.share-mode .home-musharata-btn,
.share-mode .home-musharata-hint {
  display: none !important;
}

.share-mode .app-content {
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.share-mode .home-actions {
  margin-top: 36px;
}

.share-mode .home-share-cta {
  display: block;
}

.share-mode .home-spacer {
  height: 36px;
}

@media (display-mode: standalone) {
  .home-spacer {
    height: 80px;
  }
}

/* --- Daily Statement --- */
.daily-statement {
  padding: 32px var(--padding-page);
}

.daily-headline {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--gold-glow);
  line-height: 1.35;
  margin-bottom: 16px;
}

.daily-body {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--vellum-dim);
  line-height: 1.85;
}

/* --- Niyyah / Tanbih --- */
.niyyah-tanbih {
  display: flex;
  padding: 0 var(--padding-page);
  gap: 0;
}

.niyyah-col, .tanbih-col {
  flex: 1;
}

.nt-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.niyyah-col .nt-label { color: var(--gold); }
.tanbih-col .nt-label { color: var(--indigo-muted); }

.nt-sublabel {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--indigo-muted);
  margin-bottom: var(--gap-label);
}

.nt-items {
  display: flex;
  flex-direction: column;
  gap: var(--gap-item);
}

.nt-item {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.niyyah-col .nt-item { color: var(--vellum); }
.tanbih-col .nt-item { color: var(--indigo-secondary); }

/* --- APPROFONDIR Button --- */
.btn-approfondir {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--vellum);
  background: transparent;
  padding: 14px 18px;
  cursor: pointer;
  margin: 24px var(--padding-page);
  -webkit-tap-highlight-color: transparent;
}

.btn-approfondir span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--vellum);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Ayah Section --- */
.ayah-section {
  padding: 28px var(--padding-page);
}

.ayah-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.ayah-marker {
  font-family: var(--font-arabic);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
}

.ayah-sourah-ar {
  font-family: var(--font-arabic);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
}

.ayah-sourah-latin {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--indigo-muted);
  margin-left: 4px;
}

.ayah-arrow {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--indigo-muted);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.ayah-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ayah-play {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--indigo-muted);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
  -webkit-tap-highlight-color: transparent;
}

.ayah-play svg {
  width: 10px;
  height: 10px;
  fill: var(--indigo-muted);
}

.ayah-play.playing {
  border-color: var(--gold);
}

.ayah-play.playing svg {
  fill: var(--gold);
}

.ayah-text-ar {
  font-family: var(--font-arabic);
  font-size: 19px;
  font-weight: 400;
  color: var(--gold-glow);
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  flex: 1;
}

.ayah-text-ar.transliteration {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--gold-glow);
  direction: ltr;
  text-align: left;
  line-height: 1.7;
}

.ayah-translation {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo-secondary);
  line-height: 1.7;
  margin-top: 10px;
}

.ayah-insight {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--vellum);
  line-height: 1.7;
}

/* --- Bottom Navigation --- */
.bottom-nav {
  border-top: 0.5px solid rgba(38,61,84,0.8);
  display: flex;
  justify-content: space-around;
  padding: 16px 0 20px;
  background: var(--indigo-ground);
  flex-shrink: 0;
}

.nav-item {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--indigo-muted);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: none;
  border: none;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

.nav-item.active {
  color: var(--vellum);
}

/* --- Tab Content --- */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===================================
   REVES TAB
   =================================== */
.reves-tab {
  padding: 32px var(--padding-page);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.reves-header {
  margin-bottom: 24px;
}

.reves-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.reves-subtitle {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--indigo-secondary);
  line-height: 1.6;
}

.dream-input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.dream-input {
  width: 100%;
  min-height: 120px;
  background: transparent;
  border: 1px solid var(--indigo-structure);
  color: var(--vellum);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  padding: 16px;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
}

.dream-input::placeholder {
  color: var(--indigo-muted);
  font-style: italic;
}

.dream-input:focus {
  border-color: var(--indigo-muted);
}

.dream-submit {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 14px 24px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 32px;
}

.dream-submit span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dream-response {
  display: none;
}

.dream-response.visible {
  display: block;
}

.dream-response-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--vellum);
  line-height: 1.85;
  margin-bottom: 24px;
}

.dream-followups {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dream-followup {
  border: 1px solid var(--indigo-structure);
  background: transparent;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.dream-followup span {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  color: var(--indigo-secondary);
}

/* ===================================
   GHAZALI TAB
   =================================== */
.ghazali-tab {
  padding: 32px var(--padding-page);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.ghazali-title {
  font-family: var(--font-arabic);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}

.ghazali-latin {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ghazali-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--indigo-secondary);
  line-height: 1.85;
  margin-bottom: 8px;
}

.ghazali-time {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--indigo-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.ghazali-lock {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo-muted);
  margin-bottom: 20px;
}

.btn-subscribe {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold);
  background: var(--gold-active-bg);
  padding: 14px 24px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-subscribe span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===================================
   PROFIL TAB
   =================================== */
.profil-tab {
  padding: 32px var(--padding-page);
}

.profil-name-ar {
  font-family: var(--font-arabic);
  font-size: clamp(28px, 9vw, 36px);
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.profil-name-latin {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.profil-section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--indigo-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--gap-label);
}

.profil-hijri {
  margin-bottom: 28px;
}

.profil-hijri-ar {
  font-family: var(--font-arabic);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 4px;
}

.profil-hijri-latin {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--indigo-muted);
  letter-spacing: 1.8px;
}

.profil-hijri-note {
  max-width: 300px;
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--indigo-secondary);
}

.profil-settings {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profil-setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(38,61,84,0.8);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.profil-setting-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--vellum);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.profil-setting-arrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--indigo-muted);
}

.profil-setting[hidden] {
  display: none;
}

/* ===================================
   ONBOARDING
   =================================== */
.onboarding-shell {
  position: relative;
  z-index: 2;
  max-width: 393px;
  margin: 0 auto;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

.onboarding-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 40px 24px;
  padding-top: calc(40px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  position: relative;
}

.onboarding-content::-webkit-scrollbar {
  display: none;
}

.onboarding-screen {
  display: none;
  flex-direction: column;
  min-height: calc(100dvh - 80px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
}

.onboarding-screen.active {
  display: flex;
}

/* Standalone (homescreen) vs browser: adjust for Safari chrome */
@media (display-mode: standalone) {
  .onboarding-screen {
    min-height: calc(100dvh - 80px);
  }
}

/* safe-area for notch devices */
@supports (padding: env(safe-area-inset-bottom)) {
  .onboarding-content {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
  .bottom-nav {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

/* Shared onboarding elements */
.ob-gold-intro {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.7;
  margin-bottom: 24px;
}

.ob-question {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--vellum);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ob-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--indigo-muted);
  color: var(--vellum);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.ob-input::placeholder {
  color: var(--indigo-muted);
}

.ob-input:focus {
  border-color: var(--gold);
}

.ob-input-label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 20px;
}

.ob-privacy {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--indigo-muted);
  margin-top: 16px;
}

.ob-name-meaning {
  position: relative;
  display: none;
  overflow: hidden;
  margin-top: 28px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(232, 198, 93, 0.28);
  background:
    linear-gradient(135deg, rgba(232, 198, 93, 0.09), rgba(237, 229, 212, 0.03)),
    rgba(20, 36, 54, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(3, 10, 18, 0.28);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.ob-name-meaning.visible {
  display: block;
  animation: nameMeaningBloom 900ms cubic-bezier(0.17, 0.84, 0.24, 1) both;
}

.ob-name-meaning.error {
  border-color: rgba(211, 169, 93, 0.24);
  background:
    linear-gradient(135deg, rgba(211, 169, 93, 0.08), rgba(237, 229, 212, 0.025)),
    rgba(20, 36, 54, 0.56);
}

.ob-name-meaning::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(237, 208, 122, 0.28) 42%, transparent 72%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.ob-name-meaning.visible::before {
  animation: nameMeaningSweep 1300ms ease-out 180ms both;
}

.ob-name-meaning::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 198, 93, 0.75), transparent);
  opacity: 0.75;
}

.ob-name-meaning-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-arabic);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 10px;
}

.ob-name-meaning-text {
  position: relative;
  z-index: 1;
  min-height: 88px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--vellum);
  line-height: 1.7;
}

.ob-name-meaning.visible:not(.loading) .ob-name-meaning-text {
  animation: nameTextReveal 850ms ease-out 280ms both;
}

.ob-name-meaning.loading .ob-name-meaning-text::before,
.ob-name-meaning.loading .ob-name-meaning-text::after {
  content: '';
  display: block;
  height: 10px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(106, 140, 168, 0.18), rgba(232, 198, 93, 0.28), rgba(106, 140, 168, 0.18));
  background-size: 200% 100%;
  animation: nameMeaningLoading 1200ms ease-in-out infinite;
}

.ob-name-meaning.loading .ob-name-meaning-text::before {
  width: 92%;
}

.ob-name-meaning.loading .ob-name-meaning-text::after {
  width: 68%;
}

.btn-continue:disabled,
.btn-primary:disabled {
  opacity: 0.62;
  cursor: wait;
}

@keyframes nameMeaningBloom {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(4px);
  }
  58% {
    opacity: 1;
    transform: translateY(-2px) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes nameMeaningSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes nameTextReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
    text-shadow: 0 0 18px rgba(232, 198, 93, 0.6);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(232, 198, 93, 0);
  }
}

@keyframes nameMeaningLoading {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}

.ob-tagline {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--indigo-secondary);
  line-height: 1.85;
  text-align: center;
}

/* Continue button */
.btn-continue {
  width: 100%;
  padding: 18px;
  background: var(--vellum);
  border: none;
  cursor: pointer;
  margin-top: auto;
  -webkit-tap-highlight-color: transparent;
}

.btn-continue span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--indigo-ground);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-primary {
  width: 100%;
  padding: 18px;
  background: var(--vellum);
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--indigo-ground);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-ghost {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  -webkit-tap-highlight-color: transparent;
}

.btn-ghost span {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--indigo-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-google {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--vellum);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 12px;
}

.btn-google span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--vellum);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-email {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--indigo-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 20px;
}

.btn-email span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--indigo-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* [Removed: pills, nafs cards, loading, reveal, date picker, hijri reveal] */

/* Notification mocks (screen 4) */
.ob-notif-icon {
  font-family: var(--font-arabic);
  font-size: 12px;
  color: var(--gold);
  margin-right: 6px;
}

/* Platform selection */
/* Platform selection */
.ob-platform-row {
  display: flex;
  gap: 10px;
  margin: 20px 0 0;
}

.ob-platform-btn {
  padding: 16px 12px;
  background: transparent;
  border: 1px solid var(--indigo-muted);
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ob-platform-btn:active { transform: scale(0.98); }

.ob-platform-btn .ob-platform-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--indigo-secondary);
  text-transform: uppercase;
}

.ob-platform-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: var(--indigo-secondary);
}

.ob-platform-btn.selected {
  border-color: var(--gold);
  background: var(--gold-active-bg);
}

.ob-platform-btn.selected .ob-platform-label {
  color: var(--gold);
}

.ob-platform-btn.selected .ob-platform-icon {
  fill: var(--gold);
}

#btn-android {
  width: 110px;
  flex-shrink: 0;
}

#btn-iphone {
  flex: 1;
}

/* iOS instructions — separate container below buttons */
.ob-iphone-expand {
  display: none;
  text-align: left;
  margin-top: 12px;
  border: 1px solid rgba(232, 198, 93, 0.15);
  padding: 16px;
  background: var(--gold-active-bg);
}

.ob-iphone-expand.active {
  display: block;
}

.ob-ios-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.ob-ios-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ob-ios-step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ob-ios-step-text {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--vellum-dim);
  line-height: 1.5;
}

.ob-ios-step-text svg {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}

.ob-ios-after-note {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Install flow states */
.ob-install-fallback,
.ob-ios-reminder {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo-secondary);
  text-align: center;
  margin: 12px 0;
}

.ob-flow-container {
  display: none;
  margin-top: 12px;
}

.ob-flow-container.active {
  display: block;
}

/* --- end of new screen 4 styles --- */

/* Loading screen */
.ob-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.ob-loading-ar {
  font-family: var(--font-arabic);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
}

.ob-loading-fr {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo-secondary);
  margin-bottom: 6px;
}

.ob-loading-ref {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--indigo-muted);
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.ob-loading-bar {
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: pulse-bar 1.5s ease-in-out infinite;
}

@keyframes pulse-bar {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Date picker — native scroll-snap cylindrical wheel */
.ob-date-picker {
  display: flex;
  justify-content: center;
  gap: 0;
  height: 232px;
  overflow: hidden;
  position: relative;
  margin: 22px 0;
  perspective: 820px;
  transform-style: preserve-3d;
  isolation: isolate;
}

/* Glass band for the selected row */
.ob-date-picker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  transform: translateY(-50%);
  height: 46px;
  background:
    linear-gradient(180deg, rgba(237, 229, 212, 0.10), rgba(237, 229, 212, 0.025)),
    radial-gradient(ellipse at center, rgba(200, 169, 106, 0.10), transparent 72%);
  border-top: 1px solid rgba(237, 229, 212, 0.16);
  border-bottom: 1px solid rgba(237, 229, 212, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(10, 18, 28, 0.24),
    0 12px 34px rgba(0, 0, 0, 0.16);
  pointer-events: none;
  z-index: 3;
}

/* Fade edges and cylindrical shading */
.ob-date-picker::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      var(--indigo-ground) 0%,
      rgba(26, 45, 66, 0.90) 10%,
      rgba(26, 45, 66, 0.18) 31%,
      transparent 44%,
      transparent 56%,
      rgba(26, 45, 66, 0.18) 69%,
      rgba(26, 45, 66, 0.90) 90%,
      var(--indigo-ground) 100%
    ),
    radial-gradient(ellipse at center, transparent 30%, rgba(8, 16, 26, 0.24) 100%);
  pointer-events: none;
  z-index: 4;
}

.ob-date-col {
  flex: 1;
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  transform-style: preserve-3d;
  perspective: 760px;
  z-index: 2;
}

.ob-date-col + .ob-date-col {
  border-left: 1px solid rgba(237, 229, 212, 0.045);
}

.ob-date-col::-webkit-scrollbar {
  display: none;
}

.ob-date-col-inner {
  display: block;
  transform-style: preserve-3d;
}

.ob-date-spacer {
  height: 96px;
  pointer-events: none;
}

.ob-date-item {
  --wheel-offset: 0;
  --wheel-opacity: 1;
  --wheel-scale: 1;
  --wheel-blur: 0px;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--indigo-muted);
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  scroll-snap-align: center;
  backface-visibility: hidden;
  transform-origin: center center -118px;
  transform:
    rotateX(calc(var(--wheel-offset) * -18deg))
    translateZ(8px)
    scale(var(--wheel-scale));
  opacity: var(--wheel-opacity);
  filter: blur(var(--wheel-blur));
  will-change: transform, opacity, filter;
  transition: color 0.18s ease, font-size 0.18s ease, letter-spacing 0.18s ease;
}

.ob-date-item.selected {
  font-size: 20px;
  color: var(--vellum);
  letter-spacing: 0.2px;
  text-shadow:
    0 0 16px rgba(237, 229, 212, 0.18),
    0 1px 0 rgba(0, 0, 0, 0.22);
}

@supports (-webkit-touch-callout: none) {
  .ob-date-item {
    transform:
      rotateX(calc(var(--wheel-offset) * -16deg))
      scale(var(--wheel-scale));
  }
}

/* Hijri reveal */
.ob-hijri-reveal {
  text-align: center;
}

.ob-hijri-label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--indigo-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ob-hijri-date {
  font-family: var(--font-arabic);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 8px;
}

.ob-hijri-latin {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--indigo-secondary);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.ob-hijri-note {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo-secondary);
  line-height: 1.7;
}


/* Notification mocks — iOS 26 Liquid Glass style */
.ob-notif-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 20px;
  isolation: isolate;
}

.ob-notif {
  position: relative;
  min-height: 78px;
  overflow: hidden;
  padding: 12px 14px 13px;
  background:
    linear-gradient(135deg, rgba(249, 252, 255, 0.32) 0%, rgba(218, 230, 244, 0.2) 44%, rgba(255, 255, 255, 0.11) 100%),
    rgba(36, 54, 76, 0.52);
  backdrop-filter: blur(34px) saturate(1.8) brightness(1.08);
  -webkit-backdrop-filter: blur(34px) saturate(1.8) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(13, 23, 34, 0.24),
    0 18px 42px rgba(4, 12, 22, 0.3);
}

.ob-notif::before,
.ob-notif::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.ob-notif::before {
  inset: 0;
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(255, 255, 255, 0.24) 0%, transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 44%);
  opacity: 0.62;
}

.ob-notif::after {
  inset: auto 10px 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  opacity: 0.45;
}

.ob-notif-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 5px;
}

.ob-notif-app-icon {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 1px 2px rgba(0, 0, 0, 0.25);
  margin-right: 9px;
  flex-shrink: 0;
}

.ob-notif-brand {
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0;
  text-transform: none;
  flex: 1;
}

.ob-notif-time {
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.56);
  margin-left: 8px;
  white-space: nowrap;
}

.ob-notif-text {
  position: relative;
  z-index: 1;
  font-family: -apple-system, 'SF Pro Text', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.28;
  letter-spacing: 0;
}

.ob-notif.dim {
  opacity: 0.72;
  background:
    linear-gradient(135deg, rgba(249, 252, 255, 0.24) 0%, rgba(218, 230, 244, 0.14) 44%, rgba(255, 255, 255, 0.08) 100%),
    rgba(31, 49, 70, 0.46);
  filter: saturate(0.88);
}

/* Trust line */
.ob-trust {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 400;
  color: var(--indigo-muted);
  line-height: 1.6;
  text-align: center;
  margin-top: 16px;
}

/* Welcome preview card */
.ob-preview-card {
  border: 1px solid var(--indigo-structure);
  padding: 20px;
  margin: 24px 0;
}

.ob-preview-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ob-preview-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ob-preview-item {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--vellum);
}

/* ===================================
   UTILITY
   =================================== */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.gap-20 { gap: 20px; }
