/* ─────────────────────────────────────────────────────────────
   OnlyPray — Sacred Dark Theme
   Fonts: Cinzel (display) · Crimson Pro (body)
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ─── Custom Properties ───────────────────────────────────── */
:root {
  --bg:        #07091a;
  --bg2:       #0c1025;
  --surface:   #111830;
  --surface2:  #182040;
  --surface3:  #1e2850;
  --gold:      #c8963e;
  --gold2:     #e8b84b;
  --gold3:     #f5cc6a;
  --cream:     #ede4cc;
  --cream2:    #c8b99a;
  --muted:     #6a7999;
  --border:    rgba(200, 150, 62, 0.18);
  --border2:   rgba(200, 150, 62, 0.38);
  --glow:      rgba(200, 150, 62, 0.1);
  --glow2:     rgba(200, 150, 62, 0.22);
  --danger:    #cc5252;
  --ff-d: 'Cinzel', Georgia, serif;
  --ff-b: 'Crimson Pro', Georgia, serif;
}

/* ─── Reset / Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ff-b);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--cream);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 12% 45%, rgba(20, 35, 100, 0.32) 0%, transparent 68%),
    radial-gradient(ellipse 55% 45% at 88% 8%,  rgba(120, 80, 8, 0.16)  0%, transparent 58%),
    radial-gradient(ellipse 40% 30% at 50% 95%, rgba(30, 20, 80, 0.25)  0%, transparent 60%);
}

a { color: var(--gold2); text-decoration: none; }
a:hover { color: var(--gold3); }

img, svg { display: block; }

/* ─── Keyframes ───────────────────────────────────────────── */
@keyframes fadeIn      { from { opacity: 0; }                              to { opacity: 1; } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-glow  {
  0%, 100% { box-shadow: 0 0 12px var(--glow); }
  50%       { box-shadow: 0 0 28px var(--glow2); }
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
.op-nav {
  background: rgba(7, 9, 26, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 0.8rem 0;
}

.op-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.op-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.op-brand:hover { text-decoration: none; }

.op-brand-emblem {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--surface2), var(--surface3));
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  font-size: 1rem;
  animation: pulse-glow 4s ease-in-out infinite;
  flex-shrink: 0;
}

.op-brand-copy { display: flex; flex-direction: column; gap: 0; }

.op-brand-name {
  font-family: var(--ff-d);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  line-height: 1.1;
  text-transform: uppercase;
}

.op-brand-slogan {
  font-family: var(--ff-b);
  font-size: 0.63rem;
  font-style: italic;
  color: var(--gold2);
  letter-spacing: 0.05em;
  line-height: 1;
}

.op-nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.op-nav-links li a,
.op-nav-btn-ghost {
  font-family: var(--ff-d);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream2);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.op-nav-links li a:hover,
.op-nav-btn-ghost:hover {
  color: var(--gold2);
  background: var(--glow);
  text-decoration: none;
}

.op-nav-btn-ghost {
  background: none;
  border: none;
  cursor: pointer;
}

.op-nav-user {
  font-family: var(--ff-b);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gold2);
  padding: 0.45rem 0.75rem;
}

/* Gold CTA button */
.op-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #1a0d00 !important;
  font-family: var(--ff-d);
  font-size: 0.68rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 2px 14px rgba(200, 150, 62, 0.32);
  text-decoration: none !important;
  display: inline-block;
}

.op-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold3) 100%);
  box-shadow: 0 4px 22px rgba(200, 150, 62, 0.5);
  color: #100800 !important;
  transform: translateY(-1px);
}

/* Outline button */
.op-btn-outline {
  background: none;
  border: 1.5px solid var(--border2);
  color: var(--cream2) !important;
  font-family: var(--ff-d);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none !important;
  display: inline-block;
}

.op-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold2) !important;
  background: var(--glow);
}

/* ─── PAGE CONTAINER ──────────────────────────────────────── */
.op-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem;
}

