/* MSHD Global Theme Styles */

:root {
  --mshd-maroon: #851c3b;
  --mshd-maroon-light: #a52345;
  --mshd-maroon-gradient: linear-gradient(135deg, #851c3b 0%, #a52345 50%, #d13a5c 100%);
  --mshd-dark-bg: #1a1d21;
}

/* Global Shimmer Overlay */
#shimmer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.dark-style #shimmer-overlay {
  background: #1a1d21;
}

.shimmer-loader {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.shimmer-loader span {
  width: 15px;
  height: 15px;
  background: var(--mshd-maroon-gradient);
  border-radius: 50%;
  animation: shimmer-bounce 1.4s infinite ease-in-out;
}

.shimmer-loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.shimmer-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes shimmer-bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.shimmer-text {
  color: #566a7f;
  font-size: 14px;
  font-weight: 500;
}

.dark-style .shimmer-text {
  color: rgba(255, 255, 255, 0.7);
}



/* Global Button Styles */
.follow-btn,
.play-music-btn,
.btn-primary-mshd {
  background-color: var(--mshd-maroon) !important;
  border-color: var(--mshd-maroon) !important;
  color: #fff !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.follow-btn:hover,
.play-music-btn:hover,
.btn-primary-mshd:hover {
  background-color: var(--mshd-maroon-light) !important;
  transform: scale(1.05);
}

/* Follow Button Specifics */
.follow-btn {
  display: flex !important;
  align-items: center;
  padding: 2px 8px 2px 2px !important;
}

.follow-count {
  background-color: #fff;
  color: #000;
  border-radius: 500px;
  padding: 2px 6px;
  margin-right: 8px;
  font-size: 10px;
}
/*15*/
.content-wrapper.mshd-homepage {
    margin: 20px 0;
}
/**/

.follow-btn.active {
  background-color: #f0fff0 !important;
  color: green !important;
  border-color: green !important;
}

.follow-btn.active .follow-count {
  background-color: green;
  color: #fff;
}

/* Player UI Components */
.play-btn-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(72.47deg, #26050c 22.16%, rgb(126, 58, 78) 76.47%) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 5px 20px rgba(133, 28, 59, 0.5);
  transition: transform 0.3s ease;
}

.play-btn-circle:hover {
  transform: scale(1.1);
}

.track-icon {
  width: 40px;
  height: 40px;
  background: var(--mshd-maroon-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Utility Classes */
.mshdlogo {
  background: url('/images/mshdlogo.fw.png') no-repeat center;
  background-size: contain;
  width: 38px;
  height: 38px;
}

.skeleton-loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
}

.text-maroon {
  color: var(--mshd-maroon) !important;
}

.bg-maroon {
  background-color: var(--mshd-maroon) !important;
}

/* Persistent Bottom Player */
.persistent-player {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e2235 0%, #2a2f3a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transition: bottom 0.3s ease;
}

.persistent-player.active {
  bottom: 0;
}

.persistent-player .player-artwork {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.persistent-player .player-info {
  flex: 1;
  min-width: 0;
}

.persistent-player .player-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.persistent-player .player-artist {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin: 0;
}

.persistent-player .player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.persistent-player .player-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s ease;
}

.persistent-player .player-btn:hover {
  color: var(--mshd-maroon);
}

.persistent-player .player-btn.play-btn {
  width: 45px;
  height: 45px;
  background: var(--mshd-maroon-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.persistent-player .player-btn.play-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Up Next Queue Panel */
.up-next-panel {
  position: absolute;
  bottom: 100%;
  right: 20px;
  width: 320px;
  max-height: 400px;
  background: linear-gradient(145deg, #2a2f3a 0%, #1e2235 100%);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: none;
  z-index: 10000;
}

.up-next-panel.active {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.up-next-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--mshd-maroon-gradient);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.up-next-list {
  max-height: 300px;
  overflow-y: auto;
}

.up-next-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.up-next-item:hover {
  background: rgba(133, 28, 59, 0.2);
}

.up-next-thumb {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
}

.up-next-info {
  flex: 1;
  min-width: 0;
}

.up-next-title {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Music Card Utilities */
.music-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.play-overlay-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.card:hover .play-overlay-center {
  opacity: 1;
}

.owner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mshd-maroon);
}

/* Event Page Premium Styles */
.border-top.border-maroon {
  border-top: 3px solid var(--mshd-maroon) !important;
}

.event-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  background: #000;
}

.event-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .event-image-wrapper img {
  transform: scale(1.1);
}

.cardposition-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.55);
  /* Consistent Halka background */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  transition: all 0.3s ease;
  z-index: 5;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.card:hover .cardposition-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.btn-maroon {
  background-color: var(--mshd-maroon) !important;
  color: #fff !important;
  border: none !important;
  transition: all 0.3s ease;
}

.btn-maroon:hover {
  background-color: var(--mshd-maroon-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(133, 28, 59, 0.3);
}

/* Global Maroon Helpers */
.text-maroon {
  color: var(--mshd-maroon) !important;
}

.bg-maroon {
  background-color: var(--mshd-maroon) !important;
}

/* Nav Pills Maroon Branding */
.nav-pills .nav-link.active,
.nav-pills .nav-link.active:hover,
.nav-pills .nav-link.active:focus {
  background-color: var(--mshd-maroon) !important;
  color: #fff !important;
  box-shadow: 0 2px 4px 0 rgba(133, 28, 59, 0.4);
}

.nav-pills .nav-link:hover {
  color: var(--mshd-maroon) !important;
}

/* Accordion Maroon Branding */
.accordion-button:not(.collapsed) {
  background-color: rgba(133, 28, 59, 0.05) !important;
  color: var(--mshd-maroon) !important;
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23851c3b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Sidebar Active Indicator Migration */
.layout-wrapper:not(.layout-horizontal) .bg-menu-theme .menu-inner>.menu-item.active:before {
  background-color: var(--mshd-maroon) !important;
}

/* Ensure Active Text is visible and NO underline on hover */
.bg-menu-theme .menu-inner .menu-item .menu-link,
.bg-menu-theme .menu-inner .menu-item .menu-link:hover,
.bg-menu-theme .menu-inner .menu-item .menu-link:focus {
  text-decoration: none !important;
}

.dark-style .bg-menu-theme .menu-inner>.menu-item.active>.menu-link {
  color: #fff !important;
}



.bg-maroon-opacity {
  background: rgba(133, 28, 59, 0.15) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-maroon-opacity i {
  color: #fff !important;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*.custom-scrollbar::-webkit-scrollbar {*/
/*  width: 5px;*/
/*}*/

/*.custom-scrollbar::-webkit-scrollbar-track {*/
/*  background: rgba(0, 0, 0, 0.05);*/
/*}*/

/*.custom-scrollbar::-webkit-scrollbar-thumb {*/
/*  background: var(--mshd-maroon);*/
/*  border-radius: 10px;*/
/*}*/
.mshd-homepage #vertical-example {
    overflow: hidden !important;
    position: relative !important;
    height: 526px !important;
}





/* Home Page Styles extracted from home.php */

.slick-list.draggable .slick-track {
  margin: 0;
}

.dark-style p.talent-text {
  color: #000 !important;
}

/* Scoped .w-100 override to avoid breaking global layout */
.mshd-homepage .w-100 {
  height: 120px;
  object-fit: fill;
}

.mshd-homepage .space-padding {
  padding-bottom: 7px;
}



.headbg {
  background: #33374d;
}

.scrolldiv {
  height: 450px;
  overflow-y: scroll;
  display: hidden;
}

.cardposition {
  position: absolute;
  bottom: 0px;
  background: #000;
  opacity: 0.9;
  width: 100%;
  --bs-card-spacer-y: 0.3rem;
}

.custom-dropdown {
  color: #fff !important;
}

.custom-dropdown .dropdown-item {
  color: #fff !important;
}

.custom-dropdown .dropdown-item:hover {
  background-color: #44475b;
  color: #fff !important;
}


.search-box input::placeholder {
  color: #f8d7da;
}

.search-box button {
  border: 1px solid white;
  color: white;
}

.studio-btn {
  color: white;
  border: 1px solid white;
}

.studio-btn:hover {
  color: #fff;
}

.studio-dropdown {
  background-color: #e74c3c;
}

.studio-dropdown .dropdown-item {
  color: white;
}

.studio-dropdown .dropdown-item:hover {
  background-color: #c0392b;
  color: #fff;
}

.slick-next {
  right: 0px !important;
}

.slick-prev {
  left: 0px !important;
}

.slick-prev,
.slick-next {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5d5d5dbd !important;
  color: #ffffff;
  font-size: 12px;
  padding: 0;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  border: none;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'FontAwesome';
  font-size: 9px;
  color: #ffffff;
  line-height: 1;
}

.slick-prev:before {
  content: '\f053';
}

.slick-next:before {
  content: '\f054';
}

.top-bar .d-flex.align-items-center {
  gap: 12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

.slider-container {
  width: 100%;
  float: left;
}

.ad-box {
  width: 13%;
  background-color: #2a2f3a;
  color: white;
  text-align: center;
  line-height: 400px;
  float: right;
}

.card1 {
  padding: 6px !important;
}

.slider .slick-slide:last-child .card1 {
  margin-right: 0;
}

.lost-found-slider .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

.lost-found-slider .card {
  margin: 0 auto;
  height: 100%;
}

#lost_found_slider img.img-fluid.rounded-3.mb-3 {
  height: 237px;
  object-fit: contain;
}

.ad {
  background: #fff;
  color: #000;
  padding: 20px;
  border: 1px solid #ccc;
  height: 316px;
  box-sizing: border-box;
}

.card.profile-card {
  border-radius: 8px;
  box-shadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 0.20);
}

#new-cards .card {
  border: 1px solid #ffffff !important;
}

.card-img-cotainer {
  height: 210px;
  overflow: hidden;
}

.card-img-cotainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.card-text {
  font-size: 12px;
}

.models-slider .waves-light {
  font-size: 12px;
  padding: 3px 6px;
}



.card-body .talent-text {
  margin: 0 !important;
}

.talent-text i {
  font-size: 13px;
  color: maroon;
}

img.card-logo {
  height: 40px;
}

.thumbnails {
  position: absolute;
  top: 6%;
  right: 11px;
  overflow: hidden;
}

.card-image {
  position: relative;
}

.mainImage-img {
  height: 100%;
  width: 100%;
}

.mshd-homepage .header-text {
  line-height: 15px;
  color: #000;
}

.mshd-homepage .brand-name {
  font-size: 15px;
}

.mshd-homepage .talent-text {
  font-size: 10px;
  margin-top: 10px;
  color: #000;
}

.mshd-homepage .post-date {
  font-size: 10px;
  color: #000;
}

.agency-contact-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
  color: #2f3349;
}

.mshd-homepage .card-content {
  padding: 15px;
  background-color: #fff;
  position: relative;
}

.mshd-homepage .card-footer-custom {
  padding: 20px;
  background-color: #fff;
}

img.thumbnail-img {
  height: 30px;
  width: 37px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.mshd-homepage .footer-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #000;
}

.mshd-homepage .footer-stats span {
  cursor: pointer;
}


.dark-style .reaction-bar {
  background-color: #232333 !important;
}

/* Music Page Specific Refactor */
.music-header {
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  background: var(--mshd-maroon-gradient);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark-style .music-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.search-filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  align-items: center;
}

.dark-style .search-filter-bar {
  background: #2b2c40;
  box-shadow: none;
}

.search-input {
  flex: 1;
  min-width: 250px;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
}

.filter-select {
  min-width: 150px;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23697a8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.light-style .section-title {
  color: #566a7f;
}

.dark-style .section-title {
  color: #fff;
}

.section-title i {
  color: var(--mshd-maroon);
}

.music-card-item .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.music-card-item:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.dark-style .music-card-item .card {
  background-color: #2b2c40;
  border: 1px solid #444564;
}

.dark-style .music-card-item .card-header {
  border-bottom: 1px solid #444564;
  background: transparent;
}

.dark-style .music-card-item .card-body {
  background: transparent;
}

.no-songs-message {
  text-align: center;
  padding: 5rem 2rem;
  opacity: 0.7;
}

.no-songs-message i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--mshd-maroon);
}


.mshd-homepage .footer-stats i {
  font-size: 12px;
}

small.talent-summary {
  font-size: 10px;
}

.media-count.text-end.mt-2.pe-2 {
  position: absolute;
  top: 81%;
  right: 0;
  color: #ffffff;
  line-height: 9px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.75);
}

small.media-stats {
  font-weight: 900;
  color: #ffffff;
  font-size: 8px;
}

.card1 .card {
  box-shadow: none;
}

.mshd-homepage nav.navbar {
  box-shadow: 0 0 2px 0 rgb(0 0 0 / 22%) !important;
  border-radius: 12px;
}

.mshd-homepage .search-container .form-control {
  display: block;
  width: 100%;
  padding: 0.422rem 0.875rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  height: 31px;
  color: #6f6b7d;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dbdade;
  appearance: none;
  border-radius: 25px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.mshd-homepage button.follow-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  outline: none !important;
  border: 1px solid #000000ff;
  font-size: 12px;
  background: #000;
  color: #ffffffff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 2px;
  padding-right: 8px;
}

.follow-count {
  background-color: #fff;
  color: #000;
  border-radius: 500px;
  padding: 2px 6px;
  margin-right: 8px;
  font-size: 10px;
}

.follow-btn.active {
  border-color: green;
  background-color: #dbdbdb61;
  color: green;
}

.claim-btn {
  position: absolute;
  top: 9px;
  right: 15px;
  outline: none;
  border: 1px solid #515151;
  font-size: 12px;
  background: transparent;
  color: #515151;
  border-radius: 25px;
}

.claim-btn.active {
  border-color: green;
  color: green;
}

.mshd-homepage .card-content .talent-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1 !important;
  line-clamp: 1 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

.mshd-homepage .card .talent-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mshd-homepage .card a {
  color: #000;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font-size: 10px;
}

.lost-found-slider .waves-light {
  font-size: 12px;
}

.alert-success {
  background-color: #ddf6e8;
  border-color: #ddf6e8;
  color: #28c76f;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 98px;
  font-size: 9px;
  padding: 6px;
}

.claimed {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: #fff !important;
  cursor: not-allowed !important;
  opacity: 0.8 !important;
  font-size: 20px;
}

.search-box {
  position: relative;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-container .clear-icon {
  display: none;
  /* Hidden by default */
}

.search-container .clear-icon:hover {
  color: #851c3b;
  /* Theme color on hover */
}

.search-container .d-none {
  display: none !important;
}

.card.profile-card {
  border-radius: 8px;
}

.card-img-cotainer {
  height: 210px;
  overflow: hidden;
}

.card-img-cotainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}



.talent-text i {
  font-size: 13px;
  color: maroon;
}

img.card-logo {
  height: 40px;
}

.card-image {
  position: relative;
}

.mainImage-img {
  height: 100%;
  width: 100%;
}

.mshd-homepage .header-text {
  line-height: 15px;
  color: #000;
}

.mshd-homepage .brand-name {
  font-size: 15px;
  font-weight: 700;
}

.mshd-homepage .talent-text {
  font-size: 10px;
  margin-top: 10px;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-content {
  padding: 15px;
  background-color: #fff;
  position: relative;
}

.card-footer-custom {
  padding: 15px;
  background-color: #f2f2f2;
  border-top: 2px solid #e6b7c6;
}

.card-img-cotainer {
  border-top: 2px solid #e6b7c6;
  border-bottom: 2px solid #e6b7c6;
}

.footer-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #000;
}

.footer-stats i {
  font-size: 12px;
  color: #851c3b;
}

small.talent-summary {
  font-size: 10px;
  color: #666;
}

button.follow-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  outline: none !important;
  border: 1px solid #000;
  font-size: 12px;
  background: #000;
  color: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 2px;
  padding-right: 8px;
  transition: all 0.3s ease;
}

.follow-count {
  background-color: #fff;
  color: #000;
  border-radius: 500px;
  padding: 2px 6px;
  margin-right: 8px;
  font-size: 10px;
}

.follow-btn.active {
  border-color: green;
  background-color: #f0fff0;
  color: green;
}

.follow-btn.active .follow-count {
  background-color: green;
  color: #fff;
}

.nav-container i {
  color: maroon;
  background-color: #fff;
  box-shadow: 0 0 2px 0 rgb(0 0 0 / 22%) !important;
  height: 35px;
  font-size: 14px;
  align-items: center;
  display: flex;
  width: 35px;
  justify-content: center;
  border-radius: 500px;
  margin-right: 10px;
}

.filter-container {
  margin-left: 10px;
}

.filter-container select.form-control {
  height: 31px;
  font-size: 13px;
  border-radius: 25px;
  padding: 0 15px;
}

@media screen and (max-width: 768px) {
  .filter-container {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .presenters-slider .card1 {
    padding: 0 5px;
  }
}


span.total-presenters.transition-all {
  padding: 25px;
}

.d-flex.align-items-center.g-3 i.fas.fa-search-location {
  margin-right: 10px;
  font-size: 20px;
}

.d-flex.align-items-center.g-3 i.fas.fa-users {
  margin-right: 10px;
  font-size: 20px;
}

.d-flex.align-items-center.g-3 i.fa-solid.fa-user-large {
  margin-right: 10px;
  font-size: 20px;
}

a.navbar-brand {
  margin-right: 5px !important;
}

@media screen and (max-width: 1280px) {
  .artist-img {
    height: 203px !important;
  }

  .card-img-top {
    height: 186px !important;
  }

  .small {
    font-size: 10px !important;
  }

  .news-img {
    height: 198px !important;
  }

  span {
    font-size: 9px !important;
  }

  .waves-effect {
    font-size: 10px !important;
    padding: 4px !important;
  }
}

@media screen and (max-width: 576px) {
  .top-bar.d-flex.justify-content-between.px-4 {
    padding: 10px;
    margin-left: 10px;
    align-items: flex-start !important;
    justify-content: center !important;
    flex-direction: column;
    gap: 10px;
  }

  .waves-effect {
    font-size: 10px !important;
    padding: 4px !important;
  }

  .small {
    font-size: 10px !important;
  }

  span {
    font-size: 10px !important;
  }

  .artist-img {
    height: 219px !important;
  }

  .card-img-top {
    height: 205px !important;
  }

  .news-img {
    height: 208px !important;
  }
}

/* Prevent FOUC (Flash of Unstyled Content) for Slick Sliders */
.slider:not(.slick-initialized) {
  display: flex;
  overflow: hidden;
}

.slider:not(.slick-initialized)>div {
  display: block;
  width: 25%;
  /* Default 4 slides */
  flex-shrink: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .slider:not(.slick-initialized)>div {
    width: 33.33%;
    /* 3 slides */
  }
}

@media screen and (max-width: 992px) {
  .slider:not(.slick-initialized)>div {
    width: 50%;
    /* 2 slides */
  }
}

@media screen and (max-width: 576px) {
  .slider:not(.slick-initialized)>div {
    width: 100%;
    /* 1 slide */
  }
}

/* Music Card Styles from music_public.php */
.track-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #851c3b 0%, #e94560 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.play-overlay-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.card-img-cotainer:hover .play-overlay-center {
  opacity: 1;
}

.play-btn-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #851c3b 0%, #e94560 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 5px 20px rgba(133, 28, 59, 0.5);
  transition: transform 0.3s ease;
}

.play-btn-circle:hover {
  transform: scale(1.1);
}

.music-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.owner-section {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.owner-section:hover {
  opacity: 0.8;
}

.owner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #851c3b;
}

.owner-info {
  display: flex;
  flex-direction: column;
}

.owner-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.upload-date-small {
  font-size: 10px;
  color: #6c757d;
}

.upload-date-small i {
  color: #851c3b;
}

.reaction-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.reaction-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 20px;
  transition: all 0.2s ease;
}



.reaction-item i {
  font-size: 14px;
}

.track-title {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.dark-style .owner-name,
.dark-style .track-title,
.dark-style .talent-text {
  color: #fff !important;
}

.dark-style .owner-section {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dark-style .upload-date-small,
.dark-style .reaction-item {
  color: rgba(255, 255, 255, 0.6);
}

/* Podcast Specific Styles */
.video-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  border-radius: 50%;
  padding: 6px;
  font-size: 12px;
  z-index: 10;
  transition: background 0.2s ease;
}

.video-icon:hover {
  background: rgba(0, 0, 0, 0.9);
}

.talent-details {
  font-size: 10px;
  margin-top: 5px;
  color: #333;
}

.dark-style .talent-details {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Stacked Header Styles */
.header-icon-container {
  background: #851c3b;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.search-box-wrapper {
  min-width: 250px;
}

.navbar-brand {
  color: #333;
  letter-spacing: 1px;
}

.dark-style .navbar-brand {
  color: #fff;
}

/* Artist/Music Card Interaction Styles */
.music-card-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.play-btn-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #851c3b 0%, #e94560 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(133, 28, 59, 0.4);
  transition: all 0.3s ease;
}

.play-overlay-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.card-img-cotainer:hover .play-overlay-center {
  opacity: 1;
}

.owner-section {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.owner-section:hover {
  background: rgba(133, 28, 59, 0.05);
}

.dark-style .owner-section:hover {
  background: rgba(255, 255, 255, 0.05);
}

.reaction-item {
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px 8px;
  border-radius: 15px;
}



.reaction-item.active i {
  color: #e94560;
}

.music-duration-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
}


.gallery-header {
  padding: 15px 20px;
  background: #1a1c24;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #434968;
}

.gallery-header h4 {
  color: #fff;
  margin: 0;
  font-size: 18px;
}

.gallery-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1051;
  transition: all 0.2s;
}

.gallery-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-footer {
  padding: 10px 20px;
  background: #1a1c24;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #434968;
}

.reaction-icons {
  display: flex;
  gap: 0px;
  color: #a3a4cc;
}

.reaction-icons i {
  cursor: pointer;
  transition: color 0.2s;
}

.reaction-icons i:hover {
  color: #fff;
}

