    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --blue: #1a2f8a;
      --blue-dark: #111f62;
      --blue-deep: #0d1645;
      --blue-mid: #1e3aaa;
      --blue-light: #2c52cc;
      --gold: #c9993a;
      --gold-light: #e0b85a;
      --gold-pale: #f5e8c8;
      --white: #ffffff;
      --offwhite: #f4f6fc;
      --muted: #8a94b4;
      --ink: #0d1540;
      --font-ar: 'Tajawal', sans-serif;
      --font-head: 'Cairo', sans-serif;
      --font-en: 'Montserrat', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-ar);
      background: var(--offwhite);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ─── BOSLA LOGO SVG ─── */
    .bosla-icon {
      display: inline-block;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 4rem;
      background: rgba(13, 22, 69, 0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(201, 153, 58, 0.25);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
    }

    .nav-brand-text {
      display: flex;
      flex-direction: column;
    }

    .nav-brand-main {
      font-family: var(--font-en);
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 0.08em;
    }

    .nav-brand-main span {
      color: var(--gold);
    }

    .nav-brand-sub {
      font-family: var(--font-en);
      font-size: 0.6rem;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.2em;
      font-weight: 400;
    }

    .nav-podcast-badge {
      background: rgba(201, 153, 58, 0.15);
      border: 1px solid rgba(201, 153, 58, 0.35);
      color: var(--gold-light);
      font-size: 0.72rem;
      font-weight: 500;
      padding: 0.25rem 0.75rem;
      border-radius: 2rem;
      margin-right: 0.5rem;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--gold-light);
    }

    .nav-cta {
      background: var(--gold);
      color: var(--blue-deep);
      border: none;
      padding: 0.6rem 1.5rem;
      border-radius: 2rem;
      font-family: var(--font-ar);
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
    }

    .nav-cta:hover {
      background: var(--gold-light);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background: var(--blue-deep);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 8rem 4rem 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-grid-lines {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.04;
    }

    .hero-accent-bar {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 5px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    }

    .hero-big-logo {
      position: absolute;
      left: 3rem;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.04;
      width: 420px;
      height: 420px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(201, 153, 58, 0.12);
      border: 1px solid rgba(201, 153, 58, 0.35);
      color: var(--gold-light);
      padding: 0.4rem 1.1rem;
      border-radius: 2rem;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 1.75rem;
      width: fit-content;
      animation: fadeUp 0.7s ease both;
    }

    .live-dot {
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: blink 1.8s ease infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.2;
      }
    }

    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 0.3rem;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    .hero-title .g {
      color: var(--gold);
    }

    .hero-en {
      font-family: var(--font-en);
      font-size: clamp(0.85rem, 1.5vw, 1.1rem);
      color: rgba(255, 255, 255, 0.25);
      letter-spacing: 0.3em;
      font-weight: 600;
      margin-bottom: 2rem;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-desc {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.6);
      line-height: 2;
      max-width: 580px;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .hero-desc strong {
      color: var(--gold-light);
      font-weight: 500;
    }

    .hero-topics {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      animation: fadeUp 0.7s 0.35s ease both;
    }

    .topic-tag {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.6);
      padding: 0.35rem 1rem;
      border-radius: 2rem;
      font-size: 0.82rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--blue-deep);
      border: none;
      padding: 0.9rem 2.2rem;
      border-radius: 3rem;
      font-family: var(--font-ar);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.25s;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0.9rem 2.2rem;
      border-radius: 3rem;
      font-family: var(--font-ar);
      font-size: 1rem;
      font-weight: 400;
      cursor: pointer;
      transition: all 0.25s;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold-light);
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 4rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      animation: fadeUp 0.7s 0.5s ease both;
    }

    .stat-val {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      display: block;
    }

    .stat-lbl {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
      font-weight: 300;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── HOST STRIP ─── */
    .host-strip {
      background: var(--blue);
      padding: 3rem 4rem;
      display: flex;
      align-items: center;
      gap: 3rem;
      border-bottom: 1px solid rgba(201, 153, 58, 0.2);
    }

    .host-avatar {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: var(--blue-mid);
      border: 3px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: var(--font-en);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
    }

    .host-info {
      flex: 1;
    }

    .host-role {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 0.3rem;
    }

    .host-name {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.3rem;
    }

    .host-title {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 300;
    }

    .host-contact {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-right: auto;
    }

    .host-contact a {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: color 0.2s;
    }

    .host-contact a:hover {
      color: var(--gold-light);
    }

    .h-icon {
      width: 15px;
      height: 15px;
      stroke: currentColor;
      fill: none;
    }

    /* ─── SECTION COMMONS ─── */
    .sec-label {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .sec-title {
      font-family: var(--font-head);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 2rem;
    }

    .sec-title-white {
      color: #fff;
    }

    /* ─── FEATURED ─── */
    .featured {
      background: #fff;
      padding: 5rem 4rem;
    }

    .featured-wrap {
      background: var(--blue-deep);
      border-radius: 1.5rem;
      padding: 3rem;
      display: grid;
      grid-template-columns: 1fr 240px;
      gap: 3rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .featured-wrap::after {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(201, 153, 58, 0.08);
      left: -150px;
      bottom: -200px;
      pointer-events: none;
    }

    .feat-ep {
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .feat-title {
      font-family: var(--font-head);
      font-size: 1.7rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 0.8rem;
    }

    .feat-desc {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.9;
      margin-bottom: 1.5rem;
    }

    .feat-tags {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }

    .feat-tag {
      background: rgba(201, 153, 58, 0.12);
      border: 1px solid rgba(201, 153, 58, 0.25);
      color: var(--gold-light);
      font-size: 0.78rem;
      padding: 0.25rem 0.75rem;
      border-radius: 2rem;
    }

    .feat-meta {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .feat-meta span {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.35);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .play-big {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--gold);
      color: var(--blue-deep);
      border: none;
      padding: 0.85rem 2rem;
      border-radius: 3rem;
      font-family: var(--font-ar);
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.25s;
    }

    .play-big:hover {
      background: var(--gold-light);
    }

    .play-circle {
      width: 30px;
      height: 30px;
      background: var(--blue-deep);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ep-cover {
      width: 240px;
      height: 240px;
      border-radius: 1.25rem;
      background: var(--blue);
      border: 1px solid rgba(201, 153, 58, 0.25);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }

    .ep-cover::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(45deg,
          transparent, transparent 20px,
          rgba(201, 153, 58, 0.03) 20px, rgba(201, 153, 58, 0.03) 21px);
    }

    .cover-logo-wrap {
      position: relative;
      z-index: 1;
    }

    .cover-brand {
      font-family: var(--font-en);
      font-size: 1rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 0.1em;
      position: relative;
      z-index: 1;
    }

    .cover-sub {
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.15em;
      text-align: center;
      font-family: var(--font-en);
      position: relative;
      z-index: 1;
    }

    /* ─── WAVEFORM ─── */
    .wave {
      display: inline-flex;
      align-items: center;
      gap: 2.5px;
      height: 18px;
    }

    .wave span {
      display: block;
      width: 3px;
      background: var(--blue-deep);
      border-radius: 2px;
      animation: wv 1.1s ease-in-out infinite;
    }

    .play-big:hover .wave span {
      background: #fff;
    }

    .wave span:nth-child(1) {
      height: 5px;
      animation-delay: 0s
    }

    .wave span:nth-child(2) {
      height: 13px;
      animation-delay: .12s
    }

    .wave span:nth-child(3) {
      height: 9px;
      animation-delay: .24s
    }

    .wave span:nth-child(4) {
      height: 16px;
      animation-delay: .36s
    }

    .wave span:nth-child(5) {
      height: 7px;
      animation-delay: .48s
    }

    .wave span:nth-child(6) {
      height: 12px;
      animation-delay: .6s
    }

    @keyframes wv {

      0%,
      100% {
        transform: scaleY(1)
      }

      50% {
        transform: scaleY(0.35)
      }
    }

    /* ─── EPISODES ─── */
    .episodes {
      padding: 5rem 4rem;
      background: var(--offwhite);
    }

    .ep-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 2rem;
    }

    .btn-sm-outline {
      background: transparent;
      border: 1px solid #c8d0e4;
      color: var(--muted);
      border-radius: 2rem;
      padding: 0.5rem 1.25rem;
      font-family: var(--font-ar);
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-sm-outline:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .ep-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
      gap: 1.25rem;
    }

    .ep-card {
      background: #fff;
      border: 1px solid #e2e8f4;
      border-radius: 1rem;
      padding: 1.75rem;
      cursor: pointer;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }

    .ep-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 0;
      height: 3px;
      background: var(--gold);
      transition: width 0.35s;
      border-radius: 0 1rem 0 0;
    }

    .ep-card:hover {
      border-color: #b8c6e8;
      transform: translateY(-3px);
      box-shadow: 0 10px 35px rgba(26, 47, 138, 0.09);
    }

    .ep-card:hover::before {
      width: 100%;
    }

    .ep-category {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--offwhite);
      border: 1px solid #e2e8f4;
      color: var(--muted);
      font-size: 0.75rem;
      padding: 0.2rem 0.7rem;
      border-radius: 2rem;
      margin-bottom: 0.75rem;
    }

    .ep-num {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .ep-title {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.5;
      margin-bottom: 0.6rem;
    }

    .ep-snippet {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 1.25rem;
      font-weight: 300;
    }

    .ep-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid #f0f2f8;
    }

    .ep-dur {
      font-size: 0.8rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .ep-play-btn {
      width: 38px;
      height: 38px;
      background: var(--blue-deep);
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }

    .ep-play-btn:hover {
      background: var(--blue-mid);
    }

    /* ─── CATEGORIES ─── */
    .categories {
      background: var(--blue-deep);
      padding: 5rem 4rem;
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .cat-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 1rem;
      padding: 1.5rem;
      cursor: pointer;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }

    .cat-card:hover {
      background: rgba(201, 153, 58, 0.08);
      border-color: rgba(201, 153, 58, 0.3);
      transform: translateY(-2px);
    }

    .cat-icon {
      width: 48px;
      height: 48px;
      background: rgba(201, 153, 58, 0.12);
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }

    .cat-name {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 0.3rem;
    }

    .cat-count {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.35);
    }

    .cat-arrow {
      position: absolute;
      top: 1.25rem;
      left: 1.25rem;
      color: rgba(255, 255, 255, 0.15);
      font-size: 1.2rem;
      transition: color 0.2s;
    }

    .cat-card:hover .cat-arrow {
      color: var(--gold);
    }

    /* ─── ABOUT HOST ─── */
    .about-host {
      background: #fff;
      padding: 5rem 4rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-visual {
      background: var(--blue-deep);
      border-radius: 1.5rem;
      padding: 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .about-visual::before {
      content: '';
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 1px solid rgba(201, 153, 58, 0.1);
    }

    .about-logo-big {
      position: relative;
      z-index: 1;
    }

    .about-name {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      text-align: center;
    }

    .about-role {
      font-size: 0.85rem;
      color: var(--gold);
      text-align: center;
      letter-spacing: 0.05em;
    }

    .about-divider {
      width: 40px;
      height: 2px;
      background: var(--gold);
      opacity: 0.4;
      border-radius: 1px;
    }

    .about-brand {
      font-family: var(--font-en);
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.3);
      letter-spacing: 0.2em;
      text-align: center;
    }

    .about-contact-list {
      list-style: none;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .about-contact-list li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .about-contact-list li:last-child {
      border-bottom: none;
    }

    .about-contact-list a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
    }

    .about-contact-list a:hover {
      color: var(--gold-light);
    }

    .c-dot {
      width: 28px;
      height: 28px;
      background: rgba(201, 153, 58, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about-text .sec-title {
      margin-bottom: 1rem;
    }

    .about-body {
      font-size: 0.95rem;
      font-weight: 300;
      color: #4a5580;
      line-height: 2;
      margin-bottom: 1.25rem;
    }

    .about-pillars {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }

    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem 1.25rem;
      background: var(--offwhite);
      border-radius: 0.75rem;
      border-right: 3px solid var(--gold);
    }

    .pillar-icon {
      font-size: 1.2rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .pillar-name {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--ink);
      margin-bottom: 0.2rem;
    }

    .pillar-desc {
      font-size: 0.83rem;
      color: var(--muted);
      font-weight: 300;
    }

    /* ─── SUBSCRIBE ─── */
    .subscribe {
      background: var(--offwhite);
      padding: 5rem 4rem;
      text-align: center;
    }

    .sub-title {
      font-family: var(--font-head);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }

    .sub-desc {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 460px;
      margin: 0 auto 2.5rem;
      line-height: 1.9;
      font-weight: 300;
    }

    .platforms {
      display: flex;
      gap: 0.85rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .plat-btn {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.7rem 1.4rem;
      border: 1px solid #dde4f0;
      background: #fff;
      border-radius: 0.75rem;
      font-family: var(--font-ar);
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .plat-btn:hover {
      border-color: var(--blue);
      color: var(--blue);
      transform: translateY(-2px);
    }

    .p-icon {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      font-family: var(--font-en);
    }

    .p-spotify {
      background: #1DB954;
      color: #fff;
    }

    .p-apple {
      background: #FC3C44;
      color: #fff;
    }

    .p-youtube {
      background: #FF0000;
      color: #fff;
    }

    .p-google {
      background: #4285f4;
      color: #fff;
    }

    .p-anchor {
      background: #533ACC;
      color: #fff;
    }

    .email-row {
      display: flex;
      max-width: 420px;
      margin: 0 auto;
      border: 1px solid #dde4f0;
      border-radius: 3rem;
      overflow: hidden;
      background: #fff;
    }

    .email-input {
      flex: 1;
      padding: 0.85rem 1.25rem;
      border: none;
      outline: none;
      font-family: var(--font-ar);
      font-size: 0.9rem;
      color: var(--ink);
      text-align: right;
      background: transparent;
    }

    .email-input::placeholder {
      color: var(--muted);
    }

    .email-btn {
      background: var(--blue-deep);
      color: #fff;
      border: none;
      padding: 0.85rem 1.5rem;
      font-family: var(--font-ar);
      font-size: 0.88rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      flex-shrink: 0;
    }

    .email-btn:hover {
      background: var(--blue-mid);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--blue-deep);
      border-top: 1px solid rgba(201, 153, 58, 0.2);
      padding: 3rem 4rem;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .footer-brand-text {
      color: rgba(255, 255, 255, 0.25);
      font-size: 0.78rem;
      margin-top: 0.15rem;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.3);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--gold-light);
    }

    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.2);
    }

    /* BOSLA SVG LOGO */
    .bosla-svg {
      fill: none;
    }

    @media (max-width: 900px) {
      nav {
        padding: 1rem 1.5rem;
      }

      .nav-links {
        display: none;
      }

      .hero,
      .featured,
      .episodes,
      .categories,
      .about-host,
      .subscribe {
        padding: 3rem 1.5rem;
      }

      .featured-wrap {
        grid-template-columns: 1fr;
      }

      .ep-cover {
        width: 100%;
        height: 200px;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .hero-big-logo {
        display: none;
      }

      .host-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
      }

      footer {
        padding: 2rem 1.5rem;
      }

      .footer-inner {
        flex-direction: column;
      }
    }
