:root {
  /* Base colors */
  --clr-black: #000000;
  --clr-white: #ffffff;
  /* Brand colors */
  --clr-primary: #f24a3c;
  --clr-secondary: #4f46e5;
  /* Neutral palette (Tailwind-ish, but usable anywhere) */
  --clr-slate-100: #f1f5f9;
  --clr-slate-200: #cbd5e1;
  --clr-slate-600: #475569;
  --clr-slate-900: #0f172a;
  --clr-slate-50: #f8fafc;
  /* Gradients */
  --clr-primary-gradient: linear-gradient(to right, #f24a3c, #0b3cde);
  --clr-secondary-gradient: linear-gradient(to right, #f24a3c, #e63f32);
  /* Typography */
  --font-family-primary: "Inter", sans-serif;
}


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

html,
body {
  font-family: var(--font-family-primary);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
  line-height: 1.6;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Media & Images */
img {
  width: 100%;
  display: block;
  height: auto;
}

/* Forms */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  transition: all 0.6s ease-in-out;
}

figure {
  margin: 0;
  padding: 0;
}

/*  */
.btn-main {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 16px 32px;
  font: 700 18px/1.2 var(--font-family-primary);
  color: var(--clr-black) !important;
  background: var(--clr-secondary-gradient);
  border: 1px solid #f24a3c4d;
  border-radius: 9999px;
  box-shadow: 0 10px 30px -10px #f24a3c80;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.btn-main:hover {
  background: linear-gradient(to right, #f35c50, #f24a3c);
  color: var(--clr-white) !important;
}

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.ScSub {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 9999px;
  background: var(--clr-primary);
  color: var(--clr-white);
  font: 600 12px/1 var(--font-family-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}

.ScLable {
  margin-bottom: 16px;
  font: 700 14px/1.2 var(--font-family-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-primary);
}

/* SiteHeader */
.SiteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffffcc;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-slate-100);
}

.SiteHeader .navbar-brand img {
  max-width: 250px;
  max-height: 80px;
  object-fit: contain;
}

.SiteHeader .navbar-nav {
  gap: 30px;
}

.SiteHeader .navbar-nav li {
  padding: 0;
  margin: 0;
}

.SiteHeader .navbar-nav li a {
  font: 500 14px/1.2 var(--font-family-primary);
  color: var(--clr-slate-600);
  transition: color .2s ease;
  padding: 0 !important;
  margin: 0 !important;
}

.SiteHeader .button-wrap {
  margin-left: 30px;
}

/* HeroBanner */
.HeroBanner {
  min-height: 712px;
  padding: 100px 0;
  position: relative;
}

.SwiperHero {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.SwiperHero .swiper-slide {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
}


.SwiperHero .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}


.SwiperHero .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(15, 23, 42, .6),
      rgba(15, 23, 42, .4),
      rgba(15, 23, 42, .9));
  pointer-events: none;
}

.HeroBanner .HeroBannerCn {
  position: relative;
  max-width: 680px;
  z-index: 1;
}

.HeroBanner .HeroBannerCn h1 {
  font: 800 72px/1.2 var(--font-family-primary);
  color: var(--clr-white);
  letter-spacing: -.02em;
  margin: 0 0 24px;
  text-shadow: 0 10px 15px rgba(0, 0, 0, .25);
}

.HeroBanner .HeroBannerCn h1 span {
  /* background: var(--clr-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  color: var(--clr-primary);
}

.HeroBanner .HeroBannerCn p {
  font: 400 20px/1.6 var(--font-family-primary);
  color: var(--clr-slate-100);
  margin: 0 0 40px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.HeroBanner .btm-des {
  margin-top: 60px;
}

.HeroBanner .btm-des p {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-size: 14px;
  color: var(--clr-slate-100);
  text-align: center;
}

.HeroBanner .btm-des p i {
  color: #fbbf24;
  font-size: 12px;
}

/* SectionRadioPlayer */
.SectionRadioPlayer {
  padding: 0 0 80px;
  background: #f8fafc;
  position: relative;
  z-index: 1;
}

.RadioPlayerWrap {
  margin-top: -80px;
}

.RadioPlayerCard {
  display: flex;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .25);
  min-height: 600px;
}

