small.text-muted.text-uppercase {
    font-size: 9px !important;
}/* 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;
}

.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: var(--mshd-maroon-gradient);
  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;
}



.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;
}

/* 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 {
  width: 250px !important;
  height: 120px;
  object-fit: fill;
}

.mshd-homepage .space-padding {
  padding-bottom: 7px;
}

.mshd-homepage .cardbg {
  background: #33374d;
  border: 1px solid #434968 !important;
  object-fit: contain;
}


.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 {
  color: white;
  border: 1px solid #fff;
}

.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;
}



.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;
  padding: 0.6rem 2rem 0.6rem 1rem;
  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;
}


.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.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;
}


.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;
  }
}

.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-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:hover {
  background: rgba(133, 28, 59, 0.1);
  color: #851c3b;
}

.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:hover {
  background: rgba(133, 28, 59, 0.1);
  color: #851c3b !important;
}

.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;
}

/* Event Card Specific Styles */
#event-row .event-card {
  transition: transform 0.3s ease;
}

.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: 15px;
  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 .video-card-wrapper {
  display: flex;
}

.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 .reaction-item:hover {
  background: rgba(133, 28, 59, 0.1);
  color: #851c3b;
}


.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;
}


/* 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 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: var(--mshd-maroon) !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-title {
  color: #2c323f;
  font-weight: 700;
}

.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-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 */


.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;
}

.navbar-sub-header .search-event::placeholder {
  color: #fff !important;
  opacity: 0;
}

/* Ensure dropdown options have solid background */


.search-container input.form-control:focus {
  border-color: #851c3b;
  box-shadow: none;
}


.dark-style .navbar-sub-header .search-event::placeholder {
  color: #fff !important;
  opacity: 0;
}



.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;
}

.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;
    position: relative;
    top: 15px;
}



.navbar-sub-header .search-event::placeholder {
  color: #fae0e3 !important;
  opacity: 1;   /* ya is line ko hata bhi sakte ho */
}

.dark-style .navbar-sub-header .search-event::placeholder {
  color: #fff !important;
  opacity: 1;   /* ya is line ko hata bhi sakte ho */
}


  .navbar-sub-header .input-group-text {
    background: transparent !important;
    border-color: #fff !important;
    padding-right: 0 !important;
    border: 1px solid #fff !important;
}
  
.uk-link-toggle:hover .uk-link,.uk-link:hover,a:hover {
    text-decoration: none !important;
}  
  
  
.cardborder {
  border: none !important;
}

.mshd-homepage .card-body {
  font-size: 12px;
  padding: 15px;
  padding-bottom: 0px;
}

.mshd-homepage .card-body {
  font-size: 12px;
  padding: 15px;
}





/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
h4.fw-semibold.mb-3 {
    margin: 0;
    font-size: 40px;
    color: black;
}

.dark-style h4.fw-semibold.mb-3 {
    color: #fff;
    font-size: 40px !important;
}
i.ti.ti-home.me-2 {
    position: relative;
    top: -3px;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #685dd8;
}

.error-code {
    font-size: 140px;
    font-weight: 900;
    letter-spacing: 5px;
    background: linear-gradient(180deg, #851c3b, #f50534);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 6px 15px rgba(0,0,0,0.25);
    animation: float 3s ease-in-out infinite;
}

.dark-style .row.justify-content-center.align-items-center {
    background: #252225;
    border-radius: 8px;
    border: 1px solid #8c0e2a;
}

/* ===============================
   COMING SOON PAGE STYLES
   Safe Scoped Version
=================================*/

.coming-page *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.coming-page{
  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:gradientMove 12s ease infinite;
  position:relative;
  color:#fff;
  text-align:center;
}

/* Animated Gradient */
@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* Light Beam Effect */
.coming-page::before{
  content:'';
  position:absolute;
  width:200%;
  height:200%;
  background:radial-gradient(circle at center, rgba(255,77,109,0.3), transparent 60%);
  animation:rotateLight 20s linear infinite;
  pointer-events:none;
}

@keyframes rotateLight{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

/* Main Wrapper Fix */
.coming-page > div{
  position:relative;
  z-index:2;
}

/* Animated Text */
.coming-page .coming-text{
  font-size:5rem;
  font-weight:900;
  letter-spacing:10px;
  text-transform:uppercase;
  perspective:1000px;
  animation:glowPulse 3s ease-in-out infinite alternate;
}

.coming-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;
  -webkit-text-fill-color:transparent;
  animation:letterReveal 0.8s forwards;
}

/* Stagger Animation */
.coming-page .coming-text span:nth-child(1){animation-delay:0.1s;}
.coming-page .coming-text span:nth-child(2){animation-delay:0.2s;}
.coming-page .coming-text span:nth-child(3){animation-delay:0.3s;}
.coming-page .coming-text span:nth-child(4){animation-delay:0.4s;}
.coming-page .coming-text span:nth-child(5){animation-delay:0.5s;}
.coming-page .coming-text span:nth-child(6){animation-delay:0.6s;}
.coming-page .coming-text span:nth-child(7){animation-delay:0.7s;}
.coming-page .coming-text span:nth-child(8){animation-delay:0.8s;}
.coming-page .coming-text span:nth-child(9){animation-delay:0.9s;}
.coming-page .coming-text span:nth-child(10){animation-delay:1s;}
.coming-page .coming-text span:nth-child(11){animation-delay:1.1s;}

@keyframes letterReveal{
  0%{
    opacity:0;
    transform:translateY(80px) rotateX(90deg);
  }
  100%{
    opacity:1;
    transform:translateY(0) rotateX(0deg);
  }
}

/* Glow Effect */
@keyframes glowPulse{
  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);
  }
}