/* ─── HERO ────────────────────────────────────────────────── */
.op-hero {
  text-align: center;
  padding: 5rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.op-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(200, 150, 62, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.op-hero-badge {
  display: inline-block;
  font-family: var(--ff-d);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  background: rgba(200, 150, 62, 0.08);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 0.4rem 1.4rem;
  margin-bottom: 1.75rem;
  animation: fadeIn 0.5s ease both;
}

.op-hero h1 {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0 0 0.75rem;
  animation: fadeSlideUp 0.5s ease 0.1s both;
}

.op-hero h1 span {
  display: block;
  color: var(--gold2);
  font-weight: 400;
  font-style: italic;
  font-family: var(--ff-b);
  font-size: 0.85em;
  letter-spacing: 0.02em;
}

.op-hero-lead {
  font-size: 1.2rem;
  color: var(--cream2);
  max-width: 480px;
  margin: 0 auto 2.25rem;
  font-style: italic;
  line-height: 1.7;
  animation: fadeSlideUp 0.5s ease 0.2s both;
}

.op-hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.5s ease 0.3s both;
}

.op-hero-actions .op-btn-gold {
  font-size: 0.78rem !important;
  padding: 0.7rem 2rem;
}

.op-hero-actions .op-btn-outline {
  padding: 0.7rem 2rem;
}

.op-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 440px;
  margin: 3rem auto;
  color: var(--muted);
  font-family: var(--ff-d);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.op-rule::before, .op-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ─── TWO-COLUMN FEED LAYOUT ─────────────────────────────── */
.op-grid {
  display: grid;
  grid-template-columns: 1fr 304px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 920px) {
  .op-grid { grid-template-columns: 1fr; }
  .op-sidebar { display: none; }
}

/* ─── SECTION LABEL ───────────────────────────────────────── */
.op-label-section {
  font-family: var(--ff-d);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.op-label-section::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── PRAYER COMPOSER ─────────────────────────────────────── */
.op-composer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.op-composer-heading {
  font-family: var(--ff-d);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin: 0 0 1rem;
}

.op-textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--ff-b);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  padding: 0.875rem 1.1rem;
  resize: vertical;
  min-height: 88px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.op-textarea::placeholder { color: var(--muted); font-style: italic; }

.op-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--glow);
}

.op-composer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.875rem;
}

.op-composer-hint {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ─── PRAYER CARDS ────────────────────────────────────────── */
.op-prayer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  animation: fadeSlideUp 0.4s ease both;
}

.op-prayer:hover {
  border-color: var(--border2);
  box-shadow: 0 6px 36px rgba(200, 150, 62, 0.08);
}

.op-prayer:nth-child(1) { animation-delay: 0.0s; }
.op-prayer:nth-child(2) { animation-delay: 0.07s; }
.op-prayer:nth-child(3) { animation-delay: 0.14s; }
.op-prayer:nth-child(4) { animation-delay: 0.21s; }
.op-prayer:nth-child(5) { animation-delay: 0.28s; }

.op-prayer-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.op-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--surface2), var(--surface3));
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold2);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.op-prayer-by {
  font-family: var(--ff-d);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
}

.op-prayer-when {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.2;
}

.op-prayer-body {
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.82;
  font-style: italic;
  margin: 0;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(200, 150, 62, 0.28);
}

.op-prayer-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
}

.op-amen-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--cream2);
  font-family: var(--ff-d);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.op-amen-btn:hover {
  border-color: var(--gold);
  color: var(--gold2);
  background: var(--glow);
}

.op-amen-btn.is-active {
  border-color: var(--gold);
  color: var(--gold2);
  background: linear-gradient(135deg, rgba(200, 150, 62, 0.14), rgba(200, 150, 62, 0.06));
}

.op-amen-tally {
  font-size: 0.82rem;
  color: var(--muted);
  margin-left: auto;
  font-style: italic;
}

/* ─── SIDEBAR ─────────────────────────────────────────────── */
.op-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.op-widget-title {
  font-family: var(--ff-d);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin: 0 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.op-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.38rem 0;
  font-size: 0.92rem;
  color: var(--cream2);
  border-bottom: 1px solid rgba(200, 150, 62, 0.07);
}

.op-stat:last-child { border-bottom: none; }

.op-stat-n {
  font-family: var(--ff-d);
  font-size: 1.05rem;
  color: var(--gold2);
  font-weight: 600;
}

.op-verse {
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0 0 0.75rem;
}

.op-verse-ref {
  font-family: var(--ff-d);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--gold2);
  margin: 0;
}

.op-trending-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200, 150, 62, 0.07);
  cursor: pointer;
  transition: color 0.2s;
}

.op-trending-item:last-child { border-bottom: none; }
.op-trending-item:hover .op-trending-text { color: var(--cream); }

.op-trending-text {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream2);
  line-height: 1.5;
  transition: color 0.2s;
}

.op-trending-meta {
  font-family: var(--ff-d);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ─── AUTH PAGES ──────────────────────────────────────────── */
.op-auth-wrap {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
}

.op-auth-panel {
  width: 100%;
  max-width: 420px;
  animation: fadeSlideUp 0.4s ease both;
}

.op-auth-emblem {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, var(--surface2), var(--surface3));
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 28px var(--glow2);
  animation: pulse-glow 4s ease-in-out infinite;
}

.op-auth-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.op-auth-title {
  font-family: var(--ff-d);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin: 0 0 0.35rem;
}

.op-auth-sub {
  font-size: 0.95rem;
  color: var(--cream2);
  font-style: italic;
  margin: 0;
}

.op-form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.45);
}

.op-field { margin-bottom: 1.25rem; }

.op-field-label {
  display: block;
  font-family: var(--ff-d);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream2);
  margin-bottom: 0.45rem;
}

.op-field-input {
  display: block;
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--ff-b);
  font-size: 1rem;
  padding: 0.78rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.op-field-input::placeholder { color: var(--muted); }