.RadioPlayerMain {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.RadioPlayerHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.RadioLiveBadge {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.RadioLiveDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
}

.RadioLiveText {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #64748b;
}

.RadioStationName {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #cbd5e1;
}

.RadioCenterArea {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 900px;
  margin: auto;
}

.RadioCoverWrap {
  position: relative;
  width: 210px;
  height: 210px;
  flex-shrink: 0;
}

.RadioCoverGlow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: rgba(99, 102, 241, .15);
  filter: blur(50px);
}

.RadioCover {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .2);
}

.RadioCover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.RadioCoverPin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.RadioCoverPin span {
  width: 12px;
  height: 12px;
  background: #1e293b;
  border-radius: 50%;
}

.RadioSongContent h2 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1;
}

.RadioSongContent p {
  font-size: 24px;
  color: #94a3b8;
  margin-bottom: 40px;
}

.RadioProgressBar {
  height: 10px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.RadioProgressBar span {
  display: block;
  width: 35%;
  height: 100%;
  background: #4f46e5;
}

.RadioTimeRow {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
}

.RadioControls {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.RadioControlBtn {
  background: none;
  border: none;
  font-size: 26px;
  color: #94a3b8;
  cursor: pointer;
}

.RadioPlayBtn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: #4f46e5;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 20px 40px -10px rgba(79, 70, 229, .6);
}

.RadioBottomBar {
  margin-top: 60px;
  background: #f8fafc;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.RadioVisualizer {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  opacity: .6;
}

.RadioVisualizer span {
  flex: 1;
  background: #818cf8;
  border-radius: 10px;
}

.RadioVisualizer span:nth-child(1) {
  height: 30%
}

.RadioVisualizer span:nth-child(2) {
  height: 46%
}

.RadioVisualizer span:nth-child(3) {
  height: 48%
}

.RadioVisualizer span:nth-child(4) {
  height: 32%
}

.RadioVisualizer span:nth-child(5) {
  height: 15%
}

.RadioVisualizer span:nth-child(6) {
  height: 10%
}

.RadioVisualizer span:nth-child(7) {
  height: 24%
}

.RadioVisualizer span:nth-child(8) {
  height: 43%
}

.RadioVisualizer span:nth-child(9) {
  height: 49%
}

.RadioVisualizer span:nth-child(10) {
  height: 38%
}

.RadioVolumeWrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.RadioVolumeBar {
  width: 100px;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.RadioVolumeBar span {
  width: 80%;
  height: 100%;
  display: block;
  background: #94a3b8;
}

.RadioQueuePanel {
  width: 450px;
  background: #f8fafc;
  border-left: 1px solid #eef2f7;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.RadioQueueHeader span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #94a3b8;
}

.RadioQueueHeader h3 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
}

.RadioQueueList {
  margin-top: 30px;
  flex: 1;
  overflow: auto;
  padding-right: 6px;
}

.RadioQueueItem {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  cursor: pointer;
  transition: .3s;
}

.RadioQueueItem img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.RadioQueueItem h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.RadioQueueItem p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

.RadioQueueItem.Active {
  background: #e0e7ff;
}

.RadioQueueItem:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.RadioScheduleBtn {
  margin-top: 20px;
  padding: 18px;
  border: none;
  border-radius: 20px;
  background: #e5e7eb;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
}

.CustomScrollbar::-webkit-scrollbar {
  width: 6px;
}

.CustomScrollbar::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: 10px;
}

/* SectionFeature */
.SectionFeature {
  padding: 80px 0;
  background: var(--clr-slate-900);
}

.FeatureRow {
  display: flex;
  gap: 32px;
}

.FeatureRowCard {
  position: relative;
  flex: 1;
  height: auto;
  padding: 32px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.FeatureRowCardIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--clr-primary-gradient);
  color: var(--clr-white);
}

.FeatureRowCardIcon i {
  font-size: 20px;
}

.FeatureRowCard h3 {
  margin-bottom: 12px;
  font: 700 20px/1.2 var(--font-family-primary);
  color: var(--clr-white);
}

.FeatureRowCard p {
  margin-bottom: 32px;
  font: 400 16px/1.6 var(--font-family-primary);
  color: var(--clr-slate-200);
}