.inline-gallery-container {
  height: 70vh;
  background: #000;
}

.gallery-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
}

.gallery-loader.hidden {
  display: none;
}

/* News Page Styles extracted from NewsPublic.php */
.mshd-news {
  --primary-gradient: linear-gradient(135deg, #851c3b 0%, #e94560 100%);
  --dark-bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --card-hover-shadow: 0 20px 40px rgba(133, 28, 59, 0.15);
}

.mshd-news .search-filter-bar {
  background: #fff;
  border-radius: 12px;
  padding: 8px 15px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  width: 100%;
}

.dark-style .mshd-news .search-filter-bar {
  background: #2b2c40;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mshd-news .search-filter-bar .search-input {
  width: 400px;
  max-width: 100%;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  padding: 8px 20px;
  color: #566a7f;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dark-style .mshd-news .search-filter-bar .search-input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mshd-news .search-filter-bar .search-input:focus {
  outline: none;
  border-color: #851c3b;
  box-shadow: 0 0 10px rgba(133, 28, 59, 0.1);
}

.mshd-news .search-filter-bar .filter-select {
  background: #fff;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  padding: 8px 15px;
  color: #566a7f;
  font-size: 14px;
  cursor: pointer;
  min-width: 140px;
}

.dark-style .mshd-news .search-filter-bar .filter-select {
  background: #2b2c40;
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.mshd-news .section-title-premium {
  font-size: 24px;
  font-weight: 700;
  color: var(--bs-heading-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mshd-news .section-title-premium i {
  color: #851c3b;
  font-size: 20px;
}

.mshd-news .premium-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 35px;
  margin-top: 25px;
}

.mshd-news .premium-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.mshd-news .premium-card:hover {
  box-shadow: var(--card-hover-shadow);
}

.mshd-news .card-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.mshd-news .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mshd-news .premium-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.mshd-news .category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 22px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 5px 15px rgba(133, 28, 59, 0.3);
}

.mshd-news .premium-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mshd-news .premium-card-title {
  font-size: 26px;
  font-weight: 800;
  color: #1e2235;
  margin-bottom: 18px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.mshd-news .premium-card:hover .premium-card-title {
  color: #851c3b;
}

.mshd-news .premium-card-excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mshd-news .premium-card-footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mshd-news .meta-info {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mshd-news .meta-info i {
  color: #851c3b;
  margin-right: 5px;
}

.mshd-news .meta-stats {
  display: flex;
  gap: 12px;
}

.mshd-news .stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666;
  transition: all 0.2s;
}

.mshd-news .stat-item:hover {
  color: #851c3b;
}

.mshd-news .stat-item i {
  font-size: 16px;
  opacity: 0.7;
}


.mshd-news .loader-dots span {
  width: 15px;
  height: 15px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  animation: dot-pulse 1.4s infinite ease-in-out;
}

.mshd-news .loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.mshd-news .loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Dark Mode Adjustments */
.dark-style .mshd-news .premium-card {
  background: #2b2c40;
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark-style .mshd-news .premium-card-title {
  color: #fff;
}

.dark-style .mshd-news .premium-card-excerpt {
  color: rgba(255, 255, 255, 0.6);
}

.dark-style .mshd-news .meta-info,
.dark-style .mshd-news .stat-item {
  color: rgba(255, 255, 255, 0.5);
}

.dark-style .mshd-news .premium-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .mshd-news .premium-news-grid {
    grid-template-columns: 1fr;
  }
}

/* Podcasts Page Styles extracted from podcasts.php */
.mshd-podcasts .w-100 {
  width: 250px !important;
  height: 120px;
  object-fit: fill;
}

.mshd-podcasts .space-padding {
  padding-bottom: 7px;
}

.mshd-podcasts .cardbg {
  background: #33374d;
  border: 1px solid #434968 !important;
  object-fit: contain;
}

.mshd-podcasts .cardborder {
  border: 1px solid #434968 !important;
}

.mshd-podcasts .headbg {
  background: #33374d;
}

.mshd-podcasts .scrolldiv {
  height: 450px;
  overflow-y: scroll;
}

.mshd-podcasts .cardposition {
  position: absolute;
  bottom: 0px;
  background: #000;
  opacity: 0.9;
  width: 100%;
  --bs-card-spacer-y: 0.3rem;
}

.mshd-podcasts .custom-dropdown {
  color: #fff !important;
}

.mshd-podcasts .custom-dropdown .dropdown-item {
  color: #fff !important;
}

.mshd-podcasts .custom-dropdown .dropdown-item:hover {
  background-color: #44475b;
  color: #fff !important;
}

.mshd-podcasts .search-box input {
  color: white;
  border: 1px solid #fff;
}

.mshd-podcasts .search-box input::placeholder {
  color: #f8d7da;
}

.mshd-podcasts .search-box button {
  border: 1px solid white;
  color: white;
}

.mshd-podcasts .studio-btn {
  color: white;
  border: 1px solid white;
}

.mshd-podcasts .studio-btn:hover {
  color: #fff;
}

.mshd-podcasts .studio-dropdown {
  background-color: #e74c3c;
}

.mshd-podcasts .studio-dropdown .dropdown-item {
  color: white;
}

.mshd-podcasts .studio-dropdown .dropdown-item:hover {
  background-color: #c0392b;
  color: #fff;
}

.mshd-podcasts .slick-next {
  right: 0px !important;
}

.mshd-podcasts .slick-prev {
  left: 0px !important;
}

.mshd-podcasts .slick-prev,
.mshd-podcasts .slick-next {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2f3349bd !important;
  color: #ffffff;
  font-size: 12px;
  padding: 0;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  border: none;
}

.mshd-podcasts .slick-prev:before,
.mshd-podcasts .slick-next:before {
  font-family: 'FontAwesome';
  font-size: 9px;
  color: #ffffff;
  line-height: 1;
}

.mshd-podcasts .slick-prev:before {
  content: '\f053';
}

.mshd-podcasts .slick-next:before {
  content: '\f054';
}

.mshd-podcasts .top-bar .d-flex.align-items-center {
  gap: 12px;
}

.mshd-podcasts .carousel-control-prev-icon,
.mshd-podcasts .carousel-control-next-icon {
  display: none;
}

.mshd-podcasts .slider-container {
  width: 100%;
}

.mshd-podcasts .ad-box {
  width: 13%;
  background-color: #2a2f3a;
  color: white;
  text-align: center;
  line-height: 400px;
  float: right;
}

.mshd-podcasts .slider .slick-slide:last-child .card1 {
  margin-right: 0;
}

.mshd-podcasts .lost-found-slider .slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

.mshd-podcasts .lost-found-slider .card {
  margin: 0 auto;
  height: 100%;
}

.mshd-podcasts #lost_found_slider img.img-fluid.rounded-3.mb-3 {
  height: 237px;
  object-fit: contain;
}

.mshd-podcasts .ad {
  background: #fff;
  color: #000;
  padding: 20px;
  border: 1px solid #ccc;
  height: 316px;
  box-sizing: border-box;
}

.mshd-podcasts .card.profile-card {
  border: 1px solid #fff;
  border-radius: 8px;
}

.mshd-podcasts #new-cards .card {
  border: 1px solid #ffffff !important;
}

.mshd-podcasts .card-img-cotainer {
  height: 210px;
  overflow: hidden;
}

.mshd-podcasts .card-img-cotainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.mshd-podcasts .card-text {
  font-size: 12px;
}

.mshd-podcasts .models-slider .waves-light {
  font-size: 12px;
  padding: 3px 6px;
}

.mshd-podcasts .card-body {
  font-size: 12px;
  padding: 15px;
  padding-bottom: 0px;
  background-color: #fff;
}

.mshd-podcasts .card-body .talent-text {
  margin: 0 !important;
}

.mshd-podcasts img.card-logo {
  height: 40px;
}

.mshd-podcasts .thumbnails {
  position: absolute;
  top: 6%;
  right: 11px;
  overflow: hidden;
}

.mshd-podcasts .card-image {
  position: relative;
}

.mshd-podcasts .mainImage-img {
  height: 100%;
  width: 100%;
}

.mshd-podcasts .header-text {
  line-height: 15px;
  color: #000000ff;
}

.mshd-podcasts .brand-name {
  font-size: 15px;
}

.mshd-podcasts .talent-text {
  font-size: 10px;
  margin-top: 10px;
  color: #000000ff;
}

.mshd-podcasts .post-date {
  font-size: 10px;
  color: #000000ff;
}

.mshd-podcasts .agency-contact-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
  color: #000000ff;
}

.mshd-podcasts .card-content {
  padding: 15px;
  background-color: #fff;
}

.mshd-podcasts .card-footer-custom {
  padding: 20px;
  background-color: #fff;
}

.mshd-podcasts img.thumbnail-img {
  height: 30px;
  width: 37px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 10px;
  border-radius: 6px;
}

.mshd-podcasts .footer-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #000000ff;
}

.mshd-podcasts .footer-stats i {
  font-size: 12px;
}

.mshd-podcasts small.talent-summary {
  font-size: 10px;
}

.mshd-podcasts .media-count.text-end.mt-2.pe-2 {
  position: absolute;
  top: 81%;
  right: 0;
  color: #ffffff;
  line-height: 9px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.75);
}

.mshd-podcasts small.media-stats {
  font-weight: 900;
  color: #ffffff;
  font-size: 8px;
}

.mshd-podcasts .card1 .card {
  box-shadow: 0 0 2px 0 rgb(0 0 0 / 22%) !important;
  overflow: hidden;
}

.mshd-podcasts nav.navbar {
  box-shadow: 0 0 2px 0 rgb(0 0 0 / 22%) !important;
  border-radius: 12px;
}

.mshd-podcasts .form-control {
  display: block;
  width: 100%;
  padding: 0.422rem 0.875rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  height: 31px;
  color: #6f6b7d;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dbdade;
  appearance: none;
  border-radius: 25px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.mshd-podcasts button.follow-btn {
  position: absolute;
  top: 9px;
  right: 15px;
}

/* Video Page Styles extracted from videos_public.php */


.mshd-videos .card1 {
  margin-bottom: 20px;
  width: 100%;
  display: flex;
}

.mshd-videos .card1 .card {
  box-shadow: 0 0 2px 0 rgb(0 0 0 / 22%) !important;
  overflow: hidden;
  width: 100%;
}

.mshd-videos .card1 .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mshd-videos .card-content {
  padding: 15px;
  background-color: #fff;
  position: relative;
}

.mshd-videos .track-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #851c3b 0%, #e94560 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.mshd-videos .card-img-cotainer {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.mshd-videos .card-img-cotainer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.mshd-videos button.follow-btn {
  outline: none !important;
  border: 1px solid #000000ff;
  font-size: 12px;
  background: #000;
  color: #ffffffff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 2px 8px;
}

.mshd-videos .card-body {
  font-size: 12px;
  padding: 15px 15px 0 15px;
  background-color: #fff;
}

.mshd-videos .card-footer-custom {
  padding: 15px;
  background-color: #fff;
}

.mshd-videos .owner-section {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.mshd-videos .owner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #851c3b;
}

.mshd-videos .owner-info {
  display: flex;
  flex-direction: column;
}

.mshd-videos .owner-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.mshd-videos .upload-date-small {
  font-size: 10px;
  color: #6c757d;
}

.mshd-videos .reaction-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mshd-videos .reaction-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 20px;
}



.mshd-videos .play-overlay-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.mshd-videos .play-btn-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #851c3b 0%, #e94560 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 5px 20px rgba(133, 28, 59, 0.5);
  transition: transform 0.3s ease;
}

.mshd-videos .play-btn-circle:hover {
  transform: scale(1.1);
}

.mshd-videos .music-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.mshd-videos .talent-text {
  font-size: 10px;
  margin-top: 5px;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mshd-videos .track-title {
  font-size: 12px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.mshd-videos .video-card {
  background: linear-gradient(145deg, #2a2f3a 0%, #1e2235 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.mshd-videos .video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mshd-videos .video-thumbnail {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.mshd-videos .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mshd-videos .video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.mshd-videos .video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.mshd-videos .no-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2f3a 0%, #1e2235 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 12px 12px 0 0;
}

.mshd-videos .video-genre-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #851c3b 0%, #e94560 100%);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.mshd-videos .talent-summary {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.mshd-videos .video-description {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.mshd-videos .search-filter-bar {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.mshd-videos .search-input {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 20px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.mshd-videos .search-input:focus {
  border-color: #851c3b;
  box-shadow: 0 0 10px rgba(133, 28, 59, 0.3);
}

.mshd-videos .filter-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 15px;
  color: #fff;
  outline: none;
  cursor: pointer;
  min-width: 150px;
}

.mshd-videos .filter-select option {
  background: #1e2235;
  color: #fff;
}

.mshd-videos .watch-btn {
  background: linear-gradient(135deg, #851c3b 0%, #e94560 100%);
  border: none;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(133, 28, 59, 0.3);
}

.mshd-videos .watch-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(133, 28, 59, 0.5);
}

.mshd-videos .section-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mshd-videos .section-title i {
  color: #851c3b;
  font-size: 20px;
}


.mshd-videos .bouncing-loader {
  display: flex;
  gap: 10px;
}

.mshd-videos .bouncing-loader div {
  width: 15px;
  height: 15px;
  background: #851c3b;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.mshd-videos .bouncing-loader div:nth-child(2) {
  animation-delay: 0.2s;
}

.mshd-videos .bouncing-loader div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-15px);
  }
}

.mshd-videos .premium-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(30, 34, 53, 0.8), rgba(30, 34, 53, 0.8)), url('/artist-bg.png') no-repeat center center/cover;
  pointer-events: none;
}

/* Light theme overrides */
.light-style .mshd-videos .video-card {
  background: #fff;
  border: 1px solid #e0e0e0;
}

.light-style .mshd-videos .video-card .card-body,
.light-style .mshd-videos .video-card .card-content,
.light-style .mshd-videos .video-card .card-footer-custom {
  background: #fff;
}

.light-style .mshd-videos .video-title,
.light-style .mshd-videos .owner-name,
.light-style .mshd-videos .section-title {
  color: #333;
}

.light-style .mshd-videos .talent-summary,
.light-style .mshd-videos .video-description,
.light-style .mshd-videos .upload-date-small,
.light-style .mshd-videos .reaction-item {
  color: #666;
}

.light-style .mshd-videos .search-filter-bar {
  background: #f5f5f5;
  border-color: #e0e0e0;
}

.light-style .mshd-videos .search-filter-bar .search-input,
.light-style .mshd-videos .search-filter-bar .filter-select {
  background: #fff;
  border-color: #ddd;
  color: #333;
}

.light-style .mshd-videos .no-thumbnail-placeholder {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  color: #666;
}

.light-style .mshd-videos .premium-bg {
  background: linear-gradient(rgba(244, 245, 250, 0.9), rgba(244, 245, 250, 0.9)), url('/artist-bg.png') no-repeat center center/cover;
}

/* Artist Page Specific Styles */
.mshd-artists .artist-img {
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.mshd-artists .claim-btn {
  position: absolute;
  top: 9px;
  right: 15px;
  outline: none;
  border: 1px solid #515151;
  font-size: 12px;
  background: transparent;
  color: #515151;
  border-radius: 25px;
  padding: 2px 10px;
}

.mshd-artists .claim-btn.active {
  border-color: green;
  color: green;
}

.mshd-artists .search-box {
  position: relative;
}

.mshd-artists .search-container input.form-control {
  padding-right: 2.5rem;
  height: 31px;
  font-size: 13px;
  border-radius: 25px;
}

.mshd-artists .filter-container {
  position: relative;
  width: 200px;
  margin-left: 10px;
}

.mshd-artists .filter-container select.form-control {
  height: 31px;
  font-size: 13px;
  border-radius: 25px;
}

.mshd-artists .card-grid-wrapper {
  margin-top: 20px;
}

/* Single News Article Styles */
.mshd-single-news .news-hero {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #cacaca;
}

.mshd-single-news .news-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.mshd-single-news .news-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  padding: 60px 30px 30px;
}

.mshd-single-news .news-hero-category {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
  background: #7c1835 !important;
  color: #ffffff !important;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.mshd-single-news .news-hero-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.mshd-single-news .article-content {
  font-size: 14px;
  line-height: 1.85;
}

.mshd-single-news .thumbnail-gallery {
  display: flex;
  gap: 12px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.mshd-single-news .thumbnail-item {
  width: 120px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #cacaca;
}

.mshd-single-news .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Home Page Premium Redesign Styles --- */

.hero-premium-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.dark-style .hero-premium-card {
  background: rgba(0, 0, 0, 0.2);
}

.live-player-container {
  position: relative;
  background: #000;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.live-badge-premium {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(133, 28, 59, 0.9);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 0 15px rgba(133, 28, 59, 0.5);
  animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 10px rgba(133, 28, 59, 0.5);
  }

  50% {
    box-shadow: 0 0 25px rgba(133, 28, 59, 0.8), 0 0 40px rgba(133, 28, 59, 0.4);
  }

  100% {
    box-shadow: 0 0 10px rgba(133, 28, 59, 0.5);
  }
}

.live-badge-premium::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: block;
}