/* Subtitle */
.coming-page .subtitle{
  font-size:1.3rem;
  margin-top:20px;
  opacity:0.85;
}

/* Loader */
.coming-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:spin 1s linear infinite;
}

@keyframes spin{
  100%{transform:rotate(360deg);}
}

/* Button */
.coming-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-page .btn-back:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(255,77,109,0.6);
}

/* Floating Particles */
.coming-page .particle{
  position:absolute;
  width:5px;
  height:5px;
  background:#fff;
  border-radius:50%;
  opacity:0.6;
  animation:floatUp linear infinite;
}

@keyframes floatUp{
  from{transform:translateY(100vh);}
  to{transform:translateY(-10vh);}
}

/* Responsive */
@media(max-width:768px){
  .coming-page .coming-text{
    font-size:2.5rem;
  }
}

div#artist-filter-container {
    margin-right: 35px !important;
}

div#genre-filter-container {
    margin-right: 20px;
}


div#music-comments-list .text-muted {
    font-weight: 600;
    color: black !important;
}

.dark-style div#music-comments-list .text-muted {
    color: #fff !important;
}
.dark-style .search-box input::placeholder {
    color: #fff !important;
}


.dark-style .card .text-muted, .dark-style .event-card .text-muted {
    color: #fff !important;
}

.card .card-text, .dark-style .event-card .card-text {
    color: #566a7f !important;
}

.navbar-sub-header .search-event {
    background: inherit !important;
    color: #fceff1;
    border-color: #fff !important;
    border-left: 0 !important;
    font-size: 13px !important;
    font-weight: 700;
}

i.ti.ti-search.ti-md {
    position: relative;
    left: 219px !important;
    font-size: 17px !important;
}

.dark-style i.ti.ti-search.ti-md {
    color: #fff  !important;
    margin-left: -11px;
}

.navbar-nav input.form-control.form-control-sm.rounded-start-pill:focus {
    border-top: 1px solid #ccd0e9 !important;
    border-bottom: 1px solid #ccd0e9 !important;
    border-left: 1px solid #ccd0e9 !important;
}

.card-text {
  font-size: 10px;
}


button.follow-btn {
    position: absolute;
    top: 15px;
    right: 196px;
    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;
}

small.text-muted.text-uppercase {
    font-size: 8px !important;
}

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;
    }
}


.avatar-sm img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

.badge.bg-dark-opacity.text-white.px-2.py-1 {
    position: relative;
    right: 70px;
    color: #fff !important;
}
.light-style .badge.bg-dark-opacity.text-white.px-2.py-1 {
    position: relative;
    right: 70px;
    color: #fff !important;
    top: 1px;
}

.bg-label-maroon i {
    color: black !important;
    position: relative;
    bottom: 5px;
    left: 8px;
}
.dark-style .bg-label-secondary {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
.avatar-sm i.ti.ti-microphone {
    color: #fff;
    position: relative;
    top: -4px;
    left: 8px;
}




.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-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;
}

.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;
  align-items: center;
  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-meta-price {
    background: rgba(133, 28, 59, 0.15) !important;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
}

.shop-page .product-image {
  height: 250px;
  object-fit: cover;
}

.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;
}



* =========================================================================
   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);
}

.follow-btn.mt-1 {
    display: none !important;
}
.container-fluid .add-g-class {
    gap: 20px !important;
}
.dark-style .container-fluid .add-g-class {
    gap: 20px !important;
}
i.ti.ti-user-plus.text-white {
    display: none;
}
.mshd-homepage .card a {
    color: #000 !important;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    font-size: 10px;
}