.op-field-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--glow);
}

.op-field-input:-webkit-autofill,
.op-field-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--surface2) inset !important;
  -webkit-text-fill-color: var(--cream) !important;
  caret-color: var(--cream);
}

.op-check-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.op-check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.op-check-row label {
  font-size: 0.92rem;
  color: var(--cream2);
  cursor: pointer;
}

.op-submit-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #120900;
  font-family: var(--ff-d);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 4px 22px rgba(200, 150, 62, 0.28);
  margin-top: 0.5rem;
}

.op-submit-btn:hover {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold3) 100%);
  box-shadow: 0 6px 30px rgba(200, 150, 62, 0.45);
  transform: translateY(-1px);
}

.op-auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--cream2);
}

/* ─── VALIDATION ──────────────────────────────────────────── */
.validation-summary-valid { display: none; }

.validation-summary-errors {
  background: rgba(204, 82, 82, 0.1);
  border: 1px solid rgba(204, 82, 82, 0.28);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #e89090;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.validation-summary-errors ul {
  margin: 0;
  padding-left: 1.2rem;
}

.field-validation-error {
  color: #e08080;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: block;
}

.input-validation-error {
  border-color: rgba(204, 82, 82, 0.55) !important;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.op-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.op-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.op-footer-inner a { color: var(--gold); }
.op-footer-inner a:hover { color: var(--gold2); }
.op-footer-brand { font-style: italic; }

@media (max-width: 600px) {
  .op-footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .op-nav-links .op-nav-user { display: none; }
}

/* ─── HAMBURGER BUTTON ────────────────────────────────────── */
.op-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--cream);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.op-nav-toggle:hover {
  border-color: var(--gold);
  background: var(--glow);
}

.op-hamburger {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}

.op-hamburger::before,
.op-hamburger::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.25s, top 0.25s, opacity 0.2s;
}

.op-hamburger::before { top: -6px; }
.op-hamburger::after  { top: 6px; }

/* X state */
.op-nav-toggle.is-open .op-hamburger { background: transparent; }
.op-nav-toggle.is-open .op-hamburger::before { top: 0; transform: rotate(45deg); }
.op-nav-toggle.is-open .op-hamburger::after  { top: 0; transform: rotate(-45deg); }

/* ─── MOBILE NAVBAR ───────────────────────────────────────── */
@media (max-width: 768px) {
  .op-nav-inner { position: relative; }
  .op-nav-toggle { display: flex; }

  .op-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    background: rgba(7, 9, 26, 0.97);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid var(--border);
    border-radius: 10px;
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 300;
  }

  .op-nav-links.is-open { display: flex; }

  .op-nav-links li { width: 100%; }

  .op-nav-links li a,
  .op-nav-btn-ghost {
    display: flex;
    align-items: center;
    min-height: 44px;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-size: 0.78rem;
  }

  .op-nav-links .op-nav-user {
    display: flex !important;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border-radius: 6px;
  }

  .op-nav-links li a.op-btn-gold {
    justify-content: center;
    margin-top: 0.25rem;
    padding: 0.7rem 1rem;
  }

  .op-nav-btn-ghost { text-align: left; }
}

/* ─── MOBILE SIDEBAR WIDGETS ──────────────────────────────── */
.op-mobile-sidebar { display: none; }

@media (max-width: 920px) {
  .op-mobile-sidebar {
    display: block;
    margin-bottom: 1.5rem;
  }
}

.op-mobile-stats {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.op-mobile-stat {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  color: var(--cream2);
  text-align: center;
}

.op-mobile-stat .op-stat-n {
  font-family: var(--ff-d);
  font-size: 1.1rem;
  color: var(--gold2);
  font-weight: 600;
}

.op-mobile-verse {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  padding: 0.875rem 1.1rem;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gold2);
  font-size: 0.85rem;
}

.op-mobile-verse blockquote {
  margin: 0;
  font-style: italic;
  color: var(--cream2);
  line-height: 1.6;
  font-size: 0.92rem;
}

.op-mobile-verse cite {
  display: block;
  font-family: var(--ff-d);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--gold2);
  margin-top: 0.3rem;
  font-style: normal;
}

/* ─── SMALL PHONE REFINEMENTS ─────────────────────────────── */
@media (max-width: 480px) {
  .op-wrap { padding: 1.5rem 1rem; }

  .op-hero { padding: 2.5rem 1rem 2rem; }

  .op-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .op-hero-actions .op-btn-gold,
  .op-hero-actions .op-btn-outline {
    text-align: center;
    justify-content: center;
  }

  .op-prayer { padding: 1.1rem; }

  .op-composer { padding: 1rem; }

  .op-form-box { padding: 1.75rem 1.25rem; }

  .op-prayer-body { padding-left: 0.875rem; }

  .op-mobile-stats { gap: 0.5rem; }
}
