/* ===== PAYAME ARAMESH - ONE PAGE DESIGN ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --navy: #0D1B3E;
  --navy-mid: #162347;
  --navy-light: #1E3060;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --text-light: #D4C9A8;
  --red-accent: #C0392B;
  --font-farsi: 'Vazirmatn', 'Tahoma', Arial, sans-serif;
  --font-latin: 'Cinzel', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-farsi);
  background: var(--navy);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#pa-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

#pa-nav.scrolled {
  height: 60px;
  background: rgba(13, 27, 62, 0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-farsi);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-latin);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  direction: rtl;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.nav-donate-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 25px !important;
  padding: 0.5rem 1.25rem !important;
}

.nav-donate-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(13,27,62,0.85) 0%, rgba(13,27,62,0.6) 50%, rgba(13,27,62,0.85) 100%),
              url('https://images.unsplash.com/photo-1533000759938-aa0ba70beceb?w=1920&q=80') center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 80px 2rem 2rem;
}

.hero-logo {
  width: clamp(260px, 24vw, 360px);
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.5));
  animation: fadeInDown 1s ease;
}

.hero-title-fa {
  font-family: var(--font-farsi);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease 0.2s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title-en {
  font-family: var(--font-latin);
  font-size: clamp(0.85rem, 2vw, 1.25rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2.5rem;
  animation: fadeIn 1s ease 0.8s both;
}

.hero-verse {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease 1s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 1.2s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-farsi);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-farsi);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  border: 2px solid rgba(201,168,76,0.6);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  margin: -12px auto 0;
}

/* ===== SECTION BASE ===== */
.pa-section {
  padding: 5rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-family: var(--font-latin);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title .gold { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
#about {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold);
  border-radius: 16px;
  opacity: 0.3;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  background: var(--gold);
  border-radius: 16px;
  opacity: 0.05;
  z-index: -1;
}

.about-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  text-align: center;
  min-width: 100px;
}

.about-badge strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

.about-content {}

.about-quote {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-light);
  line-height: 2;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(201,168,76,0.08);
  border-right: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}

.founder-name {
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
}

.founder-title {
  color: var(--gold);
  font-size: 0.875rem;
  margin-top: 0.2rem;
}

/* ===== LIVE TV SECTION ===== */
#livetv {
  background: linear-gradient(180deg, var(--navy-mid) 0%, #0A1428 100%);
}

.livetv-container {
  max-width: 1100px;
  margin: 0 auto;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.video-player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(201,168,76,0.2);
}

.video-player-wrap iframe,
.video-player-wrap video,
.pa-live-player {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.satellite-info {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.satellite-card {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.satellite-card .sat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.satellite-card h4 {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-latin);
  letter-spacing: 1px;
}

.satellite-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== VIDEOS SECTION ===== */
#videos {
  background: var(--navy);
}

.videos-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--navy-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-color: rgba(201,168,76,0.4);
}

.video-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.video-thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-info {
  padding: 1rem 1.25rem;
}

.video-info h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== BIBLE SECTION ===== */
#bible {
  background: linear-gradient(180deg, #0A1428 0%, var(--navy-mid) 100%);
}

.bible-container {
  max-width: 900px;
  margin: 0 auto;
}

.bible-card {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bible-card::before {
  content: '✝';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 8rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
}

.bible-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.bible-title-fa {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.bible-title-en {
  font-family: var(--font-latin);
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.bible-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.bible-books {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.bible-book-tag {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}

.bible-book-tag:hover {
  background: rgba(201,168,76,0.25);
  transform: translateY(-2px);
}

.bible-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-farsi);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.bible-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.6);
}

/* ===== DONATE SECTION ===== */
#donate {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}

.donate-container {
  max-width: 1100px;
  margin: 0 auto;
}

.donate-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.donate-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.9;
}

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

.donate-card {
  background: rgba(13,27,62,0.8);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.donate-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.donate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.donate-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.donation-brand-logo {
  width: fit-content;
  min-width: 112px;
  margin: 0 auto 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
  line-height: 1;
  text-align: center;
}

.paypal-logo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.paypal-logo span:first-child {
  color: #003087;
}

.paypal-logo span:last-child {
  color: #009cde;
}

.zelle-logo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #6d1ed4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.donate-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: var(--font-latin);
}

.donate-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.donate-card .qr-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 1rem;
  display: block;
  border: 2px solid rgba(201,168,76,0.3);
}

.donate-paypal-btn {
  display: inline-block;
  background: #003087;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.donate-paypal-btn:hover {
  background: #002060;
  transform: translateY(-2px);
}

.donate-address {
  margin-top: 2.5rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
}

.donate-address h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-latin);
  letter-spacing: 1px;
}

.donate-address p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== CONTACT / FOOTER ===== */
#contact {
  background: linear-gradient(180deg, var(--navy) 0%, #050D1F 100%);
  padding-bottom: 0;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info .contact-subtitle {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-family: var(--font-latin);
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text h5 {
  color: var(--gold);
  font-size: 0.8rem;
  font-family: var(--font-latin);
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-item-text p, .contact-item-text a {
  color: var(--text-light);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-text a:hover {
  color: var(--gold);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-form .contact-subtitle {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-family: var(--font-latin);
  letter-spacing: 1px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: var(--font-farsi);
  font-size: 0.95rem;
  direction: rtl;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(212,201,168,0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--font-farsi);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

/* ===== FOOTER BAR ===== */
.pa-footer {
  background: #050D1F;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 1.5rem 2rem;
  text-align: center;
}

.pa-footer p {
  color: rgba(212,201,168,0.5);
  font-size: 0.85rem;
}

.pa-footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  #pa-nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    background: rgba(13,27,62,0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    gap: 0.25rem;
  }
  .nav-hamburger { display: flex; }
  .pa-section { padding: 3.5rem 1.25rem; }
  .bible-card { padding: 2rem 1.25rem; }
  .donate-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
}

.pa-live-stream-wrap {
  max-height: min(70vh, 620px);
}

.pa-live-fallback {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  max-width: min(90%, 420px);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(3, 10, 24, 0.72);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}

.pa-live-fallback p {
  margin: 0 0 0.35rem;
}

.pa-live-fallback a {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 700px) {
  .pa-live-stream-wrap {
    max-height: none;
  }

  .pa-live-fallback {
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.72rem;
  }
}