.hero-meta-section {
  padding: 25px;
  background: linear-gradient(180deg, rgba(133, 28, 59, 0.1) 0%, rgba(26, 29, 33, 0.8) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-style .hero-meta-section {
  background: linear-gradient(180deg, rgba(133, 28, 59, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.meta-status-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-bottom: 5px;
}

.meta-title-premium {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.meta-progress {
  height: 6px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  overflow: hidden;
}

.meta-progress .progress-bar {
  background: var(--mshd-maroon-gradient) !important;
  box-shadow: 0 0 15px rgba(133, 28, 59, 0.6);
}

/* Tab Redesign */
.nav-tabs-premium {
  border-bottom: none !important;
  gap: 10px;
  padding: 10px;
}

.nav-tabs-premium .nav-item .nav-link {
  border: none !important;
  border-radius: 12px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.nav-tabs-premium .nav-item .nav-link.active {
  background: var(--mshd-maroon) !important;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(133, 28, 59, 0.3);
}

.nav-tabs-premium .nav-item .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

/* Card Improvements */
.mshd-card-premium {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mshd-card-premium:hover {
  transform: translateY(-8px);
  background: rgba(133, 28, 59, 0.1);
  border-color: rgba(133, 28, 59, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism sidebar */
.media-list-glass {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.search-box-premium {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box-premium input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  width: 100%;
}

.search-box-premium input:focus {
  outline: none;
}

.search-box-premium i {
  color: rgba(255, 255, 255, 0.5);
}

/* Sub-header premium styles */
.navbar-sub-header .navbar-brand {
  color: #2c323f !important;
  transition: color 0.3s ease;
}

.dark-style .navbar-sub-header .navbar-brand {
  color: #fff !important;
}

.navbar-sub-header .nav-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-sub-header .nav-container:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

/* Event / Music / News Card Dark Mode Visibility Improvements */
.dark-style .card .card-title,
.dark-style .event-card .card-title {
  color: #fff !important;
}



.dark-style .card .card-text,
.dark-style .event-card .card-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Specific fix for "blurry" category text / small labels */
.dark-style .card small.text-muted.text-uppercase,
.dark-style .event-card small.text-muted.text-uppercase {
  color: #fff !important;
  opacity: 1;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  /* Prevents "blur" on some displays */
}

.dark-style .cardposition-overlay small,
.dark-style .event-card .cardposition-overlay small {
  color: #fff !important;
}

.dark-style .bg-label-secondary {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.dark-style .bg-label-secondary i {
  color: #fff !important;
}


.dark-style .card-header small {
  color: rgba(255, 255, 255, 0.8) !important;
}



.dark-style .sub-header-icon {
  color: #fff !important;
}


.dark-style .text-maroon {
  color: #fff !important;
}

/* Custom Maroon Label */
.bg-maroon {
  background-color: #851c1c99 !important;
  color: #fff !important;
}

.bg-maroon i {
  color: #fff !important;
}





/* Specific Card Icon Refinements */
.event-card .card-footer .ti-heart-filled {
  color: var(--mshd-maroon) !important;
  display: inline-block !important;
}

.event-card .card-footer .ti-heart {
  color: #566a7f !important;
  display: inline-block !important;
}

/* Default Interaction Icons in Cards */
.event-card .card-footer .ti {
  color: #566a7f;
  transition: all 0.3s ease;
  font-size: 1.25rem !important;
}


.event-card .card-text.text-muted,
.event-card .card-header small,
.event-card .card-footer small.fw-bold {
  color: #566a7f !important;
  opacity: 1;
}

.dark-style .event-card .card-footer .ti:not(.ti-heart-filled) {
  color: rgba(255, 255, 255, 0.8) !important;
}

.dark-style .event-card .card-title,
.dark-style .event-card .card-text.text-muted {
  color: #fff !important;
}

.bg-label-maroon {
  background-color: inherit !important;
  color: var(--mshd-maroon) !important;
}



/* Main Logo Dark Mode Adjustment */
.dark-style .app-brand-link img {
  filter: none !important;
}

/* lightGallery Z-Index Fix to cover Navbar */
.lg-backdrop {
  z-index: 20000 !important;
}

.lg-outer {
  z-index: 20001 !important;
}

/* Custom Gallery Header */
.lg-custom-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  flex-wrap: nowrap;
}

.lg-custom-header>* {
  pointer-events: auto;
  flex-shrink: 0;
}

.lg-header-logo {
  width: 40px;
  height: 40px;
  background: url('/images/mshdlogo.fw.png') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.lg-header-title {
  color: #fff;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
}

/* Counter - simple white text next to logo */
.lg-counter {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  padding: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  margin-left: 0 !important;
  display: inline !important;
}

.lg-toolbar {
  background: rgba(0, 0, 0, 0.45) !important;
  height: 50px !important;
  padding: 0 10px !important;
}

@media (max-width: 768px) {
  .lg-custom-header {
    padding: 8px 12px;
  }

  .lg-header-logo {
    width: 30px;
    height: 30px;
  }

  .lg-header-title {
    font-size: 0.9rem;
    max-width: 120px;
  }
}

/* Shift image down for toolbar clearance */
.lg-outer .lg-item {
  padding-top: 50px !important;
  padding-bottom: 0 !important;
}

/* Make fullscreen gallery look like contained inline box */
.lg-container {
  z-index: 99999 !important;
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.95) !important;
}

.lg-toolbar {
  background: rgba(0, 0, 0, 0.45) !important;
  height: 50px !important;
  padding: 0 10px !important;
}

.lg-toolbar .lg-icon {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 22px !important;
}

.lg-toolbar .lg-icon:hover {
  color: #fff !important;
}

.lg-prev,
.lg-next {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 28px !important;
}

.lg-prev:hover,
.lg-next:hover {
  color: #fff !important;
}

.lg-thumb-outer {
  background: rgba(0, 0, 0, 0.75) !important;
}

/* Inline Gallery Container Styles */
#inline-gallery-container {
  background: #000;
}

#inline-gallery-container .lg-outer {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

#inline-gallery-container .lg-backdrop {
  background: transparent !important;
}

#inline-gallery-container .lg-toolbar {
  background: rgba(0, 0, 0, 0.45) !important;
  height: auto !important;
  padding: 8px 10px;
}

#inline-gallery-container .lg-counter {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  position: absolute;
  top: 12px;
  left: 15px;
  z-index: 1090;
  background: rgba(133, 28, 59, 0.85);
  padding: 3px 10px;
  border-radius: 5px;
  line-height: normal !important;
  margin-left: 0 !important;
}

#inline-gallery-container .lg-item {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#inline-gallery-close:hover {
  opacity: 1;
  transform: scale(1.2);
  transition: all 0.2s ease;
}

/* Sub-header Search Bar Refinements */

.navbar-sub-header .search-event {
  background: transparent !important;
  color: inherit !important;
  border: none !important;
  border-left: 0 !important;
}

.navbar-sub-header .input-group-text {
  background: transparent !important;
  border: none !important;
  padding-right: 0 !important;
}

.navbar-sub-header .search-event::placeholder {
  color: #6f6b7d !important;
  opacity: 0.6;
}

.navbar-sub-header .input-group-merge {
  border: 1px solid #dbdade !important;
  background-color: #fff !important;
}

.dark-style .navbar-sub-header .input-group-merge {
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}



.dark-style .bg-label-maroon {
  background-color: inherit !important;
  color: #fff !important;
}

.sub-header-icon {
  color: #2c323f !important;
  transition: color 0.3s ease;
  position: relative;
  top: -3px;
  font-size: 22px !important;
  left: 1px;
}


.bg-label-secondary {
  background: #f2f2f3 !important;
}

.search-container input.form-control {
  padding-right: 2.5rem;
  /* Space for the icon */
  height: 31px;
  font-size: 13px;
  color: #6f6b7d;
  background-color: #fff;
  border: 1px solid #dbdade !important;
  border-radius: 25px;
}

/* Ensure dropdown options have solid background */


.search-container input.form-control:focus {
  border-color: #851c3b;
  box-shadow: none;
}

.search-container .search-icon,
.search-container .clear-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #eecfd2 !important;
  cursor: pointer;
  transition: color 0.2s ease;
}

.form-select option {
  background-color: #fff;
  color: #2c323f;
}

.dark-style .bg-menu-theme .menu-link,
.bg-menu-theme .menu-horizontal-prev,
.bg-menu-theme .menu-horizontal-next {
  color: #fff;
}

.mshd-homepage .card-body {
  font-size: 12px;
  padding: 15px;
  padding-bottom: 0px;

}

.mshd-homepage .card-body {
  font-size: 12px;
  padding: 15px;
}

/* Coming Soon Page Styles - Global */
body.coming-soon-body {
  height: 100vh;
  overflow: hidden;
  font-family: 'Public Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #0f111a, #1e2235, #851c3b, #2a2f4a);
  background-size: 400% 400%;
  animation: gradientMoveComing 12s ease infinite;
  position: relative;
  color: #fff;
  text-align: center;
}

@keyframes gradientMoveComing {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

body.coming-soon-body::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 77, 109, 0.3), transparent 60%);
  animation: rotateLightComing 20s linear infinite;
}

@keyframes rotateLightComing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.coming-soon-page .coming-text {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 10px;
  text-transform: uppercase;
  perspective: 1000px;
  animation: glowPulseComing 3s ease-in-out infinite alternate;
}

.coming-soon-page .coming-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px) rotateX(90deg);
  background: linear-gradient(45deg, #ffffff, #ff4d6d, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: letterRevealComing 0.8s forwards;
}

.coming-soon-page .coming-text span:nth-child(1) {
  animation-delay: 0.1s;
}

.coming-soon-page .coming-text span:nth-child(2) {
  animation-delay: 0.2s;
}

.coming-soon-page .coming-text span:nth-child(3) {
  animation-delay: 0.3s;
}

.coming-soon-page .coming-text span:nth-child(4) {
  animation-delay: 0.4s;
}

.coming-soon-page .coming-text span:nth-child(5) {
  animation-delay: 0.5s;
}

.coming-soon-page .coming-text span:nth-child(6) {
  animation-delay: 0.6s;
}

.coming-soon-page .coming-text span:nth-child(7) {
  animation-delay: 0.7s;
}

.coming-soon-page .coming-text span:nth-child(8) {
  animation-delay: 0.8s;
}

.coming-soon-page .coming-text span:nth-child(9) {
  animation-delay: 0.9s;
}

.coming-soon-page .coming-text span:nth-child(10) {
  animation-delay: 1s;
}

.coming-soon-page .coming-text span:nth-child(11) {
  animation-delay: 1.1s;
}

@keyframes letterRevealComing {
  0% {
    opacity: 0;
    transform: translateY(80px) rotateX(90deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes glowPulseComing {
  from {
    text-shadow: 0 0 10px rgba(255, 77, 109, 0.3), 0 0 20px rgba(255, 77, 109, 0.2);
  }

  to {
    text-shadow: 0 0 25px rgba(255, 77, 109, 0.8), 0 0 50px rgba(255, 77, 109, 0.6);
  }
}

.coming-soon-page .subtitle {
  font-size: 1.3rem;
  margin-top: 20px;
  opacity: 0.85;
}

.coming-soon-page .loader {
  margin: 40px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid #ff4d6d;
  animation: spinComingPage 1s linear infinite;
}

@keyframes spinComingPage {
  100% {
    transform: rotate(360deg);
  }
}

.coming-soon-page .btn-back {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 45px;
  border-radius: 50px;
  background: linear-gradient(45deg, #851c3b, #ff4d6d);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.coming-soon-page .btn-back:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 77, 109, 0.6);
  color: #fff;
}

.coming-soon-page .particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatUpComingPage linear infinite;
  z-index: 1;
}

@keyframes floatUpComingPage {
  from {
    transform: translateY(100vh);
  }

  to {
    transform: translateY(-10vh);
  }
}

@media(max-width: 768px) {
  .coming-soon-page .coming-text {
    font-size: 2.5rem;
  }
}

/* =========================================================================
JOBS PAGE STYLES
========================================================================= */
.jobs-page .navbar-brand {
  letter-spacing: 1px;
}

.jobs-page .search-box {
  max-width: 250px;
}

.jobs-page .search-box .input-group {
  width: 250px;
}

.jobs-page .search-box .form-control {
  box-shadow: none !important;
}

.jobs-page .filter-select {
  min-width: 140px;
}

.jobs-page .job-title-link {
  letter-spacing: -0.5px;
}

.jobs-page .job-type-label {
  font-size: 10px;
  letter-spacing: 0.5px;
}

.jobs-page .date-label {
  font-size: 10px;
  font-weight: 600;
}

.jobs-page .job-card-image {
  height: 220px;
}

.jobs-page .apply-btn {
  font-size: 11px;
  font-weight: 600;
}

.jobs-page .badge-sm {
  padding: 2px 8px;
  font-size: 10px;
}

.jobs-page .overlay-controls {
  z-index: 10;
}

/* =========================================================================
FEEDS PAGE STYLES
========================================================================= */

.feeds-page .hero-lead {
  max-width: 800px;
}

.feeds-page .navbar-brand {
  letter-spacing: 1px;
}

.feeds-page .search-box {
  max-width: 250px;
}

.feeds-page .search-box .input-group {
  width: 250px;
}

.feeds-page .search-box .form-control {
  box-shadow: none !important;
}

.feeds-page .filter-select {
  min-width: 140px;
}

.feeds-page .feed-card-image {
  height: 220px;
  object-fit: cover;
}

.feeds-page .avatar-feed {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
}

.feeds-page .feed-title-link {
  letter-spacing: -0.5px;
}

.feeds-page .feed-type-label {
  font-size: 10px;
  letter-spacing: 0.5px;
}

.feeds-page .feed-meta-cat {
  max-width: 50%;
}

.feeds-page .feed-meta-stat {
  max-width: 45%;
}

.feeds-page .overlay-controls {
  z-index: 10;
}

/* =========================================================================
SHOP PAGE STYLES
========================================================================= */
.shop-page .avatar-shop {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-page .shop-title-link {
  letter-spacing: -0.5px;
}

.shop-page .shop-cat-label {
  font-size: 10px;
  letter-spacing: 0.5px;
}

.shop-page .shop-meta-price {
  background: rgba(133, 28, 59, 0.9);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
}

.shop-page .product-image {
  height: 250px;
  object-fit: cover;
}

.shop-page .add-to-cart-overlay {
  background: var(--maroon-primary, #851c3b);
  color: white;
  padding: 6px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 13px;
}

.shop-page .add-to-cart-overlay:hover {
  background: #6d1630;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shop-page .cta-section {
  background: rgba(133, 28, 59, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(133, 28, 59, 0.2);
}

/* =========================================================================
POLICIES PAGE STYLES
========================================================================= */
.policies-page .avatar-policy {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policies-page .policy-title-link {
  letter-spacing: -0.5px;
}

.policies-page .policy-update-label {
  font-size: 10px;
  letter-spacing: 0.5px;
}

.policies-page .policy-content {
  line-height: 1.7;
}

.policies-page .policy-card-footer {
  background: transparent !important;
}

/* =========================================================================
ADVERTISE PAGE STYLES
========================================================================= */
.advertise-page .avatar-advertise {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advertise-page .advertise-title-link {
  letter-spacing: -0.5px;
}

.advertise-page .advertise-card-footer {
  background: transparent !important;
}

.advertise-page .bg-maroon-soft {
  background: rgba(133, 28, 59, 0.05) !important;
}

.advertise-page .advertise-form-card {
  border-radius: 20px;
  overflow: hidden;
}

.advertise-page .advertise-format-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}

/* =========================================================================
TICKETS PAGE STYLES
========================================================================= */
.tickets-page .avatar-ticket {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tickets-page .ticket-category-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.tickets-page .ticket-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(133, 28, 59, 0.1) !important;
}

.tickets-page .btn-check:checked+.ticket-category-card {
  background-color: var(--bs-primary) !important;
  color: white !important;
  border-color: var(--bs-primary) !important;
}

.tickets-page .btn-check:checked+.ticket-category-card i,
.tickets-page .btn-check:checked+.ticket-category-card span {
  color: white !important;
}

.tickets-page .form-label-premium {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.tickets-page .border-dashed-maroon {
  border: 2px dashed rgba(133, 28, 59, 0.2);
  background: rgba(133, 28, 59, 0.02);
  transition: all 0.3s ease;
}

.tickets-page .border-dashed-maroon:hover {
  border-color: rgba(133, 28, 59, 0.4);
  background: rgba(133, 28, 59, 0.05);
}

/* =========================================================================
VIDEOS PAGE STYLES
========================================================================= */
.videos-page .video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(133, 28, 59, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  pointer-events: none;
}

.videos-page .video-card:hover .video-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.videos-page .avatar-video {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bs-primary);
  object-fit: cover;
}

.videos-page .video-genre-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bs-primary);
  background: rgba(133, 28, 59, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.videos-page .video-title-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  transition: color 0.2s ease;
}

.videos-page .video-title-link:hover {
  color: var(--bs-primary) !important;
}

.videos-page .video-card-footer {
  background: rgba(133, 28, 59, 0.02);
}

/* =========================================================================
EPISODES PAGE STYLES
========================================================================= */
.episodes-page .avatar-episode {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bs-primary);
  object-fit: cover;
}

.episodes-page .episode-category-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bs-primary);
  background: rgba(133, 28, 59, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.episodes-page .episode-title-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  transition: color 0.2s ease;
}

.episodes-page .episode-title-link:hover {
  color: var(--bs-primary) !important;
}

.episodes-page .episode-card-footer {
  background: rgba(133, 28, 59, 0.02);
}

/* =========================================================================
NEWS PUBLIC REDESIGN - PREMIUM GRID & CARDS
========================================================================= */

.news-redesign-container {
  background-color: #fff;
  padding: 1.5rem 0;
  color: #333;
}


.news-card-premium {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 200px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Smooth Gradient Overlay for Readability */
.news-card-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
}

.news-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  z-index: 2;
  color: #fff;
}

.visual-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--mshd-maroon);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.news-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  opacity: 0.85;
}

.news-card-stats {
  display: flex;
  gap: 12px;
}

.news-stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* MSHD NEWS REDESIGN STYLES */
:root {
  --plyr-color-main: var(--mshd-maroon);
}

.news-grid-asymmetric {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-asym-small-side {
  flex: 0 0 calc(50% - 0.75rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.news-asym-large-side {
  flex: 0 0 calc(50% - 0.75rem);
  min-height: 416px;
}

.news-asym-full-row {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1200px) {

  .news-asym-small-side,
  .news-asym-large-side {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .news-asym-full-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .news-asym-small-side {
    grid-template-columns: 1fr;
  }

  .news-asym-full-row {
    grid-template-columns: 1fr;
  }
}

.news-card-visual-match {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-large {
  height: 500px;
}

.card-small {
  height: 180px;
}

.visual-card-footer {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.card-small .visual-card-footer {
  padding: 10px 15px;
}

.visual-card-title {
  color: white !important;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

.card-large .visual-card-title {
  font-size: 28px;
}

.card-small .visual-card-title {
  font-size: 13px;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.visual-card-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.card-small .visual-card-meta {
  font-size: 10px;
}

.article-body-visual {
  line-height: 1.8;
  color: inherit;
}

.visual-stats {
  display: flex;
  gap: 15px;
  color: white;
}

.visual-stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}

.visual-stat-item i {
  color: rgba(255, 255, 255, 0.8);
}

.news-redesign-container {
  padding: 1.5rem 0;
  color: inherit;
}

.dark-style .news-redesign-container {
  background-color: #0d0f17;
  color: #fff;
}

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-scale:hover {
  transform: scale(1.02);
  z-index: 5;
}

.news-gallery-visual,
.news-video-visual,
.news-audio-visual,
.news-pdf-visual {
  animation: fadeInUp 0.5s ease backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-subtle {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.85;
  }
}

.border-dashed {
  border-style: dashed !important;
}

.fs-tiny {
  font-size: 0.65rem;
}

.audio-player-container {
  transition: all 0.3s ease;
}

.audio-player-container:hover {
  background-color: rgba(var(--mshd-maroon-rgb), 0.05) !important;
  border-color: var(--mshd-maroon) !important;
}

.btn-outline-maroon {
  color: var(--mshd-maroon);
  border-color: var(--mshd-maroon);
}


/* News Reaction Colors */
.ti-heart-filled,
.btn-like.active i,
.visual-stat-item .ti-heart-filled {
  color: #ff4d4d !important;
  /* Red heart */
}

.ti-thumb-down-filled,
.btn-dislike.active i,
.visual-stat-item .ti-thumb-down-filled {
  color: #696cff !important;
  /* Blue-ish for dislike */
}




/*himanshu
*/

.dark-style .bg-label-secondary {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.card-footer span i.ti.ti-heart {
  font-size: 12px;
}

.card-footer span i {
  font-size: 16px !important;
}

.card-footer span small {
  font-size: 11px !important;
}

h6.text-truncate.fw-bold.card-title {
  color: #333;
}


.event-card .card-title {
  color: #333;
  font-weight: 700;
  text-transform: capitalize;
}




.search-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #999;
}

.dark-style input.form-control.custom-search-input {
  background: transparent;
  font-size: 12px;
  color: #fff;
  border-radius: 25px;
  border-color: #fff;
}

.dark-style .custom-search-input::placeholder {
  color: #fff !important;
  font-size: 12px;
}

.search-wrapper {
  position: relative;
  width: 250px;
}

.dark-style i.ti.ti-search.search-icon {
  color: #fff;
}

input.form-control.custom-search-input {
  border-radius: 25px;
}

.p-2 {
  padding: 1rem !important;
}

hover:a.add-class {
  border-color: #fff;
  text-decoration: none;
}

.btn-light {
  color: #fff;
  background-color: var(--mshd-maroon) !important;
  border-color: var(--mshd-maroon) !important;
  text-decoration: none !important;
}


.article-body-visual.mb-5 {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.dark-style .news-redesign-container {
  background-color: transparent;
  color: #fff;
}

.bg-label-maroon i {
  color: var(--mshd-maroon) !important;
  position: relative;
  top: -3px;
}

.light-style .news-redesign-container {
  background: transparent;
  border-radius: 0px !important;
  box-shadow: none !important;
}

.singleNews-main .single-news-card {
  width: 100%;
}

.dark-style .article-body-visual.mb-5 h3 {
  color: #fff;
}

.dark-style .article-body-visual.mb-5 li {
  color: #fff;
}


/* Sponsored Label */
.sponsored-label {
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 10px;
  letter-spacing: 2px;
  color: #fff;
}

.premium-ad-card .ad-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 50px;
}

/* Logo */
.premium-ad-card .ad-logo {
  height: 80px;
}

.ad-title {
  font-size: 70px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -1px;
  color: #fff;
}

.premium-ad-card .title-item .ad-tagline {
  font-size: 10px;
  color: #fff;
  font-weight: 800;
  margin: 0;
  text-align: right;
}

.ad-bottom-box {
  text-align: center;
  padding-left: 30px;
}

.ad-bottom-box p {
  color: #fff;
  font-size: 13px;
  margin: 0;
}

.ad-bottom-box {
  text-align: center;
  padding-left: 50px;
}

h4.fw-bold.mb-2 {
  font-size: 20px !important;
}

img.w-100.object-fit-cover {
  object-fit: cover !important;
}

.home-logos {
  display: flex;
  justify-content: center;
}

.add-background-news i {
  font-size: 12px;
}


.dark-style .text-muted.add-white {
  color: #fff;
}

.comment-content {
  position: relative;
  top: -22px;
}

.see-all-btn:hover {
  background: #685dd8 !important;
}

.dark-style .see-all-btn {
  border-color: #fff !important;
  color: #fff !important;
}

.btn-outline-maroon:hover {
  background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%);
  color: #fff !important;
  border: none;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.news-img-wrapper {
  width: 100%;
  height: 200px;
  /* Sab images same height */
  overflow: hidden;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* VERY IMPORTANT */
}

.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.news-title {
  font-size: 14px;
  line-height: 1.4;
}

.news-desc {
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.navbar-expand-lg {
  margin: 20px 11px !important;
}

a.btn.btn-light.btn-sm.fw-bold.border.px-3:hover {
  background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%);
  border: none !important;
}

span.dark-c {
  color: #000;
}

.light-style .news-detail-header.mb-4.mt-2 {
  border-radius: 0.375rem !important;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 0.25rem 1rem rgba(165, 163, 174, 0.45) !important;
  margin-top: 20px !important;
}

.add-background-news {
  background: #1e2124;
  padding: 3px 8px;
  border-radius: 10px;
}

.dark-style input.form-control.form-control-sm.rounded-start-pill::placeholder {
  color: #fff !important;
}

div#musicNavbarContent {
  justify-content: end;
}

a.navbar-brand.fw-bold.ms-2 {
  text-decoration: none !IMPORTANT;
}

a.navbar-brand.fw-bold.ms-2 {
  margin-right: 14px !important;
}

a.navbar-brand.fw-bold {
  text-decoration: none !important;
}

.d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark span i {
  font-size: 18px !important;
}

.input-group.input-group-merge.rounded-pill {
  border-color: #fff !important;
}

.d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark {
  position: relative;
  top: -1px;
}

.dark-style .filter-select option {
  background-color: #272729;
  color: #fff;
}

.dark-style .empty-state.py-5.rounded h3.mb-2 {
  color: #fff;
}

.dark-style .news-detail-header.mb-4.mt-2 {
  background: rgba(40, 40, 42, 0.95) !important;
  border-radius: 0.375rem !important;
  padding: 12px 20px;
}

.menu-inner-shadow {
  display: none !important;
}

@media (max-width: 768px) {
  ul.navbar-nav.d-flex.flex-row.align-items-center {
    display: none !important;
  }
}

@media (max-width: 576px) {
  div#navbar-collapse a.app-brand-link.me-2 {
    display: none;
  }

  .layout-menu-toggle.navbar-nav.align-items-xl-center.me-3.me-xl-0.d-xl-none {
    margin: 0 !important;
  }

  .input-group.input-group-merge.input-group-sm.rounded-pill {
    width: 138px !important;
    margin: 0 10px;
  }

  li.nav-item.dropdown.me-2.me-xl-0 {
    margin: 0 !important;
  }

  li.nav-item.dropdown-notifications.navbar-dropdown.dropdown.me-3.me-xl-1 {
    margin: 0 2px !important;
  }

  .d-flex.align-items-center.gap-3 {
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .input-group.input-group-merge.input-group-sm.rounded-pill {
    width: 111px !important;
  }
}

@media (max-width: 425px) {

  .input-group.input-group-merge.input-group-sm.rounded-pill {
    width: 208px !important;
  }
}

/*.row.g-4 {*/
/*  padding-left: 12px;*/
/*}*/
.nav.navbar.navbar-expand-lg {
    height: 58px;
}
.dark-style .card-footer small.fw-bold {
  color: #fff !important;
}

.card-footer span {
  color: #fff !important;
}

.grid-item-sidbar {
  display: grid;
  grid-template-columns: auto auto;
  flex-wrap: wrap;
  gap: 0px;
}

.singleNews-main .col-lg-5 {
  padding-left: 0;
}

.search-box input {
  color: white;
  border: 1px solid #efeff1;
}

.card-footer span {
  color: #566a7f !important;
}

a.add-class {
  border-color: #000;
  text-decoration: none;
  color: var(--mshd-maroon);
  font-weight: 700;
}

.dark-style a.add-class {
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

.light-style .input-group.input-group-merge.rounded-pill {
  border-color: #dbdade !important;
}

.dark-style .bg-label-maroon i {
  color: #fff !important;
  position: relative;
  top: 0px;
}

.dark-style .card .card-text,
.dark-style .event-card .card-text {
  color: #fff !important;
  font-size: 11px !important;
  text-transform: capitalize;
}

.avatar.avatar-xs.rounded.overflow-hidden.flex-shrink-0 {
  background: inherit !important;
}

.videos-sarch input#searchMusic {
  border: none;
  font-size: 12px;
}

.videos-sarch .input-group {
  padding-right: 12px;
}

.videos-sarch .input-group i {
  font-size: 18px !important;
}

.news-slider .card1 {
  padding: 10px;
}

.slick-slide {
  margin: 0 10px;
}

.slick-track {
  display: flex;
}

input.search-event.form-control {
  font-size: 12px;
  color: #fff;
}

.dark-style input.search-event.form-control::placeholder {
  color: #fff !important;
  opacity: 1;
}

.premium-ad-card {
  position: absolute;
  background: #000;
  border-radius: 8px;
  padding: 28px 22px;
  min-height: 275px;
  top: 289px;
  width: 100%;
}

.singleNews-main .single-news-card {
  width: 100%;
  display: flex;
  gap: 15px;
}

.singleNews-main .single-news-card .card-small {
  width: 50% !important;
  height: 100% !important;
}

.singleNews-main .single-news-card .card-small h5.hero-title.p-0 {
  font-size: 8px !important;
}

.singleNews-main .single-news-card .card-small i.ti.ti-clock.me-1 {
  font-size: 10px;
}

.singleNews-main .single-news-card .card-small span {
  font-size: 8px;
}

.singleNews-main .single-news-card .card-small span.reaction-item {
  padding: 0 5px;
}

.singleNews-main .single-news-card .card-small .hero-overlay {
  padding: 5px 4px;
}

.singleNews-main .single-news-card .card-small .hero-category {
  font-size: 8px !important;
  padding: 3px 7px !important;
}

a.btn.btn-primary.btn-lg.rounded-pill.px-4.shadow-sm.waves-effect.waves-light {
  text-decoration: none;
}

a.app-brand-link {
  text-decoration: none;
}

.media-card-premium .card-body i.ti.ti-microphone-2.me-1 {
  display: none;
}

.avatar.avatar-sm.logo-set {
  display: flex;
  justify-content: center;
  color: #000 !important;
}

div#event-row {
  padding-right: 11px;
}

.dark-style .avatar.avatar-sm.logo-set {
  color: #fff !important;
}

.play-overlay-center {
  display: none;
}

button.add-follow.btn.btn-xs.rounded-pill.px-2.py-1.waves-effect.waves-light {
  background: #fff;
  color: #000 !important;
  font-weight: 900;
  position: relative;
  left: 55px;
  top: -15px;
}


.followers {
  background: #f1f1f1;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  gap: 0px;
  font-weight: 900;
  border-radius: 25px;
  margin: 1px 0px 1px 2px;
}

.follow-text {
  padding: 5px;
  font-weight: 900;
  cursor: pointer;
  color: #000;
}

span.followers {
  color: #000;
}

.followers i.ti.ti-users {
  color: #000;
  font-size: 10px;
}


.badge.bg-dark-opacity.text-white.px-2.py-1 {
  position: relative;
  right: 68px;
  top: 8px;
  color: #fff !important;
}

.badge.bg-dark-opacity.text-white.px-2.py-1 small {
  font-size: 7px !important;
}

.badge.bg-dark-opacity.text-white.px-2.py-1 i {
  font-size: 16px;
}

.cardposition-overlay i {
  font-size: 16px;
}

a.btn {
  text-decoration: none;
}


.follow-pill {
  background: #ffffff;
  border-radius: 30px;
  font-size: 11px;
  border: 1px solid #000;
  padding: 3px 8px;
  font-weight: bolder;
  position: absolute;
  right: 13px;
}

div#globalPersistentPlayer {
  background: #1e2124;
}

.shop-icon.avatar-sm.bg-label-maroon.rounded.p-1.flex-shrink-0.avatar-shop {
  position: relative;
  top: -9px;
}

.policies-icon.avatar.avatar-sm.bg-label-maroon.rounded.p-1.flex-shrink-0 {
  display: flex;
  justify-content: center;

}

span.total-models.transition-all {
  display: flex;
  gap: 7px;
  padding-top: 3px;
}

div#videoGrid {
  padding-right: 12px;
}

div#videoGrid .card-header {
  padding-left: 16px;
  padding-right: 30px;
}

.dark-style p.lead.mb-4.mx-auto {
  color: #fff;
}

div#policy-content {
  padding-right: 12px;
}

.dark-style .add-b-c.d-none.d-xl-flex.gap-2 a.btn {}






.dark-style .advertismant-form {
  background: #1e2124 !important;
}

.dark-style input.form-control.rounded-pill.px-3 {
  font-size: 12px;
}

.dark-style .form-control.rounded-pill.px-3 {
  color: #9095b4 !important;
  font-size: 12px;
}

.dark-style .advertismant-form input::placeholder {
  color: #fff;
}

.dark-style .advertismant-form input {
  border-color: #fff;
}

.dark-style .advertismant-form textarea {
  border-color: #fff;
  font-size: 12px;
}

.dark-style .advertismant-form textarea::placeholder {
  color: #fff;
}

.advertismant-form .form-control {
  height: inherit;
}

.add-font-style {
  margin-left: 16px;
}

.add-font-style i {
  font-size: 27px !important;
}

.add-font-style h2 {
  font-size: 25px;
}

.sidebar-ad-section.mb-5 {
  position: relative;
  margin: 0;
}

.Sidebar-p .add-new-change .news-hero-card.card-small {
  height: 150px !important;
}

.dark-style strong.small {
  color: #fff;
}

.lost-fonund-title {
  padding: 0 14px;
}

button.btn.btn-sm.bg-maroon-opacity.border-0.p-2.follow-btn.waves-effect.waves-light {
  display: none !important;
}

input#searchBoxLostFound {
  background: transparent;
  font-size: 12px;
  color: #fff !important;
  margin: 0 !important;
  padding-right: 50px;
}

button.jobs-page.btn.btn-sm.btn-primary.bg-maroon.border-maroon.waves-effect.waves-light.claim-btn {
  font-size: 10px !important;
  top: 66px;
}

button.btn.btn-sm.bg-maroon.text-white.border-0.px-3.rounded-pill.shadow-sm {
  font-size: 10px !important;
  position: relative;
  top: 50px;
}

button#playBtn-1126 {
  padding: 10px !important;
  background: #851c1ca1 !important;
}

button#playBtn-1124 {
  padding: 10px !important;
  background: #851c1ca1 !important;
}

