    <style>
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --bg: #ffffff;
        --bg-card: #fafafa;
        --border: #e5e5e5;
        --border-light: #eeeeee;
        --brand: #7a1e3f;
        --brand-light: #9e2a4e;
        --metallic-burgundy: linear-gradient(
          135deg,
          #3d0e1e 0%,
          #7a1e3f 25%,
          #9e2a4e 40%,
          #c4365e 50%,
          #9e2a4e 60%,
          #7a1e3f 75%,
          #4a1228 100%
        );
        --shiny-gold: linear-gradient(
          135deg,
          #8b6914 0%,
          #c8a84e 25%,
          #e8cc6a 45%,
          #f5e08a 55%,
          #e8cc6a 65%,
          #c8a84e 80%,
          #8b6914 100%
        );
        --gold-text-gradient: linear-gradient(
          135deg,
          #8b6914 0%,
          #c8a84e 20%,
          #f5e08a 45%,
          #e8cc6a 55%,
          #c8a84e 80%,
          #8b6914 100%
        );
        --gold: #c8a84e;
        --text: #1a1a1a;
        --text-secondary: #585858;
        --text-muted: #5b626f;
        --surface-glass: rgba(255, 255, 255, 0.78);
        --surface-line: rgba(122, 30, 63, 0.14);
        --shadow-premium: 0 18px 50px rgba(61, 14, 30, 0.12);
      }

      html {
        scroll-behavior: smooth;
        scroll-padding-top: 96px;
      }

      body {
        font-family:
          "Inter",
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          Roboto,
          sans-serif;
        color: #4a4a4a;
        font-size: 17px;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: clip;
        background:
          radial-gradient(
            circle at 85% 6%,
            rgba(122, 30, 63, 0.07),
            transparent 30%
          ),
          radial-gradient(
            circle at 8% 26%,
            rgba(200, 168, 78, 0.1),
            transparent 30%
          ),
          linear-gradient(180deg, #ffffff 0%, #fbf8f9 55%, #ffffff 100%);
        background-attachment: fixed;
      }

      /* Faint Islamic diamond lattice behind everything */
      .page-pattern {
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        opacity: 0.6;
        background:
          repeating-linear-gradient(
            45deg,
            rgba(122, 30, 63, 0.028) 0 1px,
            transparent 1px 46px
          ),
          repeating-linear-gradient(
            -45deg,
            rgba(122, 30, 63, 0.028) 0 1px,
            transparent 1px 46px
          );
      }

      a {
        color: var(--brand);
      }
      a:hover {
        text-decoration: underline;
      }

      /* ────────── Nav (matches main site) ────────── */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        padding: 14px 50px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background:
          linear-gradient(
            135deg,
            rgba(61, 14, 30, 0.96),
            rgba(122, 30, 63, 0.95)
          ),
          var(--metallic-burgundy);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 2px 10px rgba(122, 30, 63, 0.18);
        transition:
          border-color 0.3s,
          box-shadow 0.3s;
      }
      .nav.scrolled {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 4px 16px rgba(122, 30, 63, 0.3);
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #ffffff;
      }
      .nav-logo:hover {
        text-decoration: none;
      }
      .nav-logo-img {
        height: 48px;
        width: auto;
        display: block;
      }
      .nav-logo-text {
        font-size: 28px;
        font-weight: 900;
        letter-spacing: 0.1em;
        background: var(--gold-text-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .nav-cta {
        padding: 10px 24px;
        border-radius: 50px;
        background: var(--shiny-gold);
        color: var(--brand);
        font-family: inherit;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.02em;
        cursor: pointer;
        text-decoration: none;
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }
      .nav-cta:hover {
        transform: scale(1.03);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
        text-decoration: none;
      }

      /* ────────── Article container ────────── */
      .article-wrap {
        max-width: 820px;
        margin: 0 auto;
        padding: 128px 22px 88px;
        display: flex;
        flex-direction: column;
        gap: 40px;
      }

      /* Reusable gold eyebrow */
      .eyebrow {
        display: block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        background: var(--gold-text-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 12px;
      }

      /* ────────── Typography ────────── */
      h1 {
        font-size: clamp(33px, 5vw, 50px);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -0.025em;
        color: var(--text);
        margin-bottom: 22px;
      }

      .article-wrap h2 {
        font-size: clamp(26px, 4vw, 36px);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.02em;
        color: var(--text);
        margin-bottom: 22px;
        position: relative;
      }
      .article-wrap h2::before {
        content: "";
        display: block;
        width: 48px;
        height: 3px;
        background: var(--shiny-gold);
        border-radius: 2px;
        margin-bottom: 16px;
      }

      .article-wrap h3 {
        font-size: clamp(20px, 3vw, 25px);
        font-weight: 700;
        line-height: 1.3;
        color: var(--text);
        margin-bottom: 12px;
        margin-top: 24px;
        letter-spacing: -0.01em;
      }
      .article-wrap h3:first-child {
        margin-top: 0;
      }

      .article-wrap p {
        margin-bottom: 16px;
      }
      .article-wrap p:last-child {
        margin-bottom: 0;
      }

      .article-wrap section {
        display: block;
      }
      .article-wrap section > * + * {
        margin-top: 12px;
      }

      /* ────────── Article header / lede / source pill ────────── */
      .article-header {
        display: flex;
        flex-direction: column;
      }
      .article-header .lede {
        font-size: 18px;
        line-height: 1.65;
        color: var(--text);
        margin-bottom: 18px;
      }
      .article-header .lede:last-of-type {
        margin-bottom: 24px;
      }

      .source-pill {
        display: inline-block;
        background: rgba(122, 30, 63, 0.06);
        border-left: 3px solid var(--gold);
        padding: 12px 18px;
        font-size: 14px;
        font-style: italic;
        color: #4a4a4a;
        border-radius: 0 8px 8px 0;
        align-self: flex-start;
      }

      /* ────────── Table of contents ────────── */
      .toc {
        background: var(--surface-glass);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid var(--surface-line);
        border-radius: 16px;
        padding: 26px 30px;
        box-shadow: var(--shadow-premium);
      }
      .toc ol {
        padding-left: 0;
        counter-reset: toc;
        list-style: none;
      }
      .toc li {
        counter-increment: toc;
        padding: 7px 0;
        font-size: 16px;
        line-height: 1.5;
        display: flex;
        align-items: baseline;
        gap: 12px;
      }
      .toc li::before {
        content: counter(toc, decimal-leading-zero);
        flex-shrink: 0;
        min-width: 30px;
        font-weight: 800;
        font-size: 14px;
        background: var(--gold-text-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .toc a {
        color: var(--text);
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid transparent;
        transition:
          color 0.2s,
          border-color 0.2s;
      }
      .toc a:hover {
        color: var(--brand);
        border-color: var(--brand);
        text-decoration: none;
      }

      /* Every piece of Arabic text (including small inline phrases inside
         English sentences) uses a proper Arabic typeface, never Inter. */
      :lang(ar),
      [lang="ar"] {
        font-family: "Amiri", "Scheherazade New", "Traditional Arabic", serif;
      }

      /* ────────── Arabic dua block ────────── */
      .arabic-dua {
        position: relative;
        font-family: "Amiri", "Scheherazade New", "Traditional Arabic", serif;
        font-size: clamp(24px, 3.5vw, 34px);
        direction: rtl;
        text-align: right;
        line-height: 2.4;
        color: var(--text);
        background: linear-gradient(180deg, #fffdfb 0%, #fbf3ee 100%);
        border: 1px solid var(--surface-line);
        border-radius: 16px;
        padding: 34px 30px;
        overflow: hidden;
        box-shadow: var(--shadow-premium);
      }
      .arabic-dua::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--shiny-gold);
      }

      .emphasis-note {
        font-size: 15px;
        font-style: italic;
        color: #4a4a4a;
        padding: 0 4px;
      }

      /* ────────── Urdu dua block ────────── */
      .urdu-dua {
        font-family: "Scheherazade New", "Amiri", "Traditional Arabic", serif;
        font-size: clamp(19px, 2.5vw, 24px);
        direction: rtl;
        text-align: justify;
        line-height: 2.2;
        color: var(--text);
        background: #ffffff;
        border: 1px solid var(--surface-line);
        border-radius: 16px;
        padding: 28px 26px;
        box-shadow: 0 8px 26px rgba(61, 14, 30, 0.06);
      }
      .urdu-dua p + p {
        margin-top: 16px;
      }

      /* ────────── English translation blockquote ────────── */
      .translation {
        background: #ffffff;
        border: 1px solid var(--surface-line);
        border-left: 4px solid var(--brand);
        border-radius: 0 16px 16px 0;
        padding: 26px 30px;
        font-size: 18px;
        line-height: 1.7;
        color: var(--text);
        box-shadow: 0 8px 26px rgba(61, 14, 30, 0.06);
      }
      .translation p + p {
        margin-top: 16px;
      }

      /* ────────── Roman English transliteration ────────── */
      .transliteration {
        background: #ffffff;
        border: 1px solid var(--surface-line);
        border-left: 4px solid var(--gold);
        border-radius: 0 16px 16px 0;
        padding: 26px 30px;
        font-size: 17px;
        font-style: italic;
        line-height: 1.7;
        color: #4a4a4a;
        box-shadow: 0 8px 26px rgba(61, 14, 30, 0.06);
      }
      .transliteration p + p {
        margin-top: 16px;
      }

      /* ────────── Step cards (numbered) ────────── */
      .steps {
        counter-reset: step;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 16px;
      }
      .step {
        counter-increment: step;
        position: relative;
        background: var(--surface-glass);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        border: 1px solid var(--surface-line);
        border-radius: 14px;
        padding: 24px 26px 24px 84px;
        box-shadow: 0 8px 26px rgba(61, 14, 30, 0.06);
      }
      .step::before {
        content: counter(step);
        position: absolute;
        top: 22px;
        left: 24px;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: var(--metallic-burgundy);
        border: 1px solid rgba(200, 168, 78, 0.5);
        color: var(--gold);
        font-size: 18px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(122, 30, 63, 0.25);
      }
      .step h3 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 20px;
      }
      .step p {
        font-size: 16.5px;
        color: #4a4a4a;
      }
      .step p + p {
        margin-top: 12px;
      }

      .important-note {
        position: relative;
        background: rgba(122, 30, 63, 0.05);
        border: 1px solid rgba(122, 30, 63, 0.18);
        border-radius: 14px;
        padding: 20px 24px;
        font-size: 16.5px;
        color: var(--text);
      }
      .important-note strong {
        font-weight: 700;
        color: var(--brand);
      }

      .when-to-pray-heading {
        margin-top: 28px;
      }

      /* ────────── FAQ cards ────────── */
      .faq {
        position: relative;
        background: #ffffff;
        border: 1px solid var(--surface-line);
        border-radius: 14px;
        padding: 22px 26px 22px 62px;
        margin-top: 16px;
        box-shadow: 0 8px 26px rgba(61, 14, 30, 0.05);
      }
      .faq::before {
        content: "Q";
        position: absolute;
        top: 22px;
        left: 22px;
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: rgba(122, 30, 63, 0.08);
        border: 1px solid rgba(200, 168, 78, 0.4);
        color: var(--brand);
        font-size: 14px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .faq h3 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 20px;
      }
      .faq p {
        font-size: 16.5px;
        color: #4a4a4a;
      }

      /* ────────── Misaq CTA cards ────────── */
      .misaq-cta {
        position: relative;
        overflow: hidden;
        background: var(--metallic-burgundy);
        border: 1px solid rgba(200, 168, 78, 0.42);
        border-radius: 18px;
        padding: 28px 30px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        box-shadow: var(--shadow-premium);
      }
      .misaq-cta::after {
        content: "";
        position: absolute;
        top: -40%;
        left: -30%;
        width: 160%;
        height: 180%;
        background: linear-gradient(
          115deg,
          transparent 44%,
          rgba(245, 224, 138, 0.12) 50%,
          transparent 56%
        );
        pointer-events: none;
      }
      .cta-eyebrow {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        background: var(--gold-text-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .cta-eyebrow img {
        height: 22px;
        width: auto;
      }
      .misaq-cta p {
        position: relative;
        z-index: 1;
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.92);
        margin: 0;
      }
      .cta-btn {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 13px 26px;
        border-radius: 50px;
        background: var(--shiny-gold);
        color: var(--brand);
        font-family: inherit;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-decoration: none;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
      }
      .cta-btn:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
        color: var(--brand);
        text-decoration: none;
      }

      /* ────────── Source final note ────────── */
      .source-final {
        font-size: 14px;
        font-style: italic;
        color: var(--text-secondary);
        text-align: center;
        padding-top: 8px;
        border-top: 1px solid var(--border);
      }
      .source-final a {
        color: var(--brand);
        font-style: normal;
        font-weight: 600;
      }

      /* ────────── Footer (matches main site) ────────── */
      .footer {
        position: relative;
        text-align: center;
        padding: 60px 24px;
        overflow: hidden;
        background: var(--metallic-burgundy);
      }
      .footer-border {
        max-width: 600px;
        margin: 0 auto 40px;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.35),
          transparent
        );
      }
      .footer-logo {
        font-family: "Scheherazade New", "Traditional Arabic", serif;
        font-size: 60px;
        background: var(--gold-text-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
        margin-bottom: 20px;
        -webkit-user-select: none;
        user-select: none;
        text-shadow: 0 2px 16px rgba(200, 168, 78, 0.35);
        line-height: 1;
      }
      .footer-quote {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.92);
        font-style: italic;
        max-width: 520px;
        margin: 0 auto 28px;
        line-height: 1.7;
      }
      .footer-links {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 12px;
      }
      .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-links a:hover {
        color: #ffffff;
        text-decoration: underline;
      }
      .footer-copy {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
      }

      /* ────────── Back-to-top (matches main site) ────────── */
      .to-top {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 9000;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--metallic-burgundy);
        color: #fff;
        border: 1px solid rgba(200, 168, 78, 0.5);
        font-size: 20px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition:
          opacity 0.25s ease,
          transform 0.25s ease,
          visibility 0.25s,
          box-shadow 0.2s ease;
        box-shadow: 0 6px 18px rgba(122, 30, 63, 0.35);
      }
      .to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .to-top:hover {
        box-shadow: 0 10px 24px rgba(122, 30, 63, 0.5);
      }

      /* ────────── Responsive ────────── */
      @media (min-width: 768px) {
        .article-wrap {
          padding: 148px 32px 104px;
          gap: 48px;
        }
        .arabic-dua {
          padding: 42px 38px;
        }
        .translation,
        .transliteration {
          padding: 30px 34px;
        }
        .toc {
          padding: 30px 34px;
        }
        .misaq-cta {
          padding: 32px 36px;
        }
      }

      @media (max-width: 600px) {
        .nav {
          padding: 12px 20px;
        }
        .nav-logo-img {
          height: 40px;
        }
        .nav-logo-text {
          font-size: 24px;
        }
        .nav-cta {
          padding: 9px 18px;
          font-size: 14px;
        }
        .to-top {
          display: none;
        }
      }

      /* ────────── Scroll reveal (progressive enhancement) ────────── */
      .js .reveal {
        opacity: 0;
        transform: translateY(18px);
        transition:
          opacity 0.6s ease-out,
          transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .js .reveal.in {
        opacity: 1;
        transform: none;
      }

      @keyframes arabicGlowPulse {
        0% {
          box-shadow: var(--shadow-premium);
        }
        50% {
          box-shadow:
            0 22px 60px rgba(122, 30, 63, 0.4),
            0 0 22px rgba(200, 168, 78, 0.32);
        }
        100% {
          box-shadow: var(--shadow-premium);
        }
      }
      .arabic-dua.in {
        animation: arabicGlowPulse 2.2s ease-out 0.3s 1 both;
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }
        .js .reveal {
          opacity: 1 !important;
          transform: none !important;
          transition: none !important;
        }
        .arabic-dua.in {
          animation: none;
        }
        .nav-cta:hover,
        .cta-btn:hover {
          transform: none;
        }
      }
    </style>