claim-btn {
  top: 9px;
  right: 15px;
  outline: none;
  border: 1px solid #515151;
  font-size: 12px;
  background: transparent;
  color: #515151;
  border-radius: 25px;
}

.jobs-page.btn.btn-sm.btn-primary.bg-maroon.border-maroon.waves-effect.waves-light.claim-btn {
    background: inherit !important;
    border: none;
    color: #007aff !important;
    font-size: 13px;
}
.text-end.flex-shrink-0 {
    display: none !important;
}

.dark-style .search-box input {
    background: transparent !important;
    color: #fff !important;
     font-size: 13px; 
}

select#sortBy {
    padding-right: 25px;
}
select#sortBy {
    border: 1px solid #e0dfe2 !important;
}

.dark-style a.btn.btn-maroon.btn-lg.rounded-pill.px-5 {
    background: #851c3b !important;
}
i.ti.ti-briefcase.fs-4 {
    position: relative;
    top: -1px;
}

.dark-style .bg-label-maroon i {
    color: #fff !important;
 
}


.navbar-sub-header .filter-select {
    padding: 6px 35px 6px 15px !important;
}



.dark-style .filter-select option {
    background-color: #272729;
    color: #fff;
}



.dark-style .filter-select, .dark-style .search-input {
    background-color: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23eecfd2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.shop-page .add-to-cart-overlay {
    background: var(--maroon-primary, #851c3b);
    color: white;
    padding: 6px 10px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 10px;
    position: relative;
    left: 10px;
}
i.ti.ti-shopping-cart.me-1 {
    font-size: 13px;
}
.add-g-4 {
    gap: 79px !important;
}

.shop-page .shop-cat-label {
    color: #fff !important;
    font-size: 10px;
    letter-spacing: 0.5px;
    background: inherit;
}
.police-c i {
    position: relative;
    top: -9px;
}
.navbar-sub-header .input-group-merge {
    border: 1px solid #dbdade !important;
    width: 250px;
}
.add-b-c a {
    background: #851c3b;
    color: #fff;
}
.add-b-c a:hover {
    background: #0f6ecd;
    color:#fff;
}


h2.fw-bold.mb-0 {
    margin: 0;
}

.search-container .search-icon, .search-container .clear-icon {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #eecfd2 !important;
    cursor: pointer;
    transition: color 0.2s ease;
}
.add-new-b {
    padding: 0.422rem 0.875rem;
    border: 1px solid #dbdade;
    background: transparent !important;
    border-radius: 25px;
    font-size: 12px;
    color: #fae2e4;
}

.add-advertise i {
    position: relative !important;
    top: 6px !important;
    font-size: 17px !important;
}

.shop-page .add-to-cart-overlay:hover {
    background: #5a52b3 !important;
}
i.ti.ti-eye.me-1 {
    font-size: 13px;
}
.dark-style .card-footer small.fw-bold {
    color: #566a7f !important;
}

.add-icon i {
    top: 4px !important;
    font-size: 17px !important;
}

.avatar-sm i {
    position: relative;
    top: -6px;
    left: 15px;
}


button.add-follow.btn.btn-xs.rounded-pill.px-2.py-1.waves-effect.waves-light {
    font-size: 10px !important;
    background: #fff;
    border: 1px solid #000;
    color: #000 !important;
    font-weight: 700;
    position: absolute;
    top: 10px;
    right: 10px;
}
i.ti.ti-plus {
    font-size: 11px;
}
.light-style button.add-follow.btn.btn-xs.rounded-pill.px-2.py-1.waves-effect.waves-light {
    background: #851c3be6 !important;
    color: #fff !important;
    border: none !important;
}

.avatar-sm  i.ti.ti-shield-check {
    top: -6px !important;
    font-size: 17px !important;
}

.add-ic i {
    position: relative !important;
    top: -12px !important;
    left: 9px !important;
}


.add-new-c i {
    position: relative !important;
    top: -12px !important;
    left: 10px !important;
}
a.text-dark.text-decoration-none {
    font-size: 12px!important;
}
h6.mb-0.text-truncate.fw-bold.card-title {
    text-transform: capitalize !important;
}

.icon-al i {
    font-size: 17px;
    top: -7px;
}






/* Hover Effect */
.card:hover .play-overlay-center {
  background: rgba(0, 0, 0, 0.5); /* dark ho jayega */
}

.card:hover .play-btn-circle {
  transform: scale(1.15);
  background: red; /* full highlight */
}

.play-overlay-center {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-btn-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.6);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}