.dark-style span.total-podcasts i {
  color: #fff;
}

.dark-style span#podcastCount {
  color: #fff;
}

span.total-podcasts i {
  color: #000;
}

span#podcastCount {
  color: #000;
}

button.event-btn {
  padding: 5px 10px 5px 10px !important;
  border-radius: 0px !important;
}

button.event-btn i {
  font-size: 18px;
}

button.event-btn span {
  font-size: 13px !important;
}

#event-row .event-card {
  transition: transform 0.3s ease;
  height: 350px !important;
}

.artist-button {
  top: 27px !important;
  margin-right: 17px;
}

.artist-button a.btn.btn-sm.bg-maroon.text-white.border-0.px-3.rounded-pill.shadow-sm.waves-effect.waves-light:hover {
  background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%) !important;
}

div#artists-row {
  padding-right: 0px;
}

button.presenters-btn {
  top: 5px !important;
}

.row.g-4.text-center.stats-row.card-set {
  padding-right: 12px;
}

.row.g-4.card-set {
  padding-right: 12px;
}

nav.navbar.navbar-expand-lg.bg-navbar-theme.mb-4.mt-4.rounded.shadow.navbar-sub-header {
  border-radius: 8px;
}

.feeds-page .hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=2070');
  background-size: cover;
  background-position: center;
  padding: 100px 40px;
  margin: 10px 12px !important;
  border-radius: 8px;
}

div#servicesGrid {
  padding-right: 12px;
}

div#servicesGrid {
  padding-right: 12px;
}

div#feeds-row {
  padding-right: 12px;
}

.set-he-icon {
  position: relative;
  top: -1px !important;
}

div#shop-content {
  padding-right: 12px;
}

.avatar.avatar-xs.rounded.overflow-hidden.flex-shrink-0 {
  border-radius: 5px;
}

div#episodes-row {
  padding-right: 12px;
}

.evente-logo.avatar.avatar-sm.bg-label-maroon.rounded.p-1.flex-shrink-0 {
  text-align: center;
}

.evente-logo.avatar.avatar-sm.bg-label-maroon.rounded.p-1.flex-shrink-0 {
  text-align: center;
}

.add-gag {
  gap: 0 !important;
}

.add-new-color span.ms-1.small {
  color: #fff;
}

.add-new-color.open-lightbox-video-11 {
  backdrop-filter: blur(2px) !important;
}

.card-header.border-bottom-0.pb-0.d-flex.align-items-center.pb-1 {
  gap: 0px !important;
}

.avatar-sm {
  width: 40px;
  height: 40px;
}

.card-title+small {
  display: block !important;
  margin-top: 5px !important;
}

.light-style button.jobs-page.btn.btn-sm.btn-primary.bg-maroon.border-maroon.waves-effect.waves-light.claim-btn {
  font-size: 10px !important;
  top: 69px;
}

.light-style button.btn.btn-sm.bg-maroon.text-white.border-0.px-3.rounded-pill.shadow-sm {
  font-size: 10px !important;
  position: relative;
  top: 68px;
}

.add-new-c.avatar.avatar-sm.bg-label-maroon.rounded.p-1.flex-shrink-0 {
  display: flex;
  justify-content: center;
}

.card-header.border-bottom-0.pb-0.d-flex.align-items-center {
  gap: 0 !important;
}

a.avatar.avatar-sm.flex-shrink-0 {
  margin-right: 8px;
}

.avatar.avatar-sm.rounded-circle.overflow-hidden.flex-shrink-0.bg-label-maroon.p-0 {
  margin-right: 10px;
}

div#artistsNavbarContent {
  justify-content: end !important;
}

.artist-pill {
  background: #ffffff;
  border-radius: 30px;
  font-size: 11px;
  border: 1px solid #000;
  padding: 3px 5px;
  font-weight: bolder;
}

.background-color {
  background: #272729;
  padding: 30px !important;
}

button.event-btn.btn.btn-sm.bg-maroon-opacity.border-0.add-new-color.open-lightbox-video-11 {
  background: #851c1ca1 !important;
  border-radius: 3px !important;
}

.Music-buttons {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bolder;
  text-transform: capitalize;
}

.news-btn-e {
  font-size: 11px;
  background: #fff;
  padding: 2px 0px;
  border-radius: 5px;
  position: absolute;
  right: 5px;
}

.home-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}

h6.mb-0.text-truncate.fw-bold.card-title {
  line-height: 1 !important;
  margin-bottom: 0px !important;
  font-size: 15px;
}

button.event-btn.text-white.btn.btn-sm.bg-maroon-opacity.border-0.pt-1 {
  background: #851c1ca1 !important;
  border-radius: 3px !important;
}


/* Pure Dark Theme */
html[data-mshd-theme="dark"] body {
  background: #050b16 !important;
  color: #ffffff !important;
}

html[data-mshd-theme="dark"] .layout-navbar,
html[data-mshd-theme="dark"] .bg-navbar-theme,
html[data-mshd-theme="dark"] .layout-menu,
html[data-mshd-theme="dark"] .bg-menu-theme,
html[data-mshd-theme="dark"] .card,
html[data-mshd-theme="dark"] .navbar-detached {
  background: rgba(40, 40, 42, 0.95) !important;
  color: #b6bee3 !important;
}

/* Search + inputs */
html[data-mshd-theme="dark"] .form-control,
html[data-mshd-theme="dark"] .input-group-text,
html[data-mshd-theme="dark"] .form-select {
  background: #050b16 !important;
  border-color: #1e293b !important;
  color: #ffffff !important;
}

.mshd-homepage .cardbg {
  background: #33374d !important;
  border: 1px solid #434968 !important;
}

/* Sidebar active */
html[data-mshd-theme="dark"] .menu-item.active>.menu-link {
  background: linear-gradient(90deg, #3b000f, #7a1d3a) !important;
  color: #ffffff !important;
}

/* Dropdown */
html[data-mshd-theme="dark"] .dropdown-menu {
  background: #0b1220 !important;
  border: 1px solid #1e293b !important;
}

/* Text */
html[data-mshd-theme="dark"] .text-heading,
html[data-mshd-theme="dark"] .nav-link,
html[data-mshd-theme="dark"] .menu-link,
html[data-mshd-theme="dark"] h1,
html[data-mshd-theme="dark"] h2,
html[data-mshd-theme="dark"] h3,
html[data-mshd-theme="dark"] h4,
html[data-mshd-theme="dark"] h5,
html[data-mshd-theme="dark"] h6,
html[data-mshd-theme="dark"] p,
html[data-mshd-theme="dark"] span {
  color: #ffffff !important;
}



/* Episodes page search and dropdown border */

.dark-style #searchEpisodes,
.dark-style #artistFilter,
.dark-style #musicFilter {
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  background-color: #111827 !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.dark-style #searchEpisodes::placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
}

.dark-style #searchEpisodes:focus,
.dark-style #artistFilter:focus,
.dark-style #musicFilter:focus {
  border-color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
}



/* Fix top navbar search */
.dark-style #layout-navbar .input-group {
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  background: #111827 !important;
}

.dark-style #layout-navbar .input-group-text {
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
}

.dark-style #layout-navbar .form-control {
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}




/* Fix page filter dropdown size */
.dark-style .search-filter-bar select,
.dark-style .search-filter-bar .form-select,
.dark-style #artistFilter,
.dark-style #musicFilter,
.dark-style #genreFilter,
.dark-style #categoryFilter {
  width: 150px !important;
  min-width: 150px !important;
  height: 31px !important;
  padding: 4px 36px 4px 16px !important;
  font-size: 15px !important;
  border-radius: 999px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  background-color: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* Search box size */
.dark-style .search-filter-bar input,
.dark-style .search-filter-bar .search-input,
.dark-style #searchEpisodes,
.dark-style #searchNews {
  width: 250px !important;
  height: 31px !important;
  padding: 4px 45px 4px 18px !important;
}


/* Dropdown text dark like search */
.dark-style #artistFilter,
.dark-style #musicFilter,
.dark-style #genreFilter,
.dark-style #categoryFilter {
  color: #b6becb !important;
}

/* Dropdown option text */
.dark-style #artistFilter option,
.dark-style #musicFilter option,
.dark-style #genreFilter option,
.dark-style #categoryFilter option {
  color: #111827 !important;
}


/* ===== TOP NAVBAR SEARCH FINAL FIX ===== */

.dark-style #layout-navbar .nav-item.mb-0 {
  position: relative !important;
}

.dark-style #layout-navbar .input-group {
  width: 250px !important;
  height: 41px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  background: transparent !important;
  position: relative !important;
}

/* input */
.dark-style #layout-navbar .form-control {
  height: 41px !important;
  padding: 4px 50px 4px 18px !important;
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* placeholder */
.dark-style #layout-navbar .form-control::placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* search icon RIGHT SIDE */
.dark-style #layout-navbar .input-group-text {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;

  z-index: 5 !important;
}

/* icon */
.dark-style #layout-navbar .input-group-text i,
.dark-style #layout-navbar .input-group-text svg {
  color: #ffffff !important;
  font-size: 18px !important;
}

/* Dark mode dropdown arrow fix */
.dark-style #artistFilter,
.dark-style #musicFilter,
.dark-style #genreFilter,
.dark-style #categoryFilter,
.dark-style .form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;

  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;

  padding-right: 40px !important;
}


/* ===== DARK MODE SELECT BORDER + ARROW FIX ===== */

.dark-style select,
.dark-style .form-select,
.dark-style #artistFilter,
.dark-style #musicFilter,
.dark-style #videoFilter,
.dark-style #sortBy,
.dark-style #categoryFilter,
.dark-style #genreFilter {
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 999px !important;
  background-color: transparent !important;
  color: #d1d5db !important;
  box-shadow: none !important;

  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;

  padding-right: 42px !important;
}

/* options dropdown text */
.dark-style select option {
  color: #111827 !important;
  background: #ffffff !important;
}

/* ===== DARK MODE DROPDOWN OPTIONS ===== */

.dark-style select,
.dark-style .form-select {
  background-color: #0b1220 !important;
  color: #ffffff !important;
}

/* dropdown list */
.dark-style select option {
  background-color: #111827 !important;
  color: #ffffff !important;
}

/* selected / hover option */
.dark-style select option:checked,
.dark-style select option:hover {
  background-color: #1f2937 !important;
  color: #ffffff !important;
}



/* =========================
   MUSIC COMMENT MODAL DARK MODE
========================= */

.dark-style #commentMusicModal .modal-content {
  background: #252126 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
}

.dark-style #commentMusicModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.dark-style #commentMusicModal .modal-title {
  color: #ffffff !important;
}

.dark-style #commentMusicModal #music-comments-list .rounded {
  background: #f4f4f5 !important;
  color: #9ca3af !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 10px !important;
  min-height: 70px;
}

.dark-style #commentMusicModal #music-comment-text {
  background: #252126 !important;
  color: #ffffff !important;
  border: 1px solid #5f5a63 !important;
}

.dark-style #commentMusicModal #music-comment-text::placeholder {
  color: #bdbdbd !important;
}

/* TEXTAREA LABEL FIX */

.dark-style #commentMusicModal .form-floating label {
  display: none !important;
}

.dark-style #commentMusicModal #music-comment-text {
  padding: 22px 18px !important;
}

/* CANCEL BUTTON FIX */

/* CANCEL BUTTON FINAL FIX */

.dark-style #commentMusicModal .modal-footer .btn-label-secondary {
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transition: 0.3s ease;
}

.dark-style #commentMusicModal .modal-footer .btn-label-secondary:hover,
.dark-style #commentMusicModal .modal-footer .btn-label-secondary:focus {
  background: #8b1e3f !important;
  background-color: #8b1e3f !important;
  border-color: #8b1e3f !important;
  color: #ffffff !important;
}

.dark-style #commentMusicModal .btn-close {
  filter: invert(1) !important;
}

.hero-section .btn-outline-light {
  background: linear-gradient(90deg, #8b1e3f, #b12552) !important;
  border: none !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  padding: 14px 42px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.hero-section .btn-outline-light:hover {
  background: linear-gradient(90deg, #a3244b, #cf2d61) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* SERVICES COUNT LEFT SIDE FIX */
.navbar-sub-header .d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark {
  position: absolute !important;
  left: 310px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  display: flex !important;
  align-items: center !important;
  gap: 8px !important;

  color: #ffffff !important;
  z-index: 10 !important;
}

.navbar-sub-header .d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark i,
.navbar-sub-header .d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark svg {
  font-size: 18px !important;
  color: #ffffff !important;
}

.navbar-sub-header .total-services {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

/* SERVICES COUNT PERFECT ALIGNMENT */
.navbar-sub-header .d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark {
  position: absolute !important;
  left: 215px !important;
  /* pehla 310 si */

  top: 50% !important;
  transform: translateY(-50%) !important;

  display: flex !important;
  align-items: center !important;
  gap: 6px !important;

  color: #ffffff !important;
  z-index: 10 !important;
}

.navbar-sub-header .total-services {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

/* Services count visible in light mode */
.light-style .navbar-sub-header .d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark,
.light-style .navbar-sub-header .d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark i,
.light-style .navbar-sub-header .d-none.d-xl-flex.gap-3.align-items-center.ms-2.text-dark svg,
.light-style .navbar-sub-header .total-services {
  color: #2f3349 !important;
}

/* Services categories dropdown dark mode options fix */
.dark-style #servicesNavbarContent select option,
.dark-style #servicesNavbarContent .form-select option {
  background-color: #242426 !important;
  color: #ffffff !important;
}

.dark-style #servicesNavbarContent select option:hover,
.dark-style #servicesNavbarContent .form-select option:hover,
.dark-style #servicesNavbarContent select option:checked,
.dark-style #servicesNavbarContent .form-select option:checked {
  background: #242426 !important;
  color: #ffffff !important;
}

/* Services card details button top-right */
.service-card-wrapper .btn.bg-maroon {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 20 !important;
}




/* Service comment/share modal - light mode */
#serviceCommentModal .modal-content,
#serviceShareModal .modal-content {
  background: #ffffff !important;
  color: #222222 !important;
}

#serviceCommentModal .modal-content h4,
#serviceShareModal .modal-content h4 {
  color: #222222 !important;
}

#serviceCommentText {
  background: #ffffff !important;
  color: #222222 !important;
  border: 1px solid #d0d0d0 !important;
}

#serviceCommentText::placeholder {
  color: #777777 !important;
}

#serviceCommentsList .bg-light {
  background: #f4f4f5 !important;
  color: #777777 !important;
}

/* Service comment/share modal - dark mode */
.dark-style #serviceCommentModal .modal-content,
.dark-style #serviceShareModal .modal-content {
  background: #252126 !important;
  color: #ffffff !important;
}

