:root {
  --mirchi-red: #e60023;
}
body {
  padding-top: 93px; /* adjust to your navbar height */
}
/* ================= HEADER ================= */
.mirchi-navbar {
  position: fixed; /* changed from sticky */
  top: 0;
  left: 0;
  width: 100%; /* make it full width */
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

.navbar {
  background: #fff;
  border-bottom: 3px solid var(--mirchi-red);
}
.navbar-brand img {
  height: 65px;
}
.nav-link {
  font-weight: 600;
  color: #ff0801 !important;
}
#active {
  background-color: #ff0801;
  color: #fff !important;
  border-radius: 7px;
  padding-left: 15px;
  padding-right: 15px;
}
.nav-link:hover {
  color: var(--mirchi-red) !important;
}

/* ================= SLIDER ================= */

.carousel-item {
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: #ff0801;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 767px) {
  /* REMOVE RED BACKGROUND */
  .carousel-item {
    background: transparent;
    height: auto;
  }

  .carousel-item img {
    height: auto;
    object-fit: contain;
  }
  .slider-wrapper {
    padding: 0;
  }
}

.tune-section {
  background: #ff0801;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
/* LIGHT GLOW */
.tune-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
}
/* TITLE */
.tune-title {
  position: relative;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* LEFT ALIGN */
  gap: 14px;
  margin: 0;
  padding-left: 15px;
}
/* MAIN TEXT */
.tune-title span {
  font-size: 25px;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* SUB TEXT */
.tune-title small {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 3px;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
  .tune-title {
    flex-direction: row;
    align-items: flex-start; /* LEFT on mobile too */
    gap: 6px;
  }
  .tune-title span{
    font-size: 14px;
  }
  #rj{
    margin-top: 20px;
  }
}
.mirchi-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.mirchi-img {
  width: 100%;
  height: auto;
  display: block;
}

.mirchi-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.play-box {
  width: 48px;
  height: 48px;
  background: #e50914;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-box:hover {
  transform: scale(1.1);
}

.station-info {
  color: #fff;
  line-height: 1.2;
}

.station-info .city {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.station-info .freq {
  font-size: 15px;
  background: #fff;
  color: #000;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
  margin-top: 4px;
}
.news-card {
  background: #fff;
  margin-top: 7px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.news-card .tag {
  display: inline-block;
  background: #e50914;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  margin: 10px;
}

.news-card h5 {
  font-size: 14px;
  font-weight: 600;
  padding: 0 10px 12px;
  margin: 0;
  line-height: 1.4;
}

.news-card h5:hover {
  text-decoration: underline;
}
.shows-card {
  height: 350px;
  border-radius: 16px;
  margin-top: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.shows-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

/* Footer */
.shows-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  z-index: 1;
}

.shows-footer h5 {
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
}
.video-thumb {
  height: 250px;
  border-radius: 14px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  object-fit: fill; /* this does NOT apply to background images */
}

.video-player {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.video-title {
  font-size: 16px;
}
/* Overlay */
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.45); */
  z-index: 1;
}

/* Play button */
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.play-btn i {
  font-size: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video stays in same frame */
.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 3;
}
.facebook-embed-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.fb-page-responsive {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 14px;
}

.fb-page-responsive iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}
.social-icons span {
  font-weight: 600;
  margin-right: 10px;
  font-size: 16px;
}

.social-icons a {
  color: #000;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #e60023; /* Mirchi red hover */
}
.gana {
  margin-top: 10px;
}
.gana-slider {
  position: relative;
  width: 100%;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

/* Scroll area */
.gana-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gana-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Items container */
.gana-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

/* One item */
.gana-item {
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
}

.gana-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.gana-item img:hover {
  transform: scale(1.05);
}

/* Arrows */
.arrow {
  background-color: #ff0801;
  color: #fff;
  border: none;
  font-size: 13px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}
.arrow.left {
  margin-right: 8px;
}
.arrow.right {
  margin-left: 8px;
}

/* Tablet */
@media (max-width: 992px) {
  .gana-item {
    flex: 0 0 calc(100% / 4);
    max-width: calc(100% / 4);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gana-item {
    flex: 0 0 calc(100% / 2);
    max-width: calc(100% / 2);
  }
}
.movies {
  margin-top: 10px;
}
.movies .song-name span {
  font-size: 20px;
  letter-spacing: 0.7px;
}
.movies a {
  color: #313131;
  text-decoration: none;
}
.bg-icons {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-icons i {
  position: absolute;
  opacity: 0.15;
  animation: rotateFloat linear infinite;
}

/* ICON POSITIONS & COLORS */
.bg-icons i:nth-child(1) {
  top: 10%;
  left: 15%;
  font-size: 45px;
  color: #ff004f;
  animation-duration: 22s;
}

.bg-icons i:nth-child(2) {
  top: 30%;
  left: 75%;
  font-size: 60px;
  color: #00eaff;
  animation-duration: 30s;
}

.bg-icons i:nth-child(3) {
  top: 55%;
  left: 10%;
  font-size: 50px;
  color: #00ff7f;
  animation-duration: 26s;
}

.bg-icons i:nth-child(4) {
  top: 70%;
  left: 80%;
  font-size: 48px;
  color: #ffc107;
  animation-duration: 24s;
}

.bg-icons i:nth-child(5) {
  top: 45%;
  left: 45%;
  font-size: 70px;
  color: #ff6b6b;
  animation-duration: 35s;
}

.bg-icons i:nth-child(6) {
  top: 15%;
  left: 85%;
  font-size: 42px;
  color: #9d4edd;
  animation-duration: 28s;
}

/* ROTATE + FLOAT ANIMATION */
@keyframes rotateFloat {
  from {
    transform: rotate(0deg) translateY(0);
  }
  to {
    transform: rotate(360deg) translateY(-40px);
  }
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #ff004f;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition:
    background 0.15s ease,
    transform 0.08s;
}

.custom-cursor.white {
  background: #fff;
}

.custom-cursor.click {
  transform: translate(-50%, -50%) scale(1.8);
  opacity: 0.6;
}

/* ================= FOOTER ================= */
footer {
  background: #111;
  color: #bbb;
}
footer h5,
footer h6 {
  color: #fff;
}
footer a {
  color: #bbb;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
.footer-top {
  border-bottom: 1px solid #333;
}
.social-icons i {
  font-size: 20px;
  margin-right: 14px;
  cursor: pointer;
}
.social-icons i:hover {
  color: var(--mirchi-red);
}
.app-btn {
  border: 1px solid #444;
  color: #fff;
}
.app-btn:hover {
  background: var(--mirchi-red);
  border-color: var(--mirchi-red);
}
