﻿
    :root {
      --primary: #2e1a47; /* Deep Purple */
      --primary-light: #4a2c6b;
      --accent: #d4af37; /* Gold */
      --text-dark: #1f2937;
      --text-light: #6b7280;
      --bg-light: #f9fafb;
      --white: #ffffff;
      --surface: #ffffff;
      --soft-purple: #f6f1ff;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 20%),
        linear-gradient(180deg, #fbfaff 0%, #f6f3fc 100%);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .logo{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .logo img{
      width:40px;
      height:40px;
      object-fit:contain;
    }

    .logo-name{
      font-family:'Montserrat', sans-serif;
      font-weight:700;
      font-size:17px;
      letter-spacing:0.04em;
      text-transform:uppercase;
      line-height:1.2;
      color:#ffffff;
    }

    .header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
      backdrop-filter: blur(12px);
      background: rgba(0, 0, 0, 0.6);
      border-bottom: 1px solid rgba(132, 3, 252, 0.2);
      transition: 0.3s ease;
    }

    .nav-container {
      width: 90%;
      max-width: 1400px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

    .nav {
      display: flex;
      gap: 35px;
    }

    .nav a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      position: relative;
      transition: 0.3s;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: #8403fc;
      transition: 0.3s ease;
    }

    .nav a:hover {
      color: #c89cff;
    }

    .nav a:hover::after {
      width: 100%;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--white);
    }

    .hamburger.is-active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .hamburger.is-active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.is-active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

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

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-out;
    }

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

    /* --- Header / Hero --- */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 720px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      color: var(--white);
      padding-top: 80px;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://image.qwenlm.ai/public_source/0823b1c8-4cab-4e14-baa2-ba1fd6ce5a48/12154f55b-4bf1-450e-ae1c-52e8e0e4c5dd.png') no-repeat center center/cover;
      z-index: -2;
      /* Parallax effect handled by JS or simple CSS fixed attachment */
      background-attachment: fixed; 
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(46, 26, 71, 0.85), rgba(20, 10, 30, 0.7));
      z-index: -1;
    }

    .hero-content {
      max-width: 900px;
      padding: 2rem;
      z-index: 1;
    }
    .hero-title {
      font-size: clamp(3.8rem, 8vw, 6.6rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      text-shadow: 0 4px 20px rgba(0,0,0,0.3);
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards 0.4s;
    }

    .hero-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-weight: 300;
      max-width: 600px;
      margin: 0 auto 2.5rem;
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards 0.6s;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      animation: float 2s infinite ease-in-out;
      opacity: 0.7;
      cursor: pointer;
    }

    .scroll-indicator i {
      font-size: 2rem;
      color: var(--white);
    }

        /* --- Intro Section --- */
    .intro-section {
      padding: 7.5rem 2rem;
      background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,241,255,0.92) 100%);
    }

    .intro-wrap {
      max-width: 1200px;
      margin: 0 auto;
      display: block;
    }

    .intro-copy {
      text-align: left;
      padding: 2rem 2.1rem;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(247,243,255,0.88) 100%);
      border: 1px solid rgba(132, 3, 252, 0.12);
      box-shadow: 0 18px 40px rgba(46, 26, 71, 0.1);
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
      gap: 2rem;
      align-items: center;
    }

    .intro-copy-main {
      min-width: 0;
    }

    .intro-kicker {
      display: inline-flex;
      align-items: center;
      padding: 0.7rem 1.3rem;
      border-radius: 999px;
      letter-spacing: 0.12em;
      font-size: 0.78rem;
      font-weight: 700;
      color: #1f1835;
      background: linear-gradient(135deg, #c7f0d5 0%, #8edfaf 100%);
      margin-bottom: 1.3rem;
    }

    .intro-title {
      font-size: clamp(2rem, 3.7vw, 3rem);
      color: var(--primary);
      margin-bottom: 1.2rem;
      line-height: 1.1;
      letter-spacing: -0.03em;
      max-width: 11ch;
    }

    .intro-text {
      font-size: 1.03rem;
      color: var(--text-light);
      line-height: 1.85;
      margin-bottom: 1rem;
      max-width: 56ch;
    }

.intro-photo-card {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 22px 44px rgba(46, 26, 71, 0.16);
      border: 1px solid rgba(132, 3, 252, 0.16);
      width: min(360px, 100%);
      aspect-ratio: 16 / 9;
      margin-left: 0;
    }

    .intro-photo-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 6, 31, 0.1) 30%, rgba(15, 6, 31, 0.78) 100%);
      pointer-events: none;
    }

    .intro-photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .intro-photo-caption {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 0.85rem;
      z-index: 2;
      color: #ffffff;
      font-size: 0.92rem;
      line-height: 1.5;
      margin: 0;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    }

    .intro-photo-card:hover img {
      transform: scale(1.04);
    }
    /* --- Mission Section (New) --- */
    .mission-section {
      padding: 6rem 2rem;
      background: transparent;
      overflow: hidden;
    }

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

    .mission-image-wrapper {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 28px 60px rgba(46, 26, 71, 0.16);
    }

    .mission-image-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s ease;
    }

    .mission-image-wrapper:hover img {
      transform: scale(1.05);
    }

    .mission-content h2 {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .mission-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem 2rem;
      margin-top: 2rem;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid rgba(46, 26, 71, 0.08);
    }

    .feature-icon {
      font-size: 1.5rem;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    .feature-title {
      font-weight: 700;
      color: var(--text-dark);
    }

    .feature-desc {
      font-size: 0.9rem;
      color: var(--text-light);
    }

        /* --- Groups Section --- */
    .group-section {
      padding: 6.8rem 2rem;
      background:
        radial-gradient(circle at 8% 2%, rgba(132, 3, 252, 0.1) 0%, transparent 26%),
        radial-gradient(circle at 92% 18%, rgba(66, 19, 149, 0.1) 0%, transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5efff 100%);
    }

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

    .section-tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.58rem 1.05rem;
      border-radius: 999px;
      background: rgba(46, 26, 71, 0.08);
      color: var(--primary);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-header h2 {
      font-size: clamp(2.2rem, 3.5vw, 3.05rem);
      color: var(--primary);
      margin-bottom: 0.85rem;
      letter-spacing: -0.03em;
      line-height: 1.08;
    }

    .section-header p {
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.02rem;
      line-height: 1.72;
    }

    .group-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.35rem;
      max-width: 1280px;
      margin: 0 auto;
      align-items: stretch;
    }

    .group-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,243,255,0.96) 100%);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(46, 26, 71, 0.1);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      border: 1px solid rgba(76, 1, 154, 0.14);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      isolation: isolate;
    }

    .group-card::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 4px;
      background: linear-gradient(90deg, #8403fc 0%, #5d10d5 50%, #b37bff 100%);
      z-index: 1;
      opacity: 0.92;
    }

    .group-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 22px 44px rgba(46, 26, 71, 0.16);
      border-color: rgba(76, 1, 154, 0.26);
    }

    .card-image {
      height: 190px;
      overflow: hidden;
      position: relative;
      border-bottom: 1px solid rgba(76, 1, 154, 0.09);
    }

    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .group-card:hover .card-image img {
      transform: scale(1.07);
    }

    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(14, 6, 31, 0.04) 0%, rgba(14, 6, 31, 0.56) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .group-card:hover .card-overlay {
      opacity: 1;
    }

    .card-content {
      padding: 1.2rem 1.05rem 1.1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      min-height: 270px;
    }

    .card-content h3 {
      font-size: 1.12rem;
      color: var(--primary);
      margin-bottom: 0.55rem;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .card-content p {
      color: var(--text-light);
      font-size: 0.91rem;
      line-height: 1.65;
      margin-bottom: 0.95rem;
      flex: 1;
    }

    .verse-btn {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.28rem;
      width: 100%;
      text-align: left;
      background: linear-gradient(135deg, #efe5ff 0%, #fbf8ff 100%);
      border: 1px solid rgba(132, 3, 252, 0.24);
      color: #2f1d53;
      border-radius: 12px;
      padding: 0.72rem 0.78rem;
      line-height: 1.35;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
      cursor: default;
    }

    .verse-btn-label {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-weight: 700;
      color: #7542d8;
    }

    .verse-btn-text {
      font-size: 0.79rem;
      font-weight: 600;
      color: #2f1d53;
    }

    .verse-btn-ref {
      font-size: 0.74rem;
      color: #6b57a0;
      font-weight: 700;
    }

    .verse-btn:hover {
      border-color: rgba(132, 3, 252, 0.42);
      box-shadow: 0 10px 22px rgba(76, 1, 154, 0.12);
      transform: translateY(-1px);
    }

    @media (max-width: 1100px) {
      .group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .nav {
        position: absolute;
        top: 80px;
        right: -100%;
        background: rgba(24, 0, 58, 0.95);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.4s ease;
        z-index: 1000;
      }

      .nav.active {
        right: 0;
      }

      .hamburger {
        display: flex;
      }

      .group-section {
        padding: 4rem 1rem;
      }

      .group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
      }

      .group-card,
      .card-content {
        min-width: 0;
      }

      .card-image {
        height: 190px;
      }

      .mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .mission-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .hero-title {
        font-size: 3rem;
      }

      .mission-content h2,
      .section-header h2,
      .intro-title {
        font-size: 2.35rem;
      }
      
      .intro-section {
        padding: 4rem 1.5rem;
      }

      .intro-wrap {
        display: block;
      }

      .intro-copy {
        text-align: center;
      }

      .intro-copy {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.25rem;
      }

      .intro-title,
      .intro-text {
        max-width: none;
      }

      .intro-photo-caption {
        font-size: 0.88rem;
      }

      .intro-kicker {
        margin-left: auto;
        margin-right: auto;
      }

      .intro-photo-card {
        width: min(340px, 100%);
        margin-left: auto;
        margin-right: auto;
      }

      .logo-name{
        font-size:14px;
      }
    }

    @media (max-width: 560px) {
      .group-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .church-footer {
      --text-primary: #ffffff;
      --text-secondary: #cbb6ff;
      --accent-color: #a855f7;
      --accent-glow: rgba(168,85,247,0.4);
      --border-color: rgba(255,255,255,0.1);
      --transition-speed: 0.3s;

      width: 100%;
      margin: 0;
      border-radius: 0;
      background: linear-gradient(-45deg, #8403fe, #4c019a, #180032, #4c019a);
      background-size: 400% 400%;
      animation: gradientMove 15s ease infinite;
      color: var(--text-primary);
      padding: 80px 5% 40px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--border-color);
    }

    .church-footer::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
      opacity: 0.25;
      z-index: 0;
      pointer-events: none;
    }

    .footer-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .footer-logo {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      display: block;
      margin-bottom: 25px;
    }

    .footer-brand p {
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 30px;
      font-size: 0.95rem;
    }

    .contact-info {
      list-style: none;
      margin-bottom: 30px;
    }

    .contact-info li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: var(--text-secondary);
      font-size: 0.9rem;
      transition: all var(--transition-speed);
    }

    .contact-info li i {
      width: 30px;
      height: 30px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 12px;
      color: var(--accent-color);
      font-size: 0.8rem;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      text-decoration: none;
      transition: all var(--transition-speed);
    }

    .social-btn:hover {
      color: #180032;
      border-color: var(--accent-color);
      background: var(--accent-color);
      transform: translateY(-4px);
    }

    .footer-col h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 25px;
      color: var(--text-primary);
      position: relative;
      display: inline-block;
    }

    .footer-col h3::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--accent-color);
      transition: width 0.3s ease;
    }

    .footer-col:hover h3::after {
      width: 100%;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--text-primary);
      padding-left: 8px;
    }

    .worship-box {
      grid-column: 2 / 5;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-top: -50px;
    }

    .worship-box h2 {
      font-size: 1.6rem;
      margin-bottom: 30px;
    }

    .worship-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .worship-item {
      display: flex;
      align-items: center;
      gap: 15px;
      text-align: left;
    }

    .worship-item i {
      font-size: 20px;
      background: rgba(255,255,255,0.08);
      padding: 10px;
      border-radius: 8px;
      color: #ffd54a;
    }

    .worship-item p {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .visit-btn {
      display: inline-block;
      background: #ffd54a;
      color: #180032;
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s;
    }

    .visit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding-top: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .copyright {
      color: var(--text-secondary);
      font-size: 0.85rem;
    }

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

    @media (max-width:1024px) {
      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .worship-box {
        grid-column: 1 / -1;
      }
    }

    @media (max-width:768px) {
      .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .worship-grid {
        flex-direction: column;
        gap: 30px;
      }
    }

    .logo-link{
      text-decoration:none;
      color:inherit;
      display:inline-block;
    }

    .sermon-float{
      position:fixed;
      bottom:25px;
      right:25px;
      display:flex;
      align-items:center;
      gap:12px;
      background: var(--primary);
      color:white;
      padding:14px 18px;
      border-radius:50px;
      text-decoration:none;
      font-weight:600;
      box-shadow:0 8px 25px rgba(0,0,0,0.25);
      z-index:9999;
      animation:shakeBtn 5s infinite;
      transition:0.3s;
    }

    .sermon-icon{
      width:40px;
      height:40px;
      background:white;
      color:black;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:16px;
      font-weight:bold;
    }

    .sermon-text{
      font-size:14px;
    }

    .sermon-float:hover{
      transform:scale(1.05);
      background: var(--primary-light);
    }

    @keyframes shakeBtn{
      0% { transform:translateX(0); }
      2% { transform:translateX(-3px); }
      4% { transform:translateX(3px); }
      6% { transform:translateX(-3px); }
      8% { transform:translateX(3px); }
      10% { transform:translateX(0); }
      100% { transform:translateX(0); }
    }

    @media (max-width:600px){
      .sermon-text{
        display:none;
      }

      .sermon-float{
        padding:14px;
      }
    }



/* ==============================
WATCH BUTTON BRAND STYLE
============================== */
.sermon-float{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg, #8403fc 0%, #4c019a 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.2) !important;
  border-radius:999px !important;
  padding:10px 16px 10px 12px !important;
  box-shadow:0 14px 28px rgba(76,1,154,0.35) !important;
  text-decoration:none;
}

.sermon-icon{
  width:34px !important;
  height:24px !important;
  border-radius:8px !important;
  background:#ffffff !important;
  color:transparent !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:0 !important;
  position:relative;
}

.sermon-icon::before{
  content:"";
  display:block;
  width:0;
  height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:10px solid #8403fc;
  margin-left:2px;
}

.sermon-text{
  color:#ffffff !important;
  font-weight:700;
  letter-spacing:0.01em;
}

.sermon-float:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(76,1,154,0.42) !important;
}

a.hero-btn-secondary[href*="watch.html"],
a.btn-secondary[href*="watch.html"]{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg, #8403fc 0%, #4c019a 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.25) !important;
  box-shadow:0 10px 24px rgba(76,1,154,0.3) !important;
}

a.hero-btn-secondary[href*="watch.html"]::before,
a.btn-secondary[href*="watch.html"]::before{
  content:"▶";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:14px;
  border-radius:4px;
  background:#ffffff;
  color:#8403fc;
  font-size:9px;
  line-height:1;
  font-weight:800;
}