.FeatureRowCard .btn-main {
  width: 100%;
  margin-top: auto;
}

/* SectionMission */
.SectionMission {
  padding: 80px 0;
  background: var(--clr-slate-50);
}

.SectionMission .row {
  align-items: center;
}

.SectionMission h2 {
  margin-bottom: 14px;
  margin-top: 5px;
  font: 800 48px/1.1 var(--font-family-primary);
  letter-spacing: -0.5px;
  color: var(--clr-slate-900);
}

.SectionMission p {
  margin-bottom: 20px;
  font: 400 16px/1.6 var(--font-family-primary);
  color: var(--clr-slate-600);
}

.MissionImageWrap {
  position: relative;
  margin-right: 60px;
  z-index: 1;
}

.BgImg .MissionContent {
  background: var(--clr-white);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.BgImg .MissionContent::before {
  content: '';
  inset: 0;
  background-color: #00000071;
  z-index: 0;
  position: absolute;
}

.BgImg .MissionContent h2,
.BgImg .MissionContent p {
  position: relative;
  color: var(--clr-white);
  text-align: center;
}

.SectionMission.BgImg .row {
  align-items: unset;
}

/* amber circle (bottom right) */
.MissionImageWrap::before {
  content: "";
  position: absolute;
  width: 192px;
  height: 192px;
  background-color: #fef3c7;
  border-radius: 50%;
  right: -40px;
  bottom: -40px;
  z-index: 0;
}

/* indigo circle (top left) */
.MissionImageWrap::after {
  content: "";
  position: absolute;
  width: 192px;
  height: 192px;
  background-color: #e0e7ff;
  border-radius: 50%;
  left: -40px;
  top: -40px;
  z-index: 0;

}

.MissionImageWrap img {
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 576/384;
  position: relative;
  z-index: 1;
}

.MissionQuote {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 20;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1),
    0 10px 10px -5px rgba(0, 0, 0, .04);
}

.MissionQuote p {
  margin-bottom: 8px;
  font: 500 italic 14px/1.5 var(--font-family-primary);
  color: var(--clr-slate-600);
}


.MissionQuote span {
  font: 700 12px/1 var(--font-family-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-secondary);
}

.MissionStats {
  display: flex;
  align-items: start;
  gap: 32px
}

.MissionStat {
  width: 100%;
}

.MissionStat h3 {
  display: block;
  margin-bottom: 4px;
  font: 700 36px/1.1 var(--font-family-primary);
  color: var(--clr-secondary);
}

.MissionStat span {
  font: 500 14px/1.2 var(--font-family-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-slate-600);
}

/* BenefitsSection */
.BenefitsSection {
  padding: 80px 0;
}

.BenefitsHeader {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 90px;
}

.BenefitsSection h2 {
  margin-bottom: 24px;
  font: 800 48px/1.1 var(--font-family-primary);
  letter-spacing: -0.5px;
  color: var(--clr-slate-900);
}

.BenefitsSection h2 span {
  background: var(--clr-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.BenefitsSection p {
  margin-bottom: 32px;
  font: 400 16px/1.6 var(--font-family-primary);
  color: var(--clr-slate-600);
}

.BenefitsGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
}

/*  */
.video-ping-wrap {
  display: none;
  /* hidden by default */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

  align-items: center;
  justify-content: center;
}

/* md:flex (>=768px) */
@media (min-width: 768px) {
  .video-ping-wrap {
    display: flex;
  }
}

.video-ping-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  /* w-24 */
  height: 96px;
  /* h-24 */
}

/* animate-ping */
.video-ping-ring {
  position: absolute;
  inset: 0;
  background-color: #6366f1;
  /* indigo-500 */
  border-radius: 50%;
  opacity: 0.2;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* animate-pulse + inset-2 */
.video-ping-ring-small {
  position: absolute;
  top: 8px;
  /* inset-2 */
  right: 8px;
  bottom: 8px;
  left: 8px;
  background-color: #6366f1;
  /* indigo-500 */
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* center circle */
.video-ping-center {
  position: relative;
  width: 48px;
  /* w-12 */
  height: 48px;
  /* h-12 */
  background-color: #4f46e5;
  /* indigo-600 */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4),
    0 8px 10px -6px rgba(99, 102, 241, 0.4);
}

.video-ping-center img {
  max-width: 100%;
  max-height: 100%;
}

/* animations */

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }
}