.dark-style #serviceCommentModal .modal-content h4,
.dark-style #serviceShareModal .modal-content h4 {
  color: #ffffff !important;
}

.dark-style #serviceCommentText {
  background: #050b14 !important;
  color: #ffffff !important;
  border: 1px solid #5f5a63 !important;
}

.dark-style #serviceCommentText::placeholder {
  color: #bdbdbd !important;
}




/* Service share modal light mode fix */
#serviceShareModal .modal-content {
  background: #ffffff !important;
  color: #222222 !important;
}

#serviceShareModal h4,
#serviceShareModal a,
#serviceShareModal button {
  color: #222222 !important;
}

#serviceShareModal #serviceShareLink {
  background: #f5f5f5 !important;
  color: #222222 !important;
  border: 1px solid #dddddd !important;
}

/* Light mode close button */
#serviceShareModal .btn-close,
#serviceCommentModal .btn-close {
  background-color: #ffffff !important;
  filter: none !important;
  opacity: 1 !important;
}

/* Dark mode keep same */
.dark-style #serviceShareModal .modal-content {
  background: #252126 !important;
  color: #ffffff !important;
}

.dark-style #serviceShareModal h4,
.dark-style #serviceShareModal a,
.dark-style #serviceShareModal button {
  color: #ffffff !important;
}

.dark-style #serviceShareModal #serviceShareLink {
  background: #050b14 !important;
  color: #ffffff !important;
  border: 1px solid #5f5a63 !important;
}

.dark-style #serviceShareModal .btn-close,
.dark-style #serviceCommentModal .btn-close {
  background-color: #000000 !important;
  filter: invert(1) !important;
  opacity: 1 !important;
}

.dark-style .founder-value-success {
  background: #dff7ea !important;
  color: #22c76f !important;
  border-radius: 50% !important;
}

.dark-style.founder-value-info {
  background: #d9f8fd !important;
  color: #00cfe8 !important;
  border-radius: 50% !important;
}

.dark-style .founder-value-warning {
  background: #59484c !important;
  color: #ffae42 !important;
}

.dark-style .founder-value-primary {
  background: #eeeaff !important;
  color: #7367f0 !important;
  border-radius: 50% !important;
}




.founder-value-primary,
.founder-value-success,
.founder-value-info {
  width: 46px !important;
  height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 0 !important;
}

.founder-value-primary {
  background: #eeeaff !important;
  color: #7367f0 !important;
}

.founder-value-success {
  background: #dff7ea !important;
  color: #22c76f !important;
}

.founder-value-info {
  background: #d9f8fd !important;
  color: #00cfe8 !important;
}

.dark-style .founder-value-primary {
  background: #2e294f !important;
  color: #ffffff !important;
}

.dark-style .founder-value-success {
  background: #214a4d !important;
  color: #35d07f !important;
}

.dark-style .founder-value-info {
  background: #1d5069 !important;
  color: #00cfff !important;
}

.dark-style .founder-value-primary,
.dark-style .founder-value-success,
.dark-style .founder-value-info,
.dark-style .founder-value-warning {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  border-radius: 0 !important;
  flex-shrink: 0 !important;
}

/* History timeline dark mode fix */
.dark-style .card-body {
  color: #5f5a6b !important;
}






.dark-style .card-body p,
.dark-style .card-body .text-body,
.dark-style .card-body .timeline-event {
  color: rgba(255, 255, 255, 0.88) !important;
}

/* ABOUT PAGE MAIN HEADING WHITE */
.dark-style .about-header .card-title,
.dark-style .about-header h2,
.dark-style .text-heading,
.dark-style .text-gradient {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* DARK MODE ONLY - ALL ABOUT PAGE HEADINGS WHITE */
.dark-style .premium-card .card-title,
.dark-style .about-header .card-title,
.dark-style .text-heading,
.dark-style h4.card-title,
.dark-style h5.card-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

.dark-style .timeline-item .timeline-event {
  background: #31364f !important;
  color: #ffffff !important;
}

.dark-style .timeline-item .timeline-event h4,
.dark-style .timeline-item .timeline-event h5,
.dark-style .timeline-item .timeline-event p {
  color: #ffffff !important;
}

/* History dark mode full fix */
.dark-style .timeline-event {
  background: #31364f !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
}

.dark-style .timeline-event::before,
.dark-style .timeline-event::after {
  background: #31364f !important;
  border-color: #31364f !important;
}

.dark-style .timeline-event h4,
.dark-style .timeline-event h5,
.dark-style .timeline-event p,
.dark-style .timeline-event span,
.dark-style .timeline-event .timeline-event-time {
  color: #ffffff !important;
}

.dark-style .timeline-indicator {
  background-color: #31364f !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


/* Timeline arrow exact fix */
.dark-style .timeline-item-left .timeline-event {
  position: relative;
  overflow: visible !important;
}


.dark-style .timeline-item-right .timeline-event::before {
  left: -24px !important;
  border-right: 24px solid #31364f !important;
  border-top: 24px solid transparent !important;
  border-bottom: 24px solid transparent !important;
  border-left: 0 !important;
  background: transparent !important;
}

.dark-style .timeline-indicator svg,
.dark-style .timeline-indicator i {
  background: transparent !important;
}

.dark-style .timeline-indicator::before,
.dark-style .timeline-indicator::after {
  display: none !important;
}

.dark-style .timeline-event::before {
  display: none !important;
  content: none !important;
  border: 0 !important;
  background: transparent !important;
}

.timeline-event::before {
  display: none !important;
  content: none !important;
  border: 0 !important;
  background: transparent !important;
}



.dark-style .timeline-item-left .timeline-event,
.dark-style .timeline-item-right .timeline-event {
  position: relative !important;
  overflow: visible !important;
  background: #31364f !important;
  border-radius: 8px !important;
}

.dark-style .timeline-item-left .timeline-event::before,
.dark-style .timeline-item-left .timeline-event::after,
.dark-style .timeline-item-right .timeline-event::before,
.dark-style .timeline-item-right .timeline-event::after {
  content: "" !important;
  position: absolute !important;
  top: 20px !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  display: block !important;
}

.dark-style .timeline-item-left .timeline-event::before,
.dark-style .timeline-item-left .timeline-event::after {
  right: -18px !important;
  border-top: 18px solid transparent !important;
  border-bottom: 18px solid transparent !important;
  border-left: 18px solid #31364f !important;
  border-right: 0 !important;
}

.dark-style .timeline-item-right .timeline-event::before,
.dark-style .timeline-item-right .timeline-event::after {
  left: -18px !important;
  border-top: 18px solid transparent !important;
  border-bottom: 18px solid transparent !important;
  border-right: 18px solid #31364f !important;
  border-left: 0 !important;
}


.dark-style .timeline.timeline-center .timeline-item-right .timeline-event::after {
  content: "" !important;
  position: absolute !important;
  top: 20px !important;
  left: -18px !important;
  width: 0 !important;
  height: 0 !important;
  display: block !important;
  background: transparent !important;

  border-top: 18px solid transparent !important;
  border-bottom: 18px solid transparent !important;
  border-right: 18px solid #31364f !important;
  border-left: 0 !important;

  z-index: 99 !important;
}


/* History page stats cards exact CodeIgniter style */
.dark-style .row.g-4.mb-5 .card.bg-label-primary {
  background: #46457b !important;
  border: none !important;
}

.dark-style .row.g-4.mb-5 .card.bg-label-success {
  background: #35595b !important;
  border: none !important;
}

.dark-style .row.g-4.mb-5 .card.bg-label-info {
  background: #2f5f7b !important;
  border: none !important;
}

.dark-style .row.g-4.mb-5 .card.bg-label-warning {
  background: #5b4d55 !important;
  border: none !important;
}

.dark-style .row.g-4.mb-5 .card .card-body {
  background: transparent !important;
}

.dark-style .row.g-4.mb-5 .card h3,
.dark-style .row.g-4.mb-5 .card p {
  color: #ffffff !important;
}


/* CORE VALUES FINAL */
.dark-style .core-values .card {
  background: #221f25 !important;
  border: none !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25) !important;
  border-radius: 4px !important;
}

.dark-style .core-values .card h5,
.dark-style .core-values .card p,
.dark-style .core-values .card .text-body,
.dark-style .core-values .card .card-title,
.dark-style .core-values .card .card-text {
  color: #ffffff !important;
  opacity: 1 !important;
}

.dark-style .core-values .avatar-initial {
  width: 72px !important;
  height: 72px !important;
  border-radius: 0 !important;
}

.dark-style .core-values .bg-label-primary {
  background: #403f7a !important;
  color: #7367f0 !important;
}

.dark-style .core-values .bg-label-success {
  background: #315556 !important;
  color: #28c76f !important;
}

.dark-style .core-values .bg-label-info {
  background: #2b5670 !important;
  color: #00cfe8 !important;
}



/* ===== Meet Founder Section Fix ===== */

.dark-style .founder-section h2,
.dark-style .founder-section h3,
.dark-style .founder-section h4,
.dark-style .founder-section h5,
.dark-style .founder-section p {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* First paragraph light purple */
.dark-style .founder-section p:first-of-type {
  color: #bfc2e8 !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
}

/* Second paragraph pure white */
.dark-style .founder-section p:last-of-type {
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  font-weight: 500 !important;
}

/* Button */
.dark-style .founder-section .btn {
  background: linear-gradient(90deg, #8b0d35, #b51d54) !important;
  border: none !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
}




/* Founder section height fix */

.row.mb-5 .card {
  min-height: auto !important;
}

.row.mb-5 .card-body {
  padding: 20px !important;
}

.founder-section img {
  height: 360px !important;
  width: 100% !important;
  max-width: 360px !important;
  object-fit: cover !important;
  display: block !important;
}

.founder-section .col-md-4 {
  flex: 0 0 28% !important;
  max-width: 28% !important;
}

.founder-section .col-md-8 {
  flex: 0 0 72% !important;
  max-width: 72% !important;
}

.founder-section .card-body {
  padding: 24px 28px !important;
}

.founder-section {
  margin-bottom: 20px !important;
}



/* Meet Team social icons - dark mode only */
.dark-style .card-body .d-flex.justify-content-center.gap-2 a,
.dark-style .card-body .d-flex.justify-content-center.gap-2 .btn {
  background: #2f3858 !important;
  color: #0da8ff !important;
  border: none !important;
}

.dark-style .card-body .d-flex.justify-content-center.gap-2 a i,
.dark-style .card-body .d-flex.justify-content-center.gap-2 .btn i {
  color: #0da8ff !important;
}


.dark-style .bg-label-info,
.dark-style .card.bg-label-info,
.dark-style .card.bg-label-info .card-body {
  background-color: #2f5973 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Work culture paragraph white fix */

.dark-style .bg-label-info .card-body p,
.dark-style .bg-label-info .text-body,
.dark-style .bg-label-info p.fs-5 {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* Service title visible white */

.dark-style .service-card-wrapper a.text-dark,
.dark-style .service-card-wrapper .card-title a {
  color: #ffffff !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}


/* Founder section button smaller */
.founder-section .btn-lg {
  padding: 4px 12px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  border-radius: 8px !important;
}


/* Meet Our Founder heading white */
.dark-style .founder-section .card-title,
.dark-style .founder-section h3 {
  color: #ffffff !important;
}

.presenter-card-wrapper .event-image-wrapper img {
  object-fit: cover !important;
  object-position: center 45% !important;
}

/* Presenter name white */
.presenter-card-wrapper .card-title a,
.presenter-card-wrapper .card-title {
  color: #ffffff !important;
}

/* Follow button text black */
.follow-text,
.follow-btn .follow-text,
.presenter-card-wrapper .follow-text {
  color: #000000 !important;
  font-weight: 600 !important;
}

/* Presenter name black only in light mode */
html[data-mshd-theme="light"] .presenter-card-wrapper .card-title a,
html[data-mshd-theme="light"] .presenter-card-wrapper .card-title {
  color: #000000 !important;
}

#serviceCommentsList span {
  color: #000000 !important;
}

/* MODELS PAGE FOLLOW TEXT FIX - DARK MODE ONLY */
.dark-style .follow-pill {
  background: #ffffff !important;
  border: 1px solid #dcdcdc !important;
}

.dark-style .follow-pill .follow-text {
  color: #000000 !important;
  font-weight: 600 !important;
}

.dark-style .event-card .card-title a.text-dark {
  color: #ffffff !important;
}


/* MODELS SEARCH & FILTER WHITE BORDER FIX */

.dark-style .navbar-sub-header .form-control,
.dark-style .navbar-sub-header .form-select,
.dark-style .navbar-sub-header .search-input,
.dark-style .navbar-sub-header select,
.dark-style .navbar-sub-header input {
  /*border: 1.5px solid rgba(255, 255, 255, 0.95) !important;*/
  box-shadow: none !important;
}
.dark-style .navbar-sub-header .form-select {
   border: 1.5px solid rgba(255, 255, 255, 0.95) !important; 
}
/* Focus state */
.dark-style .navbar-sub-header .form-control:focus,
.dark-style .navbar-sub-header .form-select:focus,
.dark-style .navbar-sub-header .search-input:focus,
.dark-style .navbar-sub-header select:focus,
.dark-style .navbar-sub-header input:focus {
  /*border: 1.5px solid #ffffff !important;*/
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
}




/*models comment*/
.model-comment-popup {
  background: #241f28 !important;
  border-radius: 14px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);

  max-width: 650px !important;
  margin: auto;
}

.model-comment-popup .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
}

.model-comment-popup .modal-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.model-comment-popup .modal-body {
  padding: 24px;
}

.model-comment-popup .modal-footer {
  padding: 0 24px 24px;
}

.model-comment-textarea {
  background: #1b1720 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-radius: 10px;
  padding: 18px;
  min-height: 120px;
  resize: none;
}

.model-comment-textarea::placeholder {
  color: #bcbcbc;
}

#modelCommentsList {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 18px;
}

#modelCommentsList .comment-item {

  background: #f3f3f3 !important;

  border-radius: 10px !important;

  min-height: 72px;

  padding: 18px 20px !important;

  margin-bottom: 16px !important;

  display: flex !important;

  justify-content: space-between !important;

  align-items: center !important;

  width: 100%;
}

#modelCommentsList .comment-text {

  color: #8b8b8b !important;

  font-size: 16px !important;

  font-weight: 500 !important;

  line-height: 1.4 !important;

  padding-right: 12px;
}

#modelCommentsList .delete-model-comment {

  color: #ff4d4d !important;

  font-size: 24px !important;

  cursor: pointer;

  flex-shrink: 0;
}

#modelCustomToast {
  position: fixed;
  right: 35px;
  bottom: 35px;
  background: #f3f3f3;

  padding: 22px 30px;
  border-radius: 2px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 390px;
  min-height: 95px;

  z-index: 9999999999 !important;

  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all .3s ease;
}

#modelCustomToast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#modelCustomToast i {
  color: #12b76a;
  font-size: 34px;
}

#modelToastText {
  color: #00c96b;
  font-size: 20px;
  font-weight: 500;
}

/* DARK MODE COMMENT TEXT FIX */

.dark-style .model-single-comment {
  color: #000 !important;
}

.dark-style .model-single-comment span {
  color: #000 !important;
}

.dark-style .model-single-comment p {
  color: #000 !important;
}

.model-comment-text {
  color: #000 !important;
  font-size: 18px;
  font-weight: 500;
}

/* DARK MODE TOASTER TEXT FIX */

.dark-style #modelToastText {
  color: #00c96b !important;
}

.dark-style #modelCustomToast {
  background: #f3f3f3 !important;
}


/* PRESENTER COMMENT MODAL FIX */

.model-comment-popup {
  background: #241f28 !important;
  border-radius: 0px !important;
  overflow: hidden;
  position: relative;
  border: none !important;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);
}


/* .model-comment-popup .modal-header {
  display: none !important;
} */

.comment-heading {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.model-comment-popup .modal-body {
  padding: 18px !important;
}

.model-comment-popup .modal-footer {
  border-top: none !important;
  padding: 0 28px 28px !important;
  background: transparent !important;
}

#presenterCommentModal .btn-close {

  filter: invert(1);

  opacity: 1 !important;

  background-color: #000 !important;

  border-radius: 0px !important;

  width: 28px !important;

  height: 28px !important;

  min-width: 28px !important;

  min-height: 28px !important;

  background-size: 10px !important;

  padding: 6px !important;

  margin: 0 !important;

  position: absolute;

  top: 18px;

  right: 18px;

  z-index: 999;

}

#presenterCommentsList {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 3px;
}

#presenterCommentsList .comment-item {
  background: #f3f3f3;
  border-radius: 4px;
  min-height: 58px;
  padding: 12px 14px;
  margin-bottom: 10px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* #presenterCommentsList .comment-text {
  color: #9a9a9a;
  font-size: 18px;
} */

#presenterCommentInput {
  background: #211b24 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  min-height: 120px;
}

#presenterCommentInput::placeholder {
  color: #bdbdbd;
}

/* COMMENT TEXT FIX */

.comment-text {

  color: #8b8b8b !important;

  font-size: 14px !important;

  font-weight: 500 !important;

  line-height: 1.3 !important;

}

#presenterCommentModal .modal-dialog {

  max-width: 600px !important;

}

.comment-input-wrapper label {
  display: none !important;
}


#modelCustomToast {

  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #f3f3f3;
  color: #12b76a !important;
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 340px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 18px 28px;
  border-radius: 4px;
  z-index: 999999;
  font-size: 16px;
  font-weight: 600;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: 0.3s ease;
}

#modelCustomToast.show {

  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.presenter-toast {

  position: fixed;
  right: 25px;

  min-width: 260px;

  background: #f3f3f3;
  color: #12b76a;

  padding: 18px 24px;
  border-radius: 4px;

  font-size: 16px;
  font-weight: 600;

  z-index: 999999;

  opacity: 0;

  transform: translateY(120px);

  transition: all .4s ease;
}


/* LIGHT MODE COMMENT MODAL FIX */

html.light-style .model-comment-popup,
body.light-style .model-comment-popup {

  background: #ffffff !important;

  box-shadow: 0 0 40px rgba(0, 0, 0, 0.12) !important;

}

html.light-style .comment-heading,
html.light-style .modal-title,
body.light-style .comment-heading,
body.light-style .modal-title {

  color: #222 !important;

}

html.light-style #presenterCommentInput,
body.light-style #presenterCommentInput {

  background: #ffffff !important;

  color: #222 !important;

  border: 1px solid #dcdcdc !important;

}

html.light-style #presenterCommentInput::placeholder,
body.light-style #presenterCommentInput::placeholder {

  color: #666 !important;

}

html.light-style #presenterCommentsList .comment-item,
body.light-style #presenterCommentsList .comment-item {

  background: #f5f5f5 !important;

}

html.light-style .comment-text,
body.light-style .comment-text {

  color: #444 !important;

}

html.light-style #presenterCommentModal .btn-close,
body.light-style #presenterCommentModal .btn-close {

  background-color: #f3f3f3 !important;

  filter: none !important;

}

html.light-style .model-comment-popup .modal-footer,
body.light-style .model-comment-popup .modal-footer {

  background: #fff !important;

}



.model-toast {

  position: fixed;

  right: 25px;

  min-width: 260px;

  background: #f3f3f3;

  color: #12b76a;

  padding: 18px 24px;

  border-radius: 4px;

  font-size: 16px;

  font-weight: 600;

  z-index: 999999;

  opacity: 0;

  transform: translateY(120px);

  transition: all .4s ease;

}


/* PRESENTER SHARE MsODAL */

.presenter-share-popup {

  background: #151922 !important;

  border-radius: 18px !important;

  border: none !important;

  overflow: hidden;

  position: relative;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);

}

.presenter-share-popup .modal-body {

  padding: 30px !important;

}

.presenter-share-popup h4 {

  color: #ffffff !important;

  font-size: 20px !important;

  font-weight: 700 !important;

  margin-bottom: 28px !important;

}

.presenter-share-popup .share-option i {

  font-size: 52px !important;

}

.presenter-share-popup .share-option span {

  color: #ffffff !important;

  font-size: 15px !important;

  font-weight: 500 !important;

  margin-top: 10px !important;

  display: block;

}

.presenter-share-popup input {

  background: #060b16 !important;

  border: 1px solid rgba(255, 255, 255, 0.06) !important;

  color: #ffffff !important;

  height: 46px !important;

  border-radius: 8px !important;

  padding: 12px 16px !important;

  font-size: 15px !important;

}

.presenter-share-popup input::placeholder {

  color: #9ca3af !important;

}


/* LIGHT MODE SHARE MODAL */

html.light-style .presenter-share-popup,
body.light-style .presenter-share-popup {

  background: #ffffff !important;

}

html.light-style .presenter-share-popup h4,
html.light-style .presenter-share-popup .share-option span,
body.light-style .presenter-share-popup h4,
body.light-style .presenter-share-popup .share-option span {

  color: #222 !important;

}

html.light-style .presenter-share-popup input,
body.light-style .presenter-share-popup input {

  background: #f5f5f5 !important;

  border: 1px solid #dcdcdc !important;

  color: #222 !important;

}

html.light-style .presenter-share-popup .btn-close,
body.light-style .presenter-share-popup .btn-close {

  background-color: #f3f3f3 !important;

  filter: none !important;

}

.presenter-share-popup {

  border-radius: 0px !important;

  overflow: hidden !important;

}

.presenter-share-popup .modal-header {

  position: relative !important;

}

.presenter-share-popup .btn-close {

  position: absolute;
  top: -8px;
  right: -6px;

  width: 42px !important;
  height: 42px !important;


  min-width: 42px !important;
  min-height: 42px !important;

  padding: 0 !important;
  border-radius: 0 !important;

  background-color: #000 !important;

  background-size: 12px !important;
  filter: invert(1) !important;
  opacity: 1 !important;

  filter: none !important;

  box-shadow: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;

}




/* MODEL SHARE POPUP */

.share-popup-dark {
  background: #071126 !important;
  border-radius: 6px !important;
  overflow: hidden;
}