.connection-lines {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  /* hidden */
  z-index: 0;
  pointer-events: none;
}

/* md:block */
@media (min-width: 768px) {
  .connection-lines {
    display: block;
  }
}

.connection-lines-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/*  */
.BenefitCard {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px;
  background: var(--clr-slate-50);
  border: 1px solid var(--clr-slate-100);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.BenefitCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.BenefitCard.right .BenefitText {
  text-align: right;
}

.BenefitIcon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--clr-slate-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  box-shadow: var(--shadow-icon);
}

.BenefitIcon i {
  font-size: 24px;
}

.BenefitText h4 {
  margin-bottom: 8px;
  font: 700 20px/1.2 var(--font-family-primary);
  color: var(--clr-slate-900);
}

.BenefitText p {
  margin: 0;
  font: 400 16px/1.6 var(--font-family-primary);
  color: #64748b;
}

/* RadioSection */
.RadioSection {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.RadioSection::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, .6), rgba(15, 23, 42, .9), rgba(15, 23, 42, .9));
}

.RadioContent {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.RadioIconWrap {
  position: relative;
}

/*  */
.center-dot-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.center-dot {
  width: 24px;
  height: 24px;
  background-color: #6366f1;
  border-radius: 50%;
  animation: centerDotPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
}

@keyframes centerDotPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/*  */
.RadioIconWrap svg {
  width: 50px;
  height: 50px;
  color: var(--clr-slate-200);
}

.RadioSection h2 {
  margin-bottom: 12px;
  font: 800 48px/1.1 var(--font-family-primary);
  letter-spacing: -0.5px;
  color: var(--clr-white);
}

.RadioSection h2 span {
  background: var(--clr-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.RadioSection h3 {
  font: 500 22px/1.4 var(--font-family-primary);
  color: var(--clr-slate-200);
  margin-bottom: 12px;
}

.RadioSection p {
  margin-bottom: 32px;
  font: 400 18px/1.6 var(--font-family-primary);
  color: var(--clr-slate-200);
}

.RadioSection .button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/*  */
.ScDonate {
  padding: 96px 0;
  background: #eff6ff;
}

.ScDonateHeader {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 90px;
}

.ScDonate h2 {
  margin-bottom: 24px;
  font: 800 48px/1.1 var(--font-family-primary);
  letter-spacing: -0.5px;
  color: var(--clr-slate-900);
}

.ScDonate h2 span {
  background: var(--clr-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.ScDonate p {
  margin-bottom: 32px;
  font: 400 18px/1.6 var(--font-family-primary);
  color: var(--clr-slate-600);
}

.ScDonateCards {
  background: var(--clr-white);
  border-radius: 40px;
  padding: 40px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  align-items: start;
  justify-content: center;
}

.ScDonateCard {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.ScDonateCardIcon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ScDonateCardIcon svg {
  width: 32px;
  height: 32px;
}

.ScDonateCardIcon.dark {
  background: #0f172a;
}

.ScDonateCardIcon.blue {
  background: #2563eb;
}

.ScDonateCardCn h3 {
  font: 700 20px/28px var(--font-family-primary);
  color: var(--clr-slate-900);
  margin: 0 0 8px;
}

.ScDonateCardCn p {
  font: 16px/26px var(--font-family-primary);
  color: var(--clr-slate-600);
  margin: 0;
}



/*  */
.donate-form-card {
  position: relative;
  background: #fff;
  border-radius: 40px;
  padding: 40px;
  border: 1px solid #dbeafe;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.form-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, #3b82f6, #a855f7, #ef4444);
}

.form-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 12px;
  width: fit-content;
  margin-bottom: 32px;
}

.form-plus {
  width: 20px;
  height: 20px;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 700;
}

.form-secure span {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.form-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* amounts */

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 6px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
}

.amount-grid button {
  border: none;
  background: transparent;
  padding: 12px 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  color: #475569;
  cursor: pointer;
}

.amount-grid button:hover {
  background: #fff;
}

.amount-grid .yearly {
  grid-column: 1/2;
  font-size: 14px;
  color: #64748b;
}

/* inputs */

.input-wrap input {
  width: 100%;
  padding: 16px 16px 16px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 16px;
  font-weight: 500;
  color: #334155;
  outline: none;
  transition: 0.2s;
}

.input-wrap input:focus {
  background: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}


.select-org {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.2s;
}

.select-org:hover {
  background: #fff;
}

.select-org span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #1e293b;
}

.select-org i {
  width: 24px;
  height: 24px;
  background: #1e293b;
  color: #fff;
  font-style: normal;
  font-size: 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-org svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

/* donate button */

.donate-btn {
  width: 100%;
  padding: 16px 0;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(239, 68, 68, 0.2);
  transition: 0.2s;
}

.donate-btn:hover {
  background: #dc2626;
}

.donate-btn:active {
  transform: scale(0.98);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

/* ListenerHero */
.ListenerHero {
  position: relative;
  background-color: #0f172a;
  padding: 96px 0;
  overflow: hidden;
  color: var(--clr-white);
}

.ListenerBgCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ---------- main layer (hidden md:block absolute inset-0 pointer-events-none) ---------- */

.FloatingAvatarsLayer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  pointer-events: none;
}

@media (min-width: 768px) {
  .FloatingAvatarsLayer {
    display: block;
  }
}


.FloatingAvatar {
  position: absolute;
}

.pos1 {
  top: 15%;
  left: 10%;
}

.pos2 {
  top: 25%;
  right: 15%;
}

.pos3 {
  bottom: 20%;
  left: 15%;
}

.pos4 {
  bottom: 30%;
  right: 10%;
}

.pos5 {
  top: 10%;
  left: 45%;
}

.FloatingAvatarInner {
  position: relative;
  border-radius: 50%;
  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  transition: transform 0.5s ease;
  pointer-events: auto;
}

.FloatingAvatarInner:hover {
  transform: scale(1.1);
}

.FloatingAvatarInner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.size-16 {
  width: 64px;
  height: 64px;
}

.size-14 {
  width: 56px;
  height: 56px;
}

.size-20 {
  width: 80px;
  height: 80px;
}

.size-12 {
  width: 48px;
  height: 48px;
}


.FloatingOverlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background: linear-gradient(to top right,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0));
}


.float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.float-medium {
  animation: floatMedium 4.5s ease-in-out infinite;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatMedium {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.ListenerContent {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.ListenerIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.ListenerIcon:hover {
  transform: rotate(6deg);
}

.ListenerIcon svg {
  width: 32px;
  height: 32px;
  color: var(--clr-secondary);
}

.ListenerContent h2 {
  font: 800 48px/1.1 var(--font-family-primary);
  color: var(--clr-white);
  margin-bottom: 24px;
}

.ListenerContent h2 span {
  background: var(--clr-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ListenerContent p {
  font: 500 20px/1.4 var(--font-family-primary);
  color: rgba(148, 163, 184, 1);
  margin-bottom: 40px;
}

.ListenerContent .button-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ListenerContent .ListenerFootnote {
  margin: 32px 0 0;
  font: 500 12px/1.4 var(--font-family-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(148, 163, 184, 0.7);
}

/* SiteFooter */
.SiteFooter {
  padding: 80px 0 30px;
  background: #0f172a;
  border-top: 1px solid #1e293b99;
}

.FooterBottom {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #1e293b99;
}

.FooterBottom p {
  text-align: center;
  font: 400 16px/1.6 var(--font-family-primary);
  color: var(--clr-slate-200);
}

.FooterBrand {
  padding-right: 20px;
}

.FooterBrand img {
  max-width: 230px;
  object-fit: contain;
  margin-bottom: 20px;
}

.FooterBrand p {
  margin-bottom: 20px;
  font: 400 16px/1.6 var(--font-family-primary);
  color: var(--clr-slate-200);
}

.SiteFooter h4 {
  margin-bottom: 12px;
  font: 600 18px/1.2 var(--font-family-primary);
  color: var(--clr-white);
  text-transform: capitalize;
}

.FooterLinkGroup ul li {
  margin-bottom: 10px;
}

.FooterLinkGroup ul li:last-child {
  margin: 0;
}

.FooterLinkGroup ul li a {
  font: 400 16px/1.6 var(--font-family-primary);
  color: var(--clr-slate-200);
}

.FooterLinkGroup ul li a:hover {
  color: var(--clr-primary);
}

.SocialIcons {
  display: flex;
  gap: 15px;
}

.SocialIcons .SocialIcon {
  font-size: 24px;
  color: var(--clr-slate-200);
}

.SocialIcon:hover {
  color: var(--clr-primary);
}

.SocialWrap a {
  display: block;
  margin-bottom: 20px;
  font: 400 16px/1.6 var(--font-family-primary);
  color: var(--clr-slate-200);
}

.SocialWrap a:hover {
  color: var(--clr-primary);
}

/* InnerHero */
.InnerHero {
  min-height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.InnerHero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, .6), rgba(15, 23, 42, .4), rgba(15, 23, 42, .9));
}

/*  */
.ChannelSection {
  padding: 80px 0;
}

.ChannelHeader {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 50px;
}

.ChannelSection h2 {
  margin-bottom: 12px;
  font: 800 48px/1.1 var(--font-family-primary);
  letter-spacing: -0.5px;
  color: var(--clr-slate-900);
}

.ChannelSection h2 span {
  background: var(--clr-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.ChannelSection p {
  margin-bottom: 0;
  font: 400 16px/1.6 var(--font-family-primary);
  color: var(--clr-slate-600);
}

.ChannelGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
}

/*  */
.ChannelCard {
  padding: 24px;
  background: var(--clr-slate-50);
  border: 1px solid var(--clr-slate-100);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ChannelCardHead {
  display: flex;
  gap: 10px;
  align-items: center;
  /* margin-bottom: 20px; */
}

.ChannelCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ChannelIcon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--clr-slate-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  box-shadow: var(--shadow-icon);
}

.ChannelIcon img {
  object-fit: cover;
  object-position: center;
}

.ChannelIcon i {
  font-size: 24px;
}

.ChannelText h3 {
  margin-bottom: 0px;
  font: 700 20px/1.2 var(--font-family-primary);
  color: var(--clr-slate-900);
}

.ChannelText p {
  margin: 0 0;
  font: 400 12px/1.6 var(--font-family-primary);
  color: #64748b;
}

.ChannelInfo {
  flex: 1;
}

.ChannelInfo p {
  margin: 0 0 12px;
  font: 400 16px/1.6 var(--font-family-primary);
  color: #64748b;
}

.ChannelInfo a {
  width: 100%;
  margin-top: auto;
}

/*  */
.SectionFmRadio {
  padding: 80px 0;
  background: var(--clr-slate-50);
}

.FmRadioWrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;

  padding: 60px 70px;
  border-radius: 40px;

  background: var(--clr-white);
  box-shadow: 0 20px 40px #00000012;
}

/* LEFT CONTENT */

.FmRadioContent h2 {
  margin-bottom: 16px;
  font: 800 44px/1.15 var(--font-family-primary);
  letter-spacing: -0.5px;
  color: var(--clr-slate-900);
}

.FmRadioContent p {
  max-width: 520px;
  margin-bottom: 22px;
  font: 400 16px/1.7 var(--font-family-primary);
  color: var(--clr-slate-600);
}

.FmDate {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font: 500 14px/1 var(--font-family-primary);

  color: var(--clr-white);
  background: var(--clr-primary-gradient);
}


.FmRadioImage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.FmRadioImage img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 15px 30px #00000018;
}

/*  */
.updates-section {
  padding: 80px 0;
  background: #f4f2fb;
}

.updates-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 30px;
}

.update-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.update-img img {
  width: 260px;
  height: 100%;
  object-fit: cover;
}

.update-content {
  padding: 25px;
}

.update-content h3 {
  margin: 0 0 5px;
  font-size: 22px;
}

.update-content .date {
  font-size: 14px;
  color: #8b86a3;
}

.update-content p {
  margin: 15px 0;
  color: #555;
}

.updates-sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.updates-sidebar h4 {
  margin-bottom: 20px;
}

.updates-sidebar ul {
  list-style: none;
  padding: 0;
}

.updates-sidebar li {
  margin-bottom: 15px;
}

.updates-sidebar span {
  display: block;
  font-size: 13px;
  color: #8b86a3;
}

/*  */
.prayer-form-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}