.share-popup-dark .modal-body {
  background: #071126 !important;
}

.share-popup-dark .modal-header {
  background: transparent !important;
}

.share-social-icon {
  font-size: 52px;
  transition: 0.3s;
}

.share-item:hover .share-social-icon {
  transform: scale(1.1);
}

.facebook-icon {
  color: #1877F2;
}

.twitter-icon {
  color: #1DA1F2;
}

.whatsapp-icon {
  color: #25D366;
}

.copy-icon {
  color: #c7c7ff;
}

.share-link-input {
  background: #020817 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  height: 46px;
  border-radius: 10px;
}

.share-link-input:focus {
  box-shadow: none !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* =========================
MODEL SHARE MODAL
========================= */

/* LIGHT MODE */
.share-popup-dark {
  background: #ffffff !important;
  border-radius: 14px !important;
  overflow: hidden;
  border: none !important;
}

.share-popup-dark .modal-header {
  background: #ffffff !important;
  border-bottom: none !important;
}

.share-popup-dark .modal-body {
  background: #ffffff !important;
}

/* INPUT */
.share-link-input {
  background: #f5f5f5 !important;
  border: 1px solid #dddddd !important;
  color: #000000 !important;
  height: 48px;
  border-radius: 10px;
}

.share-link-input:focus {
  box-shadow: none !important;
  border-color: #cccccc !important;
}

/* CLOSE BUTTON */
.share-popup-dark .btn-close {
  background-color: #000000 !important;
  opacity: 1 !important;
  border-radius: 0px !important;
  padding: 10px !important;
  box-shadow: none !important;
}

/* ICONS */
.share-social-icon {
  font-size: 52px;
}

.facebook-icon {
  color: #1877F2;
}

.twitter-icon {
  color: #1DA1F2;
}

.whatsapp-icon {
  color: #25D366;
}

.copy-icon {
  color: #b6b2e8;
}

/* =========================
DARK MODE
========================= */

.dark-style .share-popup-dark {
  background: #071126 !important;
}

.dark-style .share-popup-dark .modal-header {
  background: #071126 !important;
}

.dark-style .share-popup-dark .modal-body {
  background: #071126 !important;
}

.dark-style .share-link-input {
  background: #020817 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.dark-style .share-popup-dark h3,
.dark-style .share-popup-dark div {
  color: #ffffff !important;
}

/* SHARE ICONS */

.share-icons-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 35px;
  margin-top: 20px;
  gap: 20px;
}

.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.share-label {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

/* DARK MODE LABELS */

.dark-style .share-label {
  color: #ffffff !important;
}

/* SHARE MODAL SIZE */

#presenterShareModal .modal-dialog {
  max-width: 760px !important;
  width: 35% !important;
}

#presenterShareModal .modal-body {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* CLOSE BUTTON */

#presenterShareModal .btn-close {
  background-color: #000000 !important;
  border-radius: 0px !important;
  width: 34px !important;
  height: 34px !important;
  opacity: 1 !important;
  box-shadow: none !important;
  padding: 0px !important;
}

/* SHARE MODAL RECTANGLE */

#presenterShareModal .modal-content {
  border-radius: 0 !important;
  overflow: visible !important;
}

#presenterShareModal .btn-close:focus {
  box-shadow: none !important;
}

.share-icons-wrapper {
  margin-bottom: 27px !important;
  margin-top: -31px !important;
}


/* DEFAULT FOLLOW BUTTON */

button.follow-pill.follow-btn {

  background: #ffffff !important;

  border: 2px solid #000000 !important;

  color: #000000 !important;

  border-radius: 50px !important;

  min-width: 63px !important;

  height: 29px !important;


  padding: 0 14px !important;

  display: inline-flex !important;

  align-items: center !important;

  justify-content: center !important;

  font-size: 14px !important;

  box-shadow: none !important;
}




/* DEFAULT FOLLOW TEXT */

.follow-pill.follow-btn .follow-text {

  color: #000000 !important;

  font-size: 14px !important;

  font-weight: 700 !important;

  line-height: 1 !important;
}


/* FOLLOWING BUTTON */
button.follow-pill.follow-btn.following-btn {

  background: #198754 !important;

  border: 2px solid #198754 !important;

  color: #ffffff !important;
}


/* FOLLOWING TEXT */

.follow-pill.follow-btn.following-btn .follow-text {

  color: #ffffff !important;
}

/*Episodes page*/
/* =========================================
   EPISODE COMMENTS MODERN UI
========================================= */

.comment-modern-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  transition: 0.3s;
}

.comment-modern-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.reply-btn {
  font-weight: 600;
}

.comment-actions i {
  margin-right: 4px;
}

.comment-user-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.comment-actions span {
  color: #9ca3af;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.comment-actions span:hover {
  color: white;
}

#episodeCommentInput {
  background: #0b1220 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border-radius: 14px !important;
  padding: 15px !important;
}

#episodeCommentInput::placeholder {
  color: #9ca3af !important;
}

.comment-modal-content {
  background: #0f172a;
}


#episodeCommentsContainer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-modern-card {
  background: #111827;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
  width: 100%;
}

.comment-modern-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.reply-comment {
  margin-left: 60px;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  padding-left: 15px;
}

.comment-modern-card {
  background: #071126;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.reply-box textarea {
  background: #071126 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.reply-box textarea:focus {
  box-shadow: none !important;
}

/* =================================
   LIGHT MODE FULL MODAL FIX
================================= */

/* =================================
   LIGHT MODE COMMENT BOXES
================================= */

html:not(.dark-style) #episodeCommentModal .comment-modern-card {
  background: #ffffff !important;
  border: 1px solid #dcdcdc !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10) !important;
}

/* TEXT BLACK */

html:not(.dark-style) #episodeCommentModal .comment-modern-card * {
  color: #000000 !important;
}

/* REPLY LABEL */

html:not(.dark-style) #episodeCommentModal .replying-label {
  color: #0dcaf0 !important;
}

/* REPLY BUTTON */

html:not(.dark-style) #episodeCommentModal .reply-btn {
  color: #0d6efd !important;
}

/* DELETE BUTTON */

html:not(.dark-style) #episodeCommentModal .delete-comment {
  color: #dc3545 !important;
}

/* FULL LIGHT MODE COMMENT AREA */

html:not(.dark-style) #episodeCommentModal .modal-body {
  background: #ffffff !important;
}

/* COMMENTS WRAPPER */

html:not(.dark-style) #episodeCommentModal .comments-wrapper,
html:not(.dark-style) #episodeCommentModal .comments-container,
html:not(.dark-style) #episodeCommentModal .comments-list {
  background: #ffffff !important;
}

/* REMOVE BLUE/GREEN BG */

html:not(.dark-style) #episodeCommentModal .reply-comment,
html:not(.dark-style) #episodeCommentModal .reply-container,
html:not(.dark-style) #episodeCommentModal .reply-wrapper {
  background: transparent !important;
}

/* LIGHT MODE MODAL HEADER */

html:not(.dark-style) #episodeCommentModal .modal-header {
  background: #ffffff !important;
  border-bottom: 1px solid #e5e7eb !important;
}

/* TITLE BLACK */

html:not(.dark-style) #episodeCommentModal .modal-header h2,
html:not(.dark-style) #episodeCommentModal .modal-header h4,
html:not(.dark-style) #episodeCommentModal .modal-header .modal-title {
  color: #000000 !important;
}

/* CLOSE BUTTON */

html:not(.dark-style) #episodeCommentModal .btn-close,
html:not(.dark-style) #episodeCommentModal .close {
  background-color: #000 !important;
  opacity: 1 !important;
}

/* LIGHT MODE CLOSE BUTTON */

html:not(.dark-style) #episodeCommentModal .btn-close {
  width: 42px !important;
  height: 42px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #000000 !important;
  border-radius: 12px !important;

  background-image: none !important;

  opacity: 1 !important;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;

  position: relative;

  /* ADD THESE */
  top: 0 !important;
  right: 0 !important;

  transition: all 0.3s ease;
}

/* HOVER EFFECT */

html:not(.dark-style) #episodeCommentModal .btn-close::before {
  content: "×";
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}


html:not(.dark-style) #episodeCommentModal .btn-close:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35) !important;
}

/* LIGHT MODE COMMENT INPUT */

html:not(.dark-style) #episodeCommentInput {
  background: #ffffff !important;
  color: #000000 !important;

  border: 1px solid #dcdcdc !important;

  border-radius: 16px !important;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;

  padding: 14px 18px !important;
}

/* PLACEHOLDER */

html:not(.dark-style) #episodeCommentInput::placeholder {
  color: #777777 !important;
}
html:not([dir=rtl]) .input-group-merge .form-control:not(:last-child) {
    border-right: 0 !important;
}
.model-desc {
  min-height: 72px;
  max-height: 72px;
  overflow: hidden;
}

.presenters-home-section .container-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.presenters-home-section .navbar {
  min-height: 42px !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}


/* =========================================
   EXACT SAME GRADIENT COLOR
========================================= */

.bg-maroon,
.card-header.bg-maroon,
.btn-maroon,
.open-tic,
.btn-primary.bg-maroon {

  background: linear-gradient(90deg,
      #4a0014 0%,
      #8b445c 100%) !important;

  border: none !important;
  color: #ffffff !important;
}


/* =========================================
   CTA BUTTONS SAME COLOR
========================================= */

.cta-section .btn-primary,
.cta-section .btn-outline-maroon {

  background: linear-gradient(90deg,
      #4a0014 0%,
      #8b445c 100%) !important;

  border: none !important;
  color: #ffffff !important;
}


/* =========================================
   ACTIVE CATEGORY CARD
========================================= */

.btn-check:checked+.ticket-category-card {

  background: linear-gradient(90deg,
      #4a0014 0%,
      #8b445c 100%) !important;

  border-color: #8b445c !important;

  color: #ffffff !important;
}


/* ICON COLOR */

.btn-check:checked+.ticket-category-card i,
.btn-check:checked+.ticket-category-card span {

  color: #ffffff !important;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.btn-maroon {

  background: linear-gradient(90deg,
      #4a0014 0%,
      #8b445c 100%) !important;

  color: #fff !important;
}


/* =========================================
   VISIT HELP CENTER BUTTON
========================================= */

.cta-section .btn {

  min-width: 220px;
}







/*history*/
.history-wrapper {
  padding: 24px 26px 24px 26px;
  background: #f7f7fb;
  width: 100%;
  overflow-x: hidden;
}

/* HERO */

.history-hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 520px;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;


  background:
    linear-gradient(to right, rgba(0, 0, 0, .88), rgba(0, 0, 0, .52)),
    url('https://images.unsplash.com/photo-1497215842964-222b430dc094?q=80&w=2070&auto=format&fit=crop') center center/cover no-repeat;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .15);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero-desc {
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #ff0080, #a000ff);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255, 0, 128, .25);
  transition: .3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  color: #fff;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

/* COMMON CARD */

.history-card {
  background: #fff;
  border-radius: 32px;
  padding: 34px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
  border: 1px solid #f1f1f1;
}

/* MISSION */

.mission-section {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mission-icon {
  width: 74px;
  height: 74px;
  min-width: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0080, #c400ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(255, 0, 110, .20);
}

.mission-title {
  font-size: 34px;
  font-weight: 900;
  color: #b0005b;
  margin-bottom: 8px;
}

.mission-desc {
  font-size: 14px;
  line-height: 2;
  color: #666;
  margin: 0;
}

/* JOURNEY */

.journey-title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 35px;
  color: #252545;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.timeline-card {
  border-radius: 20px;
  padding: 22px;
  background: #fff;
  border: 1px solid #f2f2f2;
  transition: .3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}

.timeline-year {
  font-size: 22px;
  font-weight: 900;
  color: #23233d;
  margin-bottom: 8px;
}

.timeline-heading {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #2d2d44;
}

.timeline-text {
  font-size: 12px;
  line-height: 1.9;
  color: #6d6d6d;
}

/* STATS */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.stats-card {
  border-radius: 22px;
  padding: 26px 18px;
  text-align: center;
}

.stats-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  margin: auto auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stats-number {
  font-size: 44px;
  font-weight: 900;
  color: #2d2d4b;
  line-height: 1;
}

.stats-label {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}

/* FOUNDER */

.founder-box {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: center;
}

.founder-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.founder-small {
  color: #b0005b;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.founder-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
  color: #292947;
  margin-bottom: 20px;
}

.founder-text {
  font-size: 16px;
  line-height: 2;
  color: #666;
  margin-bottom: 14px;
}

.founder-btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, #9c004f, #d1006a);
  color: #fff;
  padding: 13px 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(190, 0, 90, .16);
}

/* VALUES */

.values-title {
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 28px;
  color: #272746;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
  transition: .3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 18px;
  font-size: 24px;
}

.value-heading {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2d2d46;
}

.value-text {
  font-size: 13px;
  line-height: 2;
  color: #666;
}

/* RESPONSIVE */

@media(max-width:1500px) {

  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:1100px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .founder-box {
    grid-template-columns: 1fr;
  }
}

@media(max-width:991px) {

  .history-wrapper {
    padding: 14px !important;
  }

  .hero-title {
    font-size: 52px;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.8;
  }

  .mission-title,
  .journey-title,
  .values-title {
    font-size: 34px;
  }

  .founder-title {
    font-size: 46px;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .history-hero {
    padding: 50px 26px;
    min-height: auto;
    border-radius: 28px;
  }

  .history-card {
    padding: 24px;
    border-radius: 28px;
  }

  .mission-section {
    flex-direction: column;
    text-align: center;
  }
}


/* LIGHT PREMIUM STATS BORDER */

.stats-card:nth-child(1) {
  border: 1.5px solid #e7ddff;
  box-shadow: 0 8px 20px rgba(177, 139, 255, 0.04);
}

.stats-card:nth-child(2) {
  border: 1.5px solid #d8f1e0;
  box-shadow: 0 8px 20px rgba(103, 194, 126, 0.04);
}

.stats-card:nth-child(3) {
  border: 1.5px solid #d9eef8;
  box-shadow: 0 8px 20px rgba(73, 170, 220, 0.04);
}

.stats-card:nth-child(4) {
  border: 1.5px solid #f2e6d6;
  box-shadow: 0 8px 20px rgba(201, 162, 104, 0.04);
}

/* STATS CARD HOVER EFFECT */

.stats-card {
  transition: all 0.35s ease;
  cursor: pointer;
}

.stats-card:hover {
  transform: translateY(-8px);
}

/* INDIVIDUAL HOVER GLOW */

.stats-card:nth-child(1):hover {
  box-shadow: 0 18px 35px rgba(177, 139, 255, 0.12);
}

.stats-card:nth-child(2):hover {
  box-shadow: 0 18px 35px rgba(103, 194, 126, 0.12);
}

.stats-card:nth-child(3):hover {
  box-shadow: 0 18px 35px rgba(73, 170, 220, 0.12);
}

.stats-card:nth-child(4):hover {
  box-shadow: 0 18px 35px rgba(201, 162, 104, 0.12);
}

/* =========================================
                             PREMIUM DARK MODE - HISTORY PAGE
                           ========================================= */

html.dark-style .history-wrapper {
  background: #141821 !important;
  color: #fff !important;
}

/* HERO SECTION */

html.dark-style .history-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html.dark-style .history-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(12, 14, 20, 0.62),
      rgba(12, 14, 20, 0.20));
  z-index: 1;
}

html.dark-style .history-hero>* {
  position: relative;
  z-index: 2;
}

/* HERO TEXT */

html.dark-style .history-hero h1 {
  color: #ffffff !important;
}

html.dark-style .history-hero p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* SECTION CONTAINERS */

html.dark-style .history-card,
html.dark-style .timeline-section,
html.dark-style .founder-section,
html.dark-style .core-values-section {
  background: #1c212d !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 28px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18) !important;
}

/* TIMELINE / VALUE CARDS */

html.dark-style .timeline-card,
html.dark-style .value-card {
  background: #232938 !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 24px !important;
  transition: all .35s ease;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

html.dark-style .timeline-card:hover,
html.dark-style .value-card:hover {
  transform: translateY(-8px);
  background: #2a3142 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

/* FOUNDER SECTION */

html.dark-style .founder-section {
  background: #1d222f !important;
}

/* HEADINGS */

html.dark-style .history-wrapper h1,
html.dark-style .history-wrapper h2,
html.dark-style .history-wrapper h3,
html.dark-style .history-wrapper h4,
html.dark-style .history-wrapper h5 {
  color: #ffffff !important;
}

/* PARAGRAPH TEXT */

html.dark-style .history-wrapper p,
html.dark-style .history-wrapper span,
html.dark-style .history-wrapper li {
  color: rgba(255, 255, 255, 0.74) !important;
  line-height: 1.8;
}

/* TIMELINE YEAR */

html.dark-style .timeline-card h3 {
  color: #ffffff !important;
}

/* CORE VALUES TITLE */

html.dark-style .value-card h4 {
  color: #ffffff !important;
}

/* STATS CARDS KEEP PREMIUM LIGHT */
/* =========================================
                   DARK MODE STATS CARDS
                ========================================= */

html.dark-style .stats-card {
  border: none !important;
  border-radius: 22px !important;
  padding: 34px 20px !important;
  box-shadow: none !important;
  transition: all .35s ease;
}

/* CARD COLORS */

html.dark-style .stats-card:nth-child(1) {
  background: #46457a !important;
}

html.dark-style .stats-card:nth-child(2) {
  background: #31565b !important;
}

html.dark-style .stats-card:nth-child(3) {
  background: #2d5977 !important;
}

html.dark-style .stats-card:nth-child(4) {
  background: #62545c !important;
}

/* NUMBER */

html.dark-style .stats-card h2,
html.dark-style .stats-card .stats-number {
  color: #ffffff !important;
  font-weight: 800 !important;
}

/* LABEL */

html.dark-style .stats-card p,
html.dark-style .stats-card .stats-label {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500 !important;
}

/* ICON CIRCLE */

html.dark-style .stats-icon {
  background: rgba(255, 255, 255, 0.14) !important;

  width: 72px;
  height: 72px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto auto 22px;
}

/* ICON */

html.dark-style .stats-icon i,
html.dark-style .stats-icon svg {
  color: #ffffff !important;
  fill: currentColor !important;
  font-size: 28px !important;
  opacity: 1 !important;
}

/* HOVER */

html.dark-style .stats-card:hover {
  transform: translateY(-8px);
  filter: brightness(1.08);
}

/* FOOTER */

html.dark-style footer,
html.dark-style .footer {
  background: #171c27 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* REMOVE PURE BLACK */

html.dark-style .layout-page,
html.dark-style .content-wrapper {
  background: #141821 !important;
}

/* TEXT VISIBILITY FIX */

html.dark-style .timeline-card p,
html.dark-style .value-card p,
html.dark-style .founder-section p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ICON BACKGROUNDS */

html.dark-style .timeline-icon,
html.dark-style .value-icon {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* =========================================
                           FINAL CLEAN DARK MODE
                        ========================================= */

html.dark-style .timeline-card,
html.dark-style .value-card {
  background: #232838 !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20) !important;
}

/* TIMELINE TEXT */

html.dark-style .timeline-year,
html.dark-style .timeline-heading,
html.dark-style .value-heading {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* PARAGRAPH */

html.dark-style .timeline-text,
html.dark-style .value-text {
  color: rgba(255, 255, 255, 0.75) !important;
  opacity: 1 !important;
}

/* ICON FIX */

html.dark-style .timeline-icon i,
html.dark-style .value-icon i,
html.dark-style .timeline-icon svg,
html.dark-style .value-icon svg {
  color: inherit !important;
  fill: currentColor !important;
  opacity: 1 !important;
}

/* REMOVE FADED EFFECT */

html.dark-style .timeline-card *,
html.dark-style .value-card * {
  opacity: 1 !important;
}

/* HOVER */

html.dark-style .timeline-card:hover,
html.dark-style .value-card:hover {
  transform: translateY(-8px);
  background: #2d3548 !important;
}

/* FOUNDER SECTION */

html.dark-style .founder-box {
  background: #232838 !important;
}

html.dark-style .founder-title,
html.dark-style .founder-small {
  color: #ffffff !important;
}

html.dark-style .founder-text {
  color: rgba(255, 255, 255, 0.78) !important;
}



/*contact us*/

.contact-hero {
  background-image: url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?q=80&w=2070');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 340px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px;
  margin-bottom: 10px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.82),
      rgba(0, 0, 0, 0.45));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.contact-hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.contact-hero-content p {
  font-size: 22px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 650px;
}

.contact-btn {
  background: linear-gradient(135deg, #8b1e3f, #c12d59);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(139, 30, 63, 0.25);
}

.contact-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.contact-main-card {
  border: 0;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
  height: 100%;
  min-height: 1380px;
}

.contact-main-card .card-body {
  padding: 40px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #8b1e3f;
  margin-bottom: 10px;
}

.title-line {
  width: 70px;
  height: 4px;
  border-radius: 10px;
  background: #8b1e3f;
  margin-bottom: 35px;
}

.form-label {
  font-weight: 700;
  color: #4c4c66;
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-main-card .form-control {
  height: 58px;
  border-radius: 14px;
  border: 1px solid #e4e7ec;
  box-shadow: none !important;
  padding-left: 18px;
  font-size: 15px;
}

.form-control:focus {
  border-color: #8b1e3f;
}

textarea.form-control {
  min-height: 260px !important;
  resize: none;
  padding-top: 16px;
}

.contact-info-card {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
}

.contact-info-card .card-body {
  padding: 30px;
}

.icon-box {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b1e3f, #c12d59);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 22px;
  font-size: 34px;
  box-shadow: 0 10px 24px rgba(139, 30, 63, 0.25);
}

.info-title {
  font-size: 22px;
  font-weight: 800;
  color: #4c4c66;
  margin-bottom: 10px;
}

.info-desc {
  color: #6c757d;
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.info-link {
  color: #8b1e3f;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.8;
  word-break: break-word;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 8px;
  margin-bottom: 10px;
  color: #5f6275;
  font-size: 16px;
}

.broadcast-box {
  background: linear-gradient(135deg, #8b1e3f, #c12d59);
  border-radius: 18px;
  padding: 20px;
  color: #fff;
  margin-top: 20px;
  box-shadow: 0 10px 24px rgba(139, 30, 63, 0.25);
}

.broadcast-box h4 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0;
}

.contact-extra-box {
  margin-top: 28px;
  background: linear-gradient(to right, rgba(139, 30, 63, 0.08), rgba(193, 45, 89, 0.03));
  border: 1px solid rgba(139, 30, 63, 0.08);
  border-radius: 18px;
  padding: 28px;
}

.contact-extra-box h5 {
  color: #8b1e3f;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 24px;
}

.contact-extra-box p {
  margin-bottom: 0;
  color: #6c757d;
  line-height: 1.9;
  font-size: 16px;
}

.contact-note-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b1e3f, #c12d59);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  flex-shrink: 0;
}

@media(max-width:991px) {
  .contact-hero {
    padding: 40px 25px;
    min-height: 280px;
  }

  .contact-hero-content h1 {
    font-size: 48px;
  }

  .contact-hero-content p {
    font-size: 18px;
  }

  .section-title {
    font-size: 34px;
  }

  .contact-main-card .card-body {
    padding: 25px;
  }

  .hours-list p {
    font-size: 14px;
  }

}

/* ========================================
   COMMON PAGE SPACING
======================================== */

.common-page-spacing {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

@media(max-width:768px) {

  .common-page-spacing {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

}

.music-page-spacing {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* VIDEOS PAGE EXACT ALIGNMENT FIX */

.mshd-videos {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

div#event-row {
  PADDING: 0px !important;
  padding-left: 1px !important;
}


/* FIRST CARD ALIGNMENT */

.mshd-videos .col-xl-3:first-child,
.mshd-videos .col-lg-4:first-child,
.mshd-videos .col-md-6:first-child {
  padding-left: 0 !important;
}



/* VIDEOS CARD OUTER SPACING FIX */

.mshd-videos .col-xl-3,
.mshd-videos .col-lg-4,
.mshd-videos .col-md-6 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.mshd-videos .media-card-premium {
  margin-left: 0 !important;
  margin-right: 0 !important;
}




/* VIDEOS PAGE FINAL PERFECT ALIGNMENT */

.mshd-videos {
  padding-left: 18px !important;
  padding-right: 18px !important;
  overflow-x: hidden !important;
}

.mshd-videos .videos-grid-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mshd-videos .videos-grid-row>div {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.mshd-videos .media-card-premium {
  width: 100% !important;
  margin: 0 !important;
}

/* FINAL VIDEOS GRID ALIGNMENT FIX */

.mshd-videos #videoGrid {
  margin-left: 0 !important;
  margin-right: 0 !important;
  --bs-gutter-x: 16px !important;
}

.mshd-videos #videoGrid>div {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.mshd-videos #videoGrid .media-card-premium {
  width: 100% !important;
  margin: 0 !important;
}



/* FINAL VIDEOS PAGE PERFECT GRID FIX */

.mshd-videos #videoGrid {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.mshd-videos #videoGrid>div {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.mshd-videos .card1 {
  width: 100% !important;
  margin: 0 !important;
  display: block !important;
}

.mshd-videos .card1 .card {
  width: 100% !important;
  margin: 0 !important;
}

.mshd-videos .media-item-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* FINAL EPISODES ALIGNMENT FIX */

/* EPISODES PAGE PERFECT WIDTH MATCH */

.episodes-page {
  padding-left: 14px !important;
  padding-right: 18px !important;
}

.episodes-page #episodeGrid {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.episodes-page .episode-card-wrapper {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.episodes-page #episodeGrid .episode-card-wrapper {
  padding-left: 4px !important;
  padding-right: 4px !important;
}


/* NEWS PAGE ALIGNMENT FIX */

.news-page {
  padding-left: 14px !important;
  padding-right: 18px !important;
}

.news-page .news-grid-asymmetric {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.news-page .news-asym-row,
.news-page .news-asym-full-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* NEWS GRID OUTER ALIGNMENT FIX */

/* NEWS PAGE EXACT LEFT ALIGNMENT */

.news-page {
  padding-left: 10px !important;
  padding-right: 18px !important;
}

.news-page .news-grid-asymmetric {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.history-wrapper {
  padding-top: 0 !important;
  margin-top: -6px !important;
}

.main-content {
  margin-top: 0 !important;
}



/* ================================
   ARTIST CARD DARK MODE FIX
================================ */

.artist-pill {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  padding: 6px 16px;
  min-width: 82px;
  text-align: center;
  transition: all 0.3s ease;
}

.artist-pill .follow-text {
  color: #212529 !important;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* DARK MODE ONLY */
[data-bs-theme="dark"] .artist-pill {
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[data-bs-theme="dark"] .artist-pill .follow-text {
  color: #212529 !important;
}

/* Footer Icons */
[data-bs-theme="dark"] .card-footer i,
[data-bs-theme="dark"] .card-footer small {
  color: #ffffff !important;
}

/* Footer Background */
[data-bs-theme="dark"] .bg-label-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Card Background */
[data-bs-theme="dark"] .artist-card-container .card {
  background: #2b2e3f !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Followers Text */
[data-bs-theme="dark"] .cardposition-overlay small {
  color: #ffffff !important;
}




.artist-pill {
  background: #fff !important;
  color: #5F5A6B !important;

  width: 72px !important;
  height: 28px !important;

  padding: 0 !important;

  border-radius: 30px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 11px !important;
  font-weight: 600 !important;

  white-space: nowrap !important;
  box-sizing: border-box !important;
}

.artist-pill .follow-text {
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.card-body.py-3.px-2.d-flex.justify-content-around {
  gap: 8px !important;
}





.dark-style #genreFilter {
  background-color: #1f1f25 !important;
  color: #ffffff !important;
  border: 1px solid #5a5a5a !important;
}

.dark-style #genreFilter option {
  background-color: #24242b !important;
  color: #ffffff !important;
}

.dark-style #genreFilter {
  color-scheme: dark;
}


/*.container-fluid {*/
/*  padding-left: 10px !important;*/
/*  padding-right: 10px !important;*/
/*}*/

#artists-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.artist-card-container {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.artist-card-container .card {
  border-radius: 12px !important;
  overflow: hidden !important;
}


.custom-p {
  padding: 0 25PX;
}





.hero-section {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.navbar-sub-header {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}

#servicesGrid {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#servicesGrid {
  margin-left: -6px !important;
  margin-right: -6px !important;
}


/* .search-box {
  width: 250px;
  position: relative;
} */

/* .custom-search-input {
  width: 100%;
  height: 34px;
  border-radius: 30px;
  border: 1.5px solid #cfcfcf;
  background: transparent;
  color: #444;
  padding-left: 18px;
  padding-right: 45px;
  outline: none;
  box-shadow: none;
  font-size: 14px;
} */

/* .custom-search-input::placeholder {
  color: #999;
} */

.custom-search-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

/* .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 20px;
  z-index: 10;
  pointer-events: none;
} */

/* .custom-search-input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
} */



/* html[data-mshd-theme="dark"] .custom-search-input {
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
} */

/* html[data-mshd-theme="dark"] .custom-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
} */
/* 
html[data-mshd-theme="dark"] .search-icon {
  color: #fff;
} */



.top-navbar-search {
  position: relative;
  width: 250px;
}

.top-navbar-search .custom-search-input {
  width: 100%;
  height: 34px;
  border-radius: 30px;
  border: 1.5px solid #cfcfcf;
  background: transparent;
  color: #444;
  padding-left: 18px;
  padding-right: 45px;
  outline: none;
  box-shadow: none;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.top-navbar-search .custom-search-input::placeholder {
  color: #999;
}

.top-navbar-search .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 20px;
  z-index: 10;
  pointer-events: none;
}

html[data-mshd-theme="dark"] .top-navbar-search .custom-search-input {
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

html[data-mshd-theme="dark"] .top-navbar-search .custom-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

html[data-mshd-theme="dark"] .top-navbar-search .search-icon {
  color: #fff;
}



.layout-navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0, 0, 0, 0.04);
}




html[data-mshd-theme="dark"] .layout-navbar {
  background: rgba(40, 40, 47, 0.95) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
  border: none;
}




.services-search-box {
  width: 250px;
  position: relative;
}

.services-search-input {
  width: 100%;
  height: 34px;
  border-radius: 30px;
  border: 1.5px solid #cfcfcf;
  background: transparent;
  color: #444;
  padding-left: 18px;
  padding-right: 45px;
  outline: none;
  font-size: 14px;
  box-shadow: none;
}

.services-search-input::placeholder {
  color: #999;
}

.services-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 20px;
  z-index: 10;
  pointer-events: none;
}

/* DARK MODE */
html[data-mshd-theme="dark"] .services-search-input {
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

html[data-mshd-theme="dark"] .services-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

html[data-mshd-theme="dark"] .services-search-icon {
  color: #fff;
}






.music-search-box {
  width: 210px;
  height: 42px;
  position: relative;

  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;

  background: rgba(0, 0, 0, 0.20);

  overflow: hidden;
}

.music-search-input {
  width: 100%;
  height: 100%;

  border: none;
  outline: none;
  background: transparent;

  color: #fff;

  padding-left: 20px;
  padding-right: 60px;

  font-size: 15px;
}

.music-search-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.music-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);

  color: #fff;
  font-size: 26px;
}

/* CONTACT PAGE LIGHT MODE FIX */
/* CONTACT PAGE LIGHT MODE FIX */

html[data-mshd-theme="light"] .contact-info-card {
  background: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
}

/* Heading */
html[data-mshd-theme="light"] .contact-info-card .info-title {
  color: #1f1f1f !important;
}

/* Description */
html[data-mshd-theme="light"] .contact-info-card .info-desc {
  color: #555555 !important;
}

/* Email / Links */
html[data-mshd-theme="light"] .contact-info-card .info-link {
  color: #111111 !important;
  opacity: 1 !important;
}

/* Any extra text */
html[data-mshd-theme="light"] .contact-info-card p,
html[data-mshd-theme="light"] .contact-info-card span,
html[data-mshd-theme="light"] .contact-info-card a {
  color: #111111 !important;
}

/* home page css start */
.live_playing_img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: #851c3b;
}

.card_border {
  border: 1px solid #434968 !important;
  border-radius: 10px;
}

.media_item.card_border {
  background: #4349681f;
  border-radius: 6px;
  padding: 8px 9px 14px 9px;
}

.video_item .top {
  background: black;
  padding: 16px 14px;
  display: flex;
  gap: 4px;

  border-radius: 6px 6px 0 0;

}

a.video_button {
  background: #851c3b;
  border: 1px solid #ffffff;
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 10px;
  color: #ffffff;
}

.video_item .top span {
  font-size: 10px;
  line-height: 16px;
  font-weight: 300;
}

.video_item .bottom {
  background: #00000042;
  padding: 6px 20px;
}

.video_item .middle {
  padding: 40px 30px 14px 30px;
}




.video_item .live_now {
  gap: 6px;
}

.video_item span.rounded {
  width: 8px;
  height: 8px;
  background: red;
  display: block;
  border-radius: 100px;
  border: 1px solid #ffffff;
}

.video_item span.rounded.green {
  background: green;
}

.video_item:not(.video_item1) {
  background: #851c3b;
}


.video_item img {
  width: 86px;
  height: 86px;
  border-radius: 100px;
  border: 3px solid #ffffff;
}

.media_child {
  gap: 7px;
}

.media_row {
  padding: 0 24px;
}

.c.MEDIA_COL {
  padding: 0 8px;
}

span.media_heading {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
  display: block;
  letter-spacing: 1px;
}

.MEDIA_COL {
  padding: 0 8px;
}

span.plk {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

span.thank {
  font-size: 10px;
  line-height: 14px;
  font-weight: 300;
  letter-spacing: 0.6px;
}



.mshd-homepage .video_item1 .middle {
  height: 140px !important;
  background-image: url("/uploads/media/1771831475_dfd146b4d6760f4d22d4.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 0 !important;
}



.video_item1 .middle {
  height: 160px !important;

  background-image: url('/uploads/media/1771831475_dfd146b4d6760f4d22d4.webp') !important;

  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  display: flex;

  justify-content: center;
  align-items: center;
}

.ad_banner_img {
  width: 220px;
  max-width: 85%;
  object-fit: contain;
}


.video_item1 .ad_banner_img {
  width: 260px !important;
  max-width: 75% !important;
  height: auto !important;
  object-fit: contain !important;

  border-radius: 0 !important;
  border: none !important;
}

.video_item1 {
  border-radius: 10px !important;
  overflow: hidden !important;
}

.video_item1 .middle {
  border-radius: 10px 10px 0 0 !important;
  overflow: hidden !important;
}

.video_item1 .bottom {
  border-radius: 0 0 10px 10px !important;
}



.video_item {
  border-radius: 6px !important;
  overflow: hidden !important;
}

.video_item .top {
  border-radius: 10px 10px 0 0 !important;
}

.video_item .middle {
  border-radius: 0 !important;
}

.video_item .bottom {
  border-radius: 0 0 10px 10px !important;
}



/* .media_list {
  padding: 15px;
} */

/* .media_card {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;

  background: #1b1012;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;

  padding: 6px;
  margin-bottom: 14px;

  width: 100%;
  height: 106px;
  margin-left: -6px;

  overflow: hidden;
} */

/* .media_list {
  padding: 8px !important;
} */

.media_card img , .media_card video {
  width: 46px !important;
  height: 46px !important;
  object-fit: cover !important;
  border-radius: 100px !important;
  flex-shrink: 0;
  /* margin: -8px 0 -8px -8px; */
  border: 3px solid #ffffff;
  /*margin: 10px 15px 60px 15px;*/
}

.media_content {
  flex: 1;
  min-width: 0;
}

.media_title {
  color: #fff;
  font-size: 9px !important;
  line-height: 1.2;
  margin-bottom: 5px;
}

.media_time {
  color: #ccc;
  font-size: 8px !important;
}

.media_content h3 {
  color: #fff;
  font-size: 16px !important;
  margin: 4px 0;
  line-height: 1;
}

/*.progress_line {*/
/*  height: 3px;*/
/*  background: #a10054;*/
/*  border-radius: 10px;*/
/*}*/




.card-header .nav-pills {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  justify-content: space-between !important;
}

.card-header .nav-pills .nav-item {
  flex: 0 0 auto !important;
}

.card-header .nav-pills .nav-link {
  font-size: 11px !important;
  font-weight: 600 !important;

  padding: 6px 10px !important;

  border-radius: 20px !important;

  white-space: nowrap !important;

  min-width: 72px !important;
  text-align: center !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  color: #fff !important;
}

.card-header .nav-pills .nav-link.active {
  background: linear-gradient(90deg, #8b0d3d, #c2185b) !important;
  border: none !important;
}


.media-main-card {
  height: auto !important;
}

.media_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}




.mshd-homepage .row.align-items-stretch {
  align-items: stretch !important;
}

/* .mshd-homepage .cardbg,
.mshd-homepage .video_row,
.mshd-homepage .media_main_card {
  height: 620px !important;
} */

.mshd-homepage .media_list {
  height: 526px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  padding-right: 0px !important;
}

/* .mshd-homepage .media_card {
  flex-shrink: 0 !important;
} */



/* .mshd-homepage .video_item {
  height: 175px !important;
  overflow: hidden !important;
} */

.mshd-homepage .video_item .top {
  height: 35px !important;
  padding: 8px 10px !important;
}

.mshd-homepage .video_item .middle {
  /* height: 104px !important; */
  padding: 14px 20px 21px !important;
}

.mshd-homepage .video_item .bottom {
  height: 35px !important;
  padding: 6px 12px !important;
}

.mshd-homepage .video_row {
  height: 100% !important;
  min-height: unset !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  background: rgba(40, 40, 42, 0.95) !important;

}


.media_list {
  height: 500px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  /* padding: 10px 8px !important; */
}

.media_card {
  flex-shrink: 0 !important;
}


.media_list::-webkit-scrollbar {
  width: 8px;
}

.media_list::-webkit-scrollbar-track {
  background: transparent;
  margin: 35px 0;
}

.media_list::-webkit-scrollbar-thumb {
  background: #f5f5f5;
  border-radius: 50px;
}



.mshd-homepage .video_item.video_item1 {
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden !important;
}

.mshd-homepage .video_item.video_item1 .middle {
  height: 120px !important;
  padding: 0 !important;
}

.mshd-homepage .video_item.video_item1 .bottom {
  height: 36px !important;
  padding: 6px 12px !important;
}

@media (min-width: 992px) {
  .home-video-col {
    width: 56%;
  }

  .home-show-col {
    width: 21%;
  }

  .home-media-col {
    width: 23%;
  }
}


/* home page css close */



.video_item .top span {
  font-size: 8px;
  line-height: 16px;
  font-weight: 400;
}

.mshd-homepage .video_item .bottom {
  height: 24px !important;
  padding: 8px 19px !important;
}

span.plk {
  font-size: 10px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: 1px;
}


.card-header .nav-pills .nav-link {
  font-size: 9px !important;
  font-weight: 600 !important;
  padding: 6px 10px !important;
  border-radius: 20px !important;
  white-space: nowrap !important;
  min-width: 72px !important;
  text-align: center !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  color: #fff !important;
}

.media_title {
  color: #fff;
  font-size: 7px !important;
  line-height: 1;
  margin-bottom: 2px;
}

/* .media_card {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #1b1012;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 6px;
  margin-bottom: 14px;
  width: 100%;
  height: 102px;
  margin-left: -6px;
  overflow: hidden;
} */

/* .mshd-homepage .media_list {
  height: 499px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  padding-right: 0px !important;
} */


.mshd-homepage .video_item .bottom {
  height: 35px !important;
  padding: 8px 19px !important;
}


span.plk {
  font-size: 11px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0px;
}

.video_item .top {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 6px;
  overflow: hidden;
}

.video_item .top span {
  font-size: 11px;
  line-height: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.live_now {
  flex-shrink: 0;
}

.video_item .top>span:nth-child(2),
.video_item .top>span:nth-child(3) {
  flex-shrink: 0;
}

.video_item .top {
  display: flex;
  align-items: center;
  padding: 8px 4px;
  gap: 3px;
  overflow: hidden;
}

.video_item .top span {
  font-size: 9px;
  line-height: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.live_now {
  flex: 0 0 auto;
}

.video_item .top>span:nth-child(2) {
  flex: 0 0 auto;
}

.video_item .top>span:nth-child(3) {
  flex: 0 0 auto;
}

.video_item .top span {
  font-size: 8px;
  line-height: 16px;
  font-weight: 600;
  white-space: nowrap;
}


.media_card {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 290px;
  /* margin: 0 auto 28px auto; */
  border-radius: 6px;
  overflow: hidden;
  padding: 10px 0px 0 0px;
}
.media_card img , .media_card video {
    margin: 0 14px !IMPORTANT;
}
/* .media_card img {
  width: 58%;
  min-width: 58%;
  height: 110px;
  object-fit: cover;
} */

/* .media_card .media_content {
  width: 42%;
  min-width: 42%;
  padding: 8px 8px;
  overflow: hidden;
} */

.media_card .media_title {
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 0px;
}

.media_card .media_time {
    font-size: 8px !important;
    line-height: 12px;
    padding: 3px 5px;
    background: #464646;
    display: inline-block;
    border-radius: 100px;
    margin: 0 14px;
}
.media_view {
    background: #000000;
    padding: 10px 17px;
    margin-top: 4px;
}
.media_card h3 {
  font-size: 21px;
  line-height: 22px;
  margin: 6px 0 4px;
}

/* home page css close */




/* MAIN HOME PLAYER */

.plyr {
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.plyr__video-wrapper {
  height: 100% !important;
  background: #000 !important;
}

.plyr video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}


.mshd-homepage .media_main_card .card-header {
  padding-bottom: 0 !important;
}

.mshd-homepage .media_main_card .tab-content {
  padding-top: 35px !important;
}

/* .mshd-homepage .media_list {
  height: 520px !important;
  overflow-y: hidden !important;
  padding-right: 8px !important;
} */



.mshd-homepage .media_card {
  /* height: 100% !important; */
  /* margin-bottom: 14px !important; */
  display: block !important;
  /* margin-bottom: 20px !important; */
  flex-shrink: 0 !important;
  background-image: url(/artist-person.jpg);
  /* overflow: hidden !important; */
  background-size: cover;
  background-repeat: no-repeat;
  /* padding: 6px 10px 0 10px; */
}

/*.media_view {*/
/*  background: #000000;*/
/*  padding: 10px 15px;*/
/*}*/

/* .mshd-homepage .media_card img {
  width: 46% !important;
  object-fit: cover !important;
} */

/* .mshd-homepage .media_content {
  width: 54% !important;
  padding: 10px 12px !important;
  overflow: hidden !important;
} */

.mshd-homepage .media_title {
  font-size: 10px !important;
  line-height: 1.3 !important;
  /*margin-bottom: 6px !important;*/

  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;

  overflow: hidden !important;
}

/*.mshd-homepage .media_time {*/
/*  font-size: 10px !important;*/
/*  line-height: 1.2 !important;*/
/*  display: block !important;*/
/*  background: #2c2b2b;*/
/*  padding: 6px 13px;*/
/*  border-radius: 100px;*/
/*  display: inline-block;*/
/*  margin: 0 15px 4px 15px;*/
/*}*/

.mshd-homepage .media_content h3 {
  font-size: 8px !important;
  line-height: 1 !important;
  margin: 0 !important;
  white-space: nowrap !important;
}



.mshd-homepage .media_title {
  font-size: 10px !important;
  line-height: 1.25 !important;
  /*margin-bottom: 6px !important;*/

  overflow: visible !important;
  text-overflow: unset !important;
  display: block !important;

  white-space: normal !important;
}

.mshd-homepage .media_content {
  width: 100% !important;
  padding-top: 13px;
}

/*CHANNELS PAGE*/
/* Channels Search */
#channelSearch {
  color: #000 !important;
}

#channelSearch::placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

/* Dark mode */
.dark-style #channelSearch {
  color: #fff !important;
}

.dark-style #channelSearch::placeholder {
  color: #fff !important;
}

/* Studio dropdown */
#studioFilter {
  color: #000 !important;
}

.dark-style #studioFilter {
  color: #fff !important;
}


html.dark-style select#studioFilter.form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 14px !important;
  padding-right: 36px !important;
}

.channel-small-btn {
  background: #f5f5f5 !important;
  color: #2d2d2d !important;
  border: none !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  min-width: 95px !important;
  height: 32px !important;
  padding: 0 14px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  text-decoration: none !important;
  white-space: nowrap !important;
}

.channel-small-btn span {
  display: none !important;
}

/* channel home page crausels*/
.channels-swiper-prev,
.channels-swiper-next {
  padding: 4px 4px !important;
}

/*SKELTON*/
/* Global Skeleton Loader */
#global-skeleton-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #f6f7f9;
  display: flex;
  gap: 24px;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#global-skeleton-loader.hide-skeleton {
  opacity: 0;
  pointer-events: none;
}

.skeleton-sidebar {
  width: 260px;
  height: calc(100vh - 40px);
  border-radius: 18px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.4s infinite;
}

.skeleton-main {
  flex: 1;
}

.skeleton-topbar {
  height: 70px;
  border-radius: 18px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.4s infinite;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.skeleton-card {
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.4s infinite;
}

.skeleton-card.large {
  height: 460px;
}

.skeleton-card.wide {
  grid-column: span 2;
  height: 180px;
}

@keyframes skeletonLoading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 991px) {
  #global-skeleton-loader {
    padding: 14px;
  }

  .skeleton-sidebar {
    display: none;
  }

  .skeleton-grid {
    grid-template-columns: 1fr;
  }

  .skeleton-card.wide {
    grid-column: span 1;
  }
}


/*scroll bar*/
.media_list {
  height: 580px;
  overflow: hidden !important;
}

.mshd-homepage .media_list {
  position: relative !important;
  overflow: hidden !important;
  padding-right: 9px !important;
}

/*.mshd-homepage .media_list .ps__rail-y {*/
/*  right: 6px !important;*/
/*}*/



.mshd-homepage .media_list .ps__rail-y {
  right: 0 !important;
  width: 2px !important;
}

.mshd-homepage .media_list .ps__thumb-y {
  width: 2px !important;
}

/*channels page*/
.model-comment-popup {
  background: #221d2f;
  color: #fff;
}

.comment-input-area {
  background: #050b1e !important;
  border: 1px solid #2d3550 !important;
  color: #fff !important;
}

.comment-input-area::placeholder {
  color: #b8b8b8;
}

#channelCommentsList {
  max-height: 250px;
  overflow-y: auto;
}


.channel-toast {
  position: fixed;
  right: 35px;
  bottom: 25px;
  background: #fff;
  color: #00b050;
  width: 290px;
  min-height: 30px;
  padding: 18px 28px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  z-index: 99999;
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
}




.share-popup-dark {
  border-radius: 6px !important;
  overflow: visible !important;
  border: 0 !important;
}

.share-popup-dark .modal-header {
  padding: 24px 28px !important;
  border-bottom: 0 !important;
}

.share-popup-dark .btn-close {
  position: absolute !important;
  top: 15px !important;
  right: 23px !important;
  width: 38px !important;
  height: 33px !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #fff !important;
  border-radius: 6px !important;
  opacity: 1 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15) !important;
}

html[data-mshd-theme="dark"] .share-popup-dark .btn-close {
  background-color: #071126 !important;
  border: 1px solid #434968 !important;
  filter: invert(1) !important;
}

html[data-mshd-theme="dark"] .share-popup-dark .btn-close {
  background-color: #000000 !important;
  border: 1px solid #2d344d !important;
}


.channel-text {
  color: #2f3349 !important;
}

html[data-mshd-theme="dark"] .channel-text {
  color: #ffffff !important;
}


.model-comment-popup {
  border-radius: 6px !important;
}

.model-comment-popup .modal-header {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}

.model-comment-popup .modal-footer {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}


.model-comment-popup .modal-header {
  position: relative;
}


.model-comment-popup {
  border-radius: 6px !important;
  overflow: visible !important;
}

.model-comment-popup .modal-header {
  position: relative !important;
}

.model-comment-popup .btn-close {
  position: absolute !important;
  top: 14px !important;
  right: 22px !important;
  width: 35px !important;
  height: 33px !important;
  padding: 0 !important;
  margin: 0 !important;
  background-color: #fff !important;
  border-radius: 6px !important;
  opacity: 1 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15) !important;
}

.share-popup-dark .modal-body {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.btn-label-secondary {
  background: #5c6270 !important;
  color: #ffffff !important;
  border: 1px solid #6f7685 !important;
}

.modal-footer .btn {
  border-radius: 999px !important;
  padding: 10px 26px !important;
  font-weight: 600 !important;
}


/*home page music_video section*/
/*.mshd-homepage #vertical-example .video-media-card {*/
/*  display: block !important;*/
/*  width: 250px !important;*/
/*  height: auto !important;*/
/*  padding: 0px !important;*/
/*  overflow: hidden !important;*/
/*}*/

/*.mshd-homepage #vertical-example .video-media-card video {*/
/*  width: 100% !important;*/
/*  height: 91px !important;*/
/*  display: block !important;*/
/*  object-fit: cover !important;*/
/*}*/

/*.mshd-homepage #vertical-example .video-media-card .media_content {*/
/*  width: 100% !important;*/
/*  padding: 8px 0 0 0 !important;*/
/*  display: block !important;*/
/*}*/

/*.mshd-homepage #vertical-example .video-media-card .media_title,*/
/*.mshd-homepage #vertical-example .video-media-card .media_time,*/
/*.mshd-homepage #vertical-example .video-media-card h3 {*/
/*  display: block !important;*/
/*  width: 100% !important;*/
/*  white-space: normal !important;*/
/*  word-break: normal !important;*/
/*}*/





/*.mshd-homepage #vertical-example .video-media-card {*/
/*  display: block !important; */
/*  align-items: center !important; */
/*  padding: 8px !important;*/
/*  gap: 10px !important;*/
/*  overflow: hidden !important;*/
/*}*/

/*.mshd-homepage #vertical-example .video-media-card video {*/
/*  width: 135px !important;*/
/*  min-width: 135px !important;*/
/*  height: 85px !important;*/
/*  object-fit: cover !important;*/
/*}*/

/*.mshd-homepage #vertical-example .video-media-card .media_content {*/
/*  flex: 1 !important;*/
/*  width: auto !important;*/
/*  min-width: 0 !important;*/
/*  padding: 0 !important;*/
/*}*/

/*.mshd-homepage #vertical-example .video-media-card .media_title {*/
/*    font-size: 14px !important;*/
/*    line-height: 17px !important; */
/*}*/

/*.mshd-homepage #vertical-example .video-media-card .media_time {*/
/*    font-size: 18px !important;*/
/*    line-height: 28px !important;*/
/*    margin: 0 !important;*/
/*}*/

/*.mshd-homepage #vertical-example .video-media-card h3 {*/
/*  font-size: 18px !important;*/
/*  line-height: 20px !important;*/
/*  margin: 3px 0 0 0 !important;*/
/*  position: relative;*/
/*  display: inline !important;*/
/*}*/
/*.mshd-homepage #vertical-example .video-media-card h3::before {*/
/*    height: 4px;*/
/*    background: #a10054;*/
/*    border-radius: 10px;*/
/*    width: 100%;*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: -3px;*/
/*}*/

/*channel_text_padding*/
.card-body.py-2.px-2 {
  padding: 16px !important;
  min-height: 95px !important;
}

/* home page css 31-05-2026 css start */


/*artist page alignment*/
/*#artists-row {*/
/*  margin-left: -12px !important;*/
/*  margin-right: -12px !important;*/
/*}*/

/*.artist-card-container {*/
/*  padding-left: 12px !important;*/
/*  padding-right: 12px !important;*/
/*}*/
.mshd-homepage #artists-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  overflow: hidden !important;
}

.mshd-homepage #artists-row .artist-card-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mshd-homepage #artists-row .artist-card-container .card {
  width: 100% !important;
}

/*channesl_home_page*/
.mshd-homepage .channel-card-wrapper .event-card {
  height: 100% !important;
}

.mshd-homepage .channel-card-wrapper .event-image-wrapper img {
  height: 140px !important;
  object-fit: cover !important;
}

.mshd-homepage .channel-card-wrapper .card-header {
  padding: 10px 12px 6px !important;
}

.mshd-homepage .channel-card-wrapper .card-body {
  padding: 8px 12px !important;
}

.mshd-homepage .channel-card-wrapper .card-footer {
  padding: 10px 12px !important;
}

.mshd-homepage .channel-card-wrapper .channel-text {
  font-size: 12px !important;
}

.mshd-homepage .channel-card-wrapper h5.channel-text {
  font-size: 14px !important;
}


.media_view .plk {
  color: #fff !important;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
  display: block;
}

.media_view h3 {
  color: #d0d0d0 !important;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
/* Plyr time tooltip fix */
.mshd-homepage .plyr__tooltip {
  background: #000 !important;
  color: #fff !important;
  font-size: 12px !important;
  padding: 4px 7px !important;
  border-radius: 4px !important;
}

.mshd-homepage .plyr__tooltip::before {
  border-top-color: #000 !important;
}
.mshd-homepage .media_time .ti-eye {
  font-size: 12px !important;
  vertical-align: middle;
}
.mshd-homepage .media_time .ti-clock,
.mshd-homepage .media_time .ti-eye {
    font-size: 10px !important;
}
.podcast-filter-wrapper select {
    width: 150px !important;
    min-width: 150px !important;
    height: 32px !important;
}

.presenters-home-section .navbar-sub-header {
  min-height: 55px !important;
  height: 55px !important;
  padding: 0 !important;
}

.presenters-home-section .navbar-sub-header .container-fluid {
  min-height: 54px !important;
  height: 54px !important;
  padding: 0 10px !important;
}

.presenters-home-section .section-header-left,
.presenters-home-section .navbar-sub-header .d-flex {
  height: 55px !important;
  align-items: center !important;
}
/*home page change card*/
.artist-card-container .event-card {
  height: 410px !important;
}

.artist-pill {
  margin-right: 4px;
  margin-bottom: 4px;
}

.artist-pill .follow-text {
  display: inline-block;
  padding: 3px 10px !important;
  font-size: 11px !important;
  font-weight: 500;
  border-radius: 20px;
  line-height: 1.2;
}











.artist-pill {
  background: #000 !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  min-height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.artist-pill .follow-text {
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

.artist-pill i {
  font-size: 10px !important;
  margin-right: 3px !important;
}

.artist-pill {
  background: #000 !important;
  border-radius: 20px !important;
  padding: 4px 10px !important;

  width: auto !important;
  min-width: 100px !important;
  white-space: nowrap !important;
}

.artist-pill .follow-text {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px;
  font-size: 10px !important;
  color: #fff !important;
}

.artist-pill {
  background: #000 !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 5px 4px !important;

  width: auto !important;
  min-width: auto !important;
}

.artist-pill .follow-text {
  font-size: 9px !important;
  white-space: nowrap !important;
  display: flex;
  align-items: center;
  gap: 2px;
}

.artist-pill i {
  font-size: 9px !important;
}

.artist-pill{
    margin-right: 2px !important;
}

.card-body.py-2.px-2{
    justify-content: center !important;
    gap: 4px !important;
}


.mshd-homepage #studioSelect {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    font-size: 10px !important;
    padding: 4px 22px 4px 19px !important;
    white-space: nowrap !important;
        height: 30px !important;

}

.mshd-homepage #studioSelect option {
    font-size: 12px !important;
}



/*global search*/
.top-navbar-search {
  position: relative;
}

.global-search-results {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  background: #25252f;
  border-radius: 8px;
  z-index: 99999;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}

.global-search-item {
  padding: 12px 15px;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.global-search-item:last-child {
  border-bottom: none;
}

.global-search-item:hover {
  background: #851c3b;
}

.global-search-item {
  display: block;
  color: #fff !important;
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.global-search-item:hover {
  background: #851c3b;
  color: #fff !important;
}


/* music page redesign */
.music-showcase-page {
  padding: 20px 0 40px;
  width: 100%;
}

.music-showcase-featured-row {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 12px !important;
}

.music-showcase-card {
  background: #242636 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.music-showcase-image-wrap {
  position: relative !important;
  height: 145px !important;
}

.music-showcase-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.music-showcase-play-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 40px !important;
  height: 40px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #e91e4d !important;
  color: #fff !important;
}

.music-showcase-body {
  padding: 8px !important;
}

.music-showcase-body h6 {
  color: #fff !important;
  font-size: 12px !important;
  margin: 0 !important;
  font-weight: 700 !important;
}

.music-showcase-body p {
  color: #9ea2c0 !important;
  font-size: 11px !important;
  margin: 3px 0 0 !important;
}

.music-showcase-page .music-chip {
  border: 0 !important;
  border-radius: 18px !important;
  background: #242636 !important;
  color: #b9bdd4 !important;
  padding: 6px 16px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.music-showcase-page .music-chip.active {
  background: #e91e4d !important;
  color: #fff !important;
}

.music-showcase-table-wrap {
  background: #161827;
  border-radius: 8px;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
}

.music-showcase-table {
  width: 100% !important;
  margin-bottom: 0;
}

.music-showcase-table thead th {
  color: #8f93b5;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.music-showcase-table tbody td {
  color: #d1d4e8;
  font-size: 12px;
  border-color: rgba(255, 255, 255, .06);
}

.music-showcase-sort {
  width: 120px;
}

.music-duration-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  width: 100%;
}

.music-duration-actions span {
  min-width: 42px;
  text-align: left;
}

.music-duration-actions i {
  color: #8f93b5;
  font-size: 14px;
  cursor: pointer;
}

.music-duration-actions i:hover {
  color: #e91e4d;
}


.music-action-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.music-action-icons i {
  color: #8f93b5;
  font-size: 14px;
  cursor: pointer;
}

.music-action-icons i:hover {
  color: #e91e4d;
}

.music-showcase-table th:nth-child(6),
.music-showcase-table td:nth-child(6) {
  width: 110px !important;
  text-align: left !important;
}

.music-showcase-table th:nth-child(7),
.music-showcase-table td:nth-child(7) {
  width: 55px !important;
  text-align: right !important;
}

.music-action-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}



.music-showcase-table tbody tr:hover,
.music-showcase-table tbody tr:hover td {
  background: rgba(233, 30, 77, 0.25) !important;
  color: #fff !important;
}

.music-top-search {
  width: 220px;
  background: #242636;
  border-radius: 22px;
  overflow: hidden;
}

.music-top-search .form-control,
.music-top-search .input-group-text {
  background: #242636;
  color: #fff;
}

.music-top-search .form-control:focus {
  box-shadow: none;
}

.music-upload-btn {
  background: #e91e4d;
  border: none;
  color: #fff;
  border-radius: 22px;
  padding: 8px 18px;
  font-weight: 600;
}

.music-upload-btn:hover {
  background: #e91e4d;
  color: #fff;
}



.music-showcase-view-all {
  color: #ff4d79 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  line-height: 1 !important;
  letter-spacing: 0.2px !important;
  text-transform: none !important;
}

.music-showcase-view-all * {
  font-size: 10px !important;
  font-weight: 500 !important;
}


.music-showcase-swiper {
  width: 100%;
  overflow: hidden;
}

.music-showcase-slide {
  width: 273px !important;
}

.music-showcase-card {
  background: #242636 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  height: 245px !important;
}

.music-showcase-image-wrap {
  position: relative !important;
  height: 145px !important;
}

.music-showcase-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.music-showcase-body {
  padding: 10px 12px !important;
}

.music-showcase-body h6 {
  color: #fff !important;
  font-size: 13px !important;
  margin: 0 0 4px !important;
  font-weight: 700 !important;
}

.music-showcase-body p {
  color: #9ea2c0 !important;
  font-size: 12px !important;
  margin: 0 !important;
}

.music-showcase-body {
  padding: 8px !important;
}

.music-showcase-body h6 {
  font-size: 12px !important;
  margin: 0 !important;
}

.music-showcase-body p {
  font-size: 11px !important;
  margin: 2px 0 4px !important;
}

.music-showcase-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8f93b5;
  font-size: 11px;
}


.music-showcase-slide {
  width: 273px !important;
}

.music-showcase-card {
  height: 360px !important;
}

.music-showcase-image-wrap {
  height: 180px !important;
}

.music-showcase-body {
  min-height: 95px !important;
  padding: 12px !important;
}

.music-theme-card {
  min-height: 320px !important;
}

.music-theme-image {
  height: 180px !important;
  border-radius: 6px !important;
}

.music-theme-card .event-image-wrapper {
  position: relative;
  margin-top: 0 !important;
}

.music-theme-card .music-showcase-play-btn {
  z-index: 2;
}

.music-showcase-page .media-card-premium .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
}

.media-card-premium .play-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #d81b60;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(216, 27, 96, .4);
}

.media-card-premium .play-icon i {
  font-size: 28px;
  color: #fff;
}


/*music-videos page redesign*/
.mshd-videos .media-card-premium {
  border: none !important;
  border-top: 2px solid #e91e63 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important;
}

.video-hero-card {
  min-height: 260px;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(80, 0, 0, .6), rgba(0, 0, 0, .2)),
    url('/media/woza.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  padding: 28px;
}

.video-hero-content {
  max-width: 520px;
}


.music-chip {
  background: #24273f;
  border: none;
  color: #cfd3e6;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  transition: all .3s ease;
}

.music-chip:hover {
  background: #313654;
  color: #fff;
}

.music-chip.active {
  background: #ff1f5a;
  color: #fff;
}







.video-section-bar {
  background: #08090f;
  padding: 10px 12px;
  border-radius: 0;
}

.video-sort-select {
  width: 105px !important;
  height: 26px;
  font-size: 10px;
  background: #20213a !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 2px !important;
}

.video-view-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #3f3476;
  background: #20213a;
  color: #b8b9df;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.video-view-btn.active {
  background: #2a2350;
  color: #fff;
}

.mshd-videos #videoGrid .media-item-container {
  padding-left: 18px;
}

.mshd-videos .media-card-premium {
  background: #242424 !important;
}

.mshd-videos .media-card-premium .card-body {
  background: #242424 !important;
  color: #fff !important;
}

.mshd-videos .media-card-premium .card-footer {
  background: #242424 !important;
}

.mshd-videos #videoGrid {
  row-gap: 24px !important;
}

.mshd-videos #videoGrid .media-item-container {
  padding-left: 10px !important;
  padding-right: 10px !important;
}


.mshd-videos #videoGrid {
  --bs-gutter-x: 1.5rem !important;
}

.mshd-videos #videoGrid .media-card-premium {
  min-width: 285px !important;
}

.mshd-videos #videoGrid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;

  --bs-gutter-x: 2.5rem !important;
  --bs-gutter-y: 2rem !important;
}

h6.fw-bold.mb-1.text-white.text-truncate {
  padding-top: 12px;
}


/*studios page*/
.d-flex.align-items-center.gap-2.overflow-hidden {
  padding-top: 15px;
}

small.text-muted.d-block.mb-2 {
  padding-left: 8px;
}

.mshd-studios-ui {
  background: #11141d;
}

.mshd-studios-ui .studio-search {
  width: 210px;
  height: 34px;
  background: #242638;
  border: 0;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
}

.mshd-studios-ui .studio-chip {
  border: 0;
  background: #282a40;
  color: #b8bbd4;
  border-radius: 22px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
}

.mshd-studios-ui .studio-chip.active {
  background: #e91e4d;
  color: #fff;
}

.mshd-studios-ui .studio-chip span {
  margin-left: 8px;
  font-size: 11px;
  opacity: .8;
}

.mshd-studios-ui .studio-round {
  width: 32px;
  height: 32px;
  background: #e91e4d;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.mshd-studios-ui .studio-card {
  background: #252638;
  border-radius: 8px;
  overflow: hidden;
  border-top: 2px solid #e91e4d;
}

.mshd-studios-ui .studio-card-head {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.mshd-studios-ui .dot {
  width: 5px;
  height: 5px;
  background: #e91e4d;
  border-radius: 50%;
}

.mshd-studios-ui .studio-img-wrap {
  height: 135px;
  position: relative;
  background: #000;
}

.mshd-studios-ui .studio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mshd-studios-ui .live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ff174f;
  color: #fff;
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 2px;
  font-weight: 700;
}

.mshd-studios-ui .play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e91e4d;
  color: #fff;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.mshd-studios-ui .studio-card-body {
  padding: 12px;
}

.mshd-studios-ui .presenter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mshd-studios-ui .presenter .avatar {
  width: 28px;
  height: 28px;
  background: #6b6f8a;
  border-radius: 50%;
}

.mshd-studios-ui .presenter h6 {
  color: #fff;
  font-size: 12px;
}

.mshd-studios-ui .presenter small,
.mshd-studios-ui small {
  font-size: 11px;
}

.mshd-studios-ui .watch-btn {
  background: #e91e4d;
  color: #fff;
  border: 0;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 3px;
}

.studio-play-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: #e91e4d !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-play-btn:hover {
  background: #e91e4d !important;
  color: #fff;
}

.view-all-link {
  color: #e91e4d !important;
  text-decoration: none;
}

.view-all-link:hover {
  color: #e91e4d !important;
}

.d-flex.align-items-center.gap-3.text-muted.small {
  padding-left: 9px;
}


.studio-channel-navbar {
  background: #252528;
  border-radius: 6px;
  padding: 6px 7px;
}

.studio-nav-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  background: #8f1c39;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.studio-nav-btn.swiper-button-disabled {
  background: #6c6f7d;
  opacity: 1;
}