@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Poppins:400|DM+Sans:300,700,900,800,500,400,600,italic|Manrope:500,600|Source+Sans+3:700");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

@font-face {
  font-family: "Gotham-Medium";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/624afd97dbf85b221b75484d/fonts/gotham-medium.otf") format("opentype");
}
@font-face {
  font-family: "Gotham-Bold";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/65410c35416ace0412c89137/fonts/gotham-bold.otf") format("opentype");
}
@font-face {
  font-family: "Gotham-Black";
  src: url("https://anima-uploads.s3.amazonaws.com/5b972532993a91000b94cc94/Gotham-Black.otf") format("opentype");
}

@font-face {
  font-family: "Gotham Narrow-Regular";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/64b4f6ace371b801f2a248d1/fonts/gothamnarrow-book.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Narrow-Medium";
  src: url("https://anima-uploads.s3.amazonaws.com/5c507558e900f8000dc7daf3/GothamNarrow-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Narrow-BookItalic";
  src: url("https://anima-uploads.s3.amazonaws.com/5c883e019277e6000b6465d8/GothamNarrow-BookItalic.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Narrow-Bold";
  src: url("https://anima-uploads.s3.amazonaws.com/5c507558e900f8000dc7daf3/GothamNarrow-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Gotham Narrow-Black";
  src: url("https://anima-uploads.s3.amazonaws.com/5c5365e4c6eb34000939a2e0/GothamNarrow-Black.otf") format("opentype");
}

/* @font-face {
  font-family: "Font Awesome 6 Free-Solid";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/6339b9b6cff130481da234b3/fonts/font-awesome-6-free-regular-400.otf") format("opentype");
} */
/* @font-face {
  font-family: "Font Awesome 6 Pro-Solid";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/604bac611956acf622fcb3ae/fonts/font-awesome-6-pro-solid-900.otf") format("opentype");
} */

@font-face {
  font-family: "Font Awesome 6 Pro-Regular";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/6233c7bbfd3dbe835841607c/fonts/font-awesome-6-pro-regular-400.otf") format("opentype");
}
@font-face {
  font-family: "Font Awesome 6 Sharp-Regular";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/6305e6fa48232f777a45e2d0/fonts/font-awesome-6-sharp-regular-400.otf") format("opentype");
}
@font-face {
  font-family: "Font Awesome 6 Brands-Regular";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/62ecee36f806039f7be74d84/fonts/font-awesome-6-brands-regular-400.otf") format("opentype");
}

/* @font-face {
  font-family: "Font Awesome 6 Sharp-Light";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/6305e6fa48232f777a45e2d0/fonts/font-awesome-6-sharp-light-300.otf") format("opentype");
} */

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}
.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: #111111;
  padding: 25px;
  gap: 20px;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  overflow-x: hidden;
  overflow-y: scroll;
}
.menu-open .mobile-menu {
  right: 0;
}
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
}
.close-menu-btn {
  font-family: "Font Awesome 6 Sharp-Regular", Helvetica;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
}
.close-menu-btn:hover {
  color: #ce4257;
}
.mobile-menu-user-wrapper {
  display: flex;
  flex-direction: column;
  background-color: #1f1f1f;
  border-radius: 12px;
  border: 1px solid #333;
}
.mobile-menu-user {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  color: #ffffff;
  cursor: pointer;
  position: relative;
}
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ce4257;
}
.user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}
.user-name {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 16px;
  font-weight: 700;
}
.user-link {
  font-family: "DM Sans", Helvetica;
  font-size: 12px;
  color: #ce4257;
  text-decoration: none;
  font-weight: 500;
}
.mobile-user-chevron {
  font-family: "Font Awesome 6 Sharp-Regular", Helvetica;
  font-size: 14px;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.2s ease;
  width: 15px;
  white-space: nowrap;
}
.mobile-menu-user-wrapper.open .mobile-user-chevron {
  transform: rotate(180deg);
  color: #ce4257;
}
.mobile-account-links {
  display: none;
  flex-direction: column;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
}
.mobile-menu-user-wrapper.open .mobile-account-links {
  display: flex;
}
.mobile-account-links a {
  padding: 12px 20px;
  color: #e0e0e0;
  font-family: "DM Sans", Helvetica;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #2a2a2a;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-account-links a:last-child {
  border-bottom: none;
}
.mobile-account-links a:hover {
  background-color: #252525;
  color: #ce4257;
  padding-left: 25px;
  opacity:1;
}
.mobile-menu-actions {
  display: flex;
  gap: 10px;
}
.menu-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background-color: #1f1f1f;
  border-radius: 8px;
  color: #ffffff;
  font-family: "DM Sans", Helvetica;
  font-size: 14px;
  border: 1px solid #333;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-action-btn:hover {
  background-color: #333;
  border-color: #444;
  transform: translateY(-2px);
}
.menu-action-btn .icon {
  font-family: "Font Awesome 6 Sharp-Regular", Helvetica;
  color: #ce4257;
  font-size: 14px;
  text-rendering: auto;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}
.mobile-menu-links a {
  color: #e0e0e0;
  font-family: "DM Sans", Helvetica;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px;
  border-radius: 8px;
  display: block;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-menu-links a:hover {
  color: #ffffff;
  background-color: #1f1f1f;
  padding-left: 28px;
}

/* Mobile Dropdown Styles */
.mobile-nav-item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-nav-header > a {
  flex: 1;
  color: #e0e0e0;
  font-family: "DM Sans", Helvetica;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px;
  border-radius: 8px;
  display: block;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-nav-header > a:hover {
  color: #ffffff;
  background-color: #1f1f1f;
  padding-left: 28px;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-family: "Font Awesome 6 Sharp-Regular", Helvetica;
  font-size: 14px;
  padding: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.2s ease;
  width: 46px;
  white-space: nowrap;
}

.mobile-dropdown-toggle.open {
  transform: rotate(180deg);
  color: #ce4257;
}

.mobile-sub-menu {
  display: none;
  flex-direction: column;
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.mobile-sub-menu.open {
  display: flex;
}

.mobile-sub-menu a {
  font-size: 16px;
  padding: 12px 16px;
  border-left: 2px solid transparent;
  color: #cccccc;
}

.mobile-sub-menu a:hover {
  border-left-color: #ce4257;
  background-color: #252525;
  color: #ffffff;
  padding-left: 20px;
  border-radius: 0;
}

/* Desktop Dropdown Styles */
.nav-item-dropdown-wrapper {
  position: relative;
  display: inline-block;
  height: 100%;
}

.desktop-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111111;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 1000;
  border-radius: 4px;
  padding: 10px 0;
  border: 1px solid #333;
  margin-top: 10px;
  left: -22px;
}

.desktop-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.nav-item-dropdown-wrapper:hover .desktop-dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease;
}

.desktop-dropdown-menu a {
  color: #e0e0e0;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-family: "DM Sans", Helvetica;
  font-size: 14px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.desktop-dropdown-menu a:hover {
  background-color: #1f1f1f;
  color: #fc7c52;
  border-left-color: #ce4257;
  padding-left: 25px;
  opacity: 1;
}

.mobile-remixes-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  margin-top: 10px;
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  text-align: left;
}

.mobile-remixes-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(206, 66, 87, 0.4);
}

.mobile-remixes-btn-title {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-remixes-btn-icon {
  font-family: "Font Awesome 6 Sharp-Regular", Helvetica;
  font-size: 16px;
  color: #ffffff;
  white-space: nowrap;
  width: 15px;
}

.mobile-remixes-btn-subtitle {
  font-family: "DM Sans", Helvetica;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
header {
  position: relative;
  z-index: 100;
}
.nav-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-link {
  display: inline-block;
  text-decoration: none;
}
.logo-link img {
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(328deg) brightness(100%) contrast(100%);
  transition: filter 0.3s ease;
}
.logo-link:hover img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(34%) saturate(4664%) hue-rotate(328deg) brightness(101%) contrast(101%);
}
.account-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.account-container .magnifying-glass-4,
.account-container .magnifying-glass-6,
.account-container .magnifying-glass-8,
.account-container .magnifying-glass-2 {
  transition: transform 0.3s ease, color 0.2s ease;
}
.account-container:hover .magnifying-glass-4,
.account-container:hover .magnifying-glass-6,
.account-container:hover .magnifying-glass-8,
.account-container:hover .magnifying-glass-2 {
  color: #FC7C52;
}
.nav-icon {
  cursor: pointer;
  position: relative;
}
.nav-icon span {
  transition: color 0.2s ease;
}
.nav-icon:hover span {
  color: #FC7C52 !important;
}
.alert-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  background-color: #CE4257;
  color: #ffffff;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  border-radius: 10px;
  transform: translate(40%, -40%);
  pointer-events: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.nav-icon:hover .alert-badge {
  background-color: #000000;
  color: #CE4257;
}

/* Notification Tooltip */
.notification-tooltip {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: "DM Sans", Helvetica;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
  width: 250px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 1001;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #1a1a1a;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

/* Show tooltip on hover for both the nav-icon button and action-btn */
.nav-icon:hover .notification-tooltip,
.action-btn:hover .notification-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.notification-tooltip-highlight {
  color: #FF7F51;
  font-weight: 700;
}
.info-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  padding: 20px;
}
.info-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.info-modal {
  background-color: #1a1a1a;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  overflow: hidden;
  transform: scale(0.9) translateY(30px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
}
.info-modal-overlay.active .info-modal {
  transform: scale(1) translateY(0);
}
.info-modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
}
.info-modal-title {
  font-family: "Gotham-Bold", Helvetica, sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}
.info-modal-close {
  background: none;
  border: none;
  color: #888;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 5px;
  line-height: 1;
}
.info-modal-close:hover {
  color: #ce4257;
  transform: rotate(90deg);
}
.info-modal-body {
  padding: 30px;
  color: #e0e0e0;
  font-family: "DM Sans", Helvetica, sans-serif;
  max-height: 70vh;
  overflow-y: auto;
}
.info-modal-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #333;
}
.info-modal-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #888;
}
.info-modal-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-modal-meta i {
  color: #ce4257;
}
.info-modal-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.info-modal-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.info-modal-tag {
  background-color: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-modal {
  width: 100%;
  max-width: 800px;
  padding: 0 30px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.search-overlay.active .search-modal {
  transform: translateY(0);
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #333;
  color: #ffffff;
  font-family: "Gotham-Bold", Helvetica;
  font-size: 32px;
  padding: 20px 0;
  outline: none;
  transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.search-input:focus {
  border-bottom-color: #CE4257;
}
.search-input::placeholder {
  color: #666;
}
.search-close-btn {
  position: absolute;
  top: -60px;
  right: 30px;
  font-family: "Font Awesome 6 Sharp-Regular", Helvetica;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.search-close-btn:hover {
  color: #CE4257;
  transform: rotate(90deg);
}
.account-container.open .magnifying-glass-4,
.account-container.open .magnifying-glass-6,
.account-container.open .magnifying-glass-8,
.account-container.open .magnifying-glass-2 {
  transform: rotate(180deg);
  color: #CE4257;
}
.media-slider-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  position: relative;
  padding: 0;
  overflow: visible;
  margin: 40px 0;
}
.media-slider-container {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 0;
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  width: 100%;
}
.media-slider-container::-webkit-scrollbar {
  display: none;
}
.media-slide {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 0;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex: 0 0 auto;
  scroll-snap-align: center;
}
.media-slide {
  width: 50%;
  min-width: 50%;
}
@media (min-width: 768px) {
  .media-slide {
    width: 50%;
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  .media-slide {
    width: 33.333%;
    min-width: 33.333%;
  }
}
@media (min-width: 1440px) {
  .media-slide {
    width: 25%;
    min-width: 25%;
  }
}
.media-slide.active {
  transform: scale(1.08);
  z-index: 10;
  margin: 0 20px;
}
.media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3/5;
  overflow: hidden;
  background: #000000;
  border-radius: 0;
  cursor: pointer;
}
.media-image,
.video-preview-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  filter: brightness(0.9) contrast(1.05);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.media-slide.active .media-image,
.media-slide.active .video-preview-poster {
  filter: brightness(1) contrast(1.1);
}
.media-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.4) 100%
  );
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
  pointer-events: none;
}

.media-slide:hover .media-wrapper::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* Expand Icon Overlay - Unified for all media types */
.media-wrapper::before {
  content: "expand";
  font-family: "Font Awesome 6 Pro-Solid", Helvetica;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #CE4257;
  z-index: 4;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.media-slide:hover .media-wrapper::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Unified scale effect on hover for all media types - Images and Video Posters */
.media-slide:hover .media-image,
.media-slide:hover .video-preview-poster {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}
.play-icon-overlay {
  display: none;
}
.video-preview-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s ease;
  filter: brightness(0.9) contrast(1.05);
}
.video-preview-poster.hidden {
  display: none;
}

.media-slide.story-item .media-wrapper {
  cursor: pointer;
}

.media-caption {
  display: none;
}
.media-title {
  display: none;
}
.media-summary {
  display: none;
}
.media-actions-links {
  display: none;
}
.media-action-link {
  display: none;
}
.media-action-link-icon {
  display: none;
}
.media-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  z-index: 20;
}
.media-nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .media-nav-buttons {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .media-nav-buttons {
    padding: 0 30px;
  }
}
@media (min-width: 1440px) {
  .media-nav-buttons {
    padding: 0 30px;
  }
}
.media-nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Pro-Solid", Helvetica;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: auto;
}
.media-nav-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(206, 66, 87, 0.6);
}
.media-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.media-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.media-indicator {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.media-indicator.active {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  width: 30px;
  border-radius: 5px;
}
.media-indicator:hover:not(.active) {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.2);
}
.media-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-family: "DM Sans", Helvetica;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  z-index: 3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.media-slide.active .media-counter {
  background: #CE4257;
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.05);
}
.media-type-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 0;
  font-family: "Font Awesome 6 Pro-Solid", Helvetica;
  font-size: 11px;
  color: #1a1a1a;
  z-index: 3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.media-type-badge-text {
  font-family: "DM Sans", Helvetica;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.media-slide.active .media-type-badge {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(206, 66, 87, 0.4);
}
.media-remix-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(206, 66, 87, 0.95) 0%, rgba(255, 127, 81, 0.95) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Pro-Solid", Helvetica;
  color: #ffffff;
  font-size: 20px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(206, 66, 87, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(206, 66, 87, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(206, 66, 87, 0.8);
  }
}
.media-slide.active .media-remix-indicator {
  animation: none;
}
.media-remix-actions {
  display: flex;
  gap: 10px;
  padding: 0 25px 25px;
  position: relative;
  z-index: 3;
  justify-content: space-between;
}
.media-remix-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  flex: 1;
}
.media-remix-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(206, 66, 87, 0.1), transparent);
  transition: left 0.5s ease;
}
.media-remix-btn:hover::before {
  left: 100%;
}
.media-remix-btn:hover {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(206, 66, 87, 0.4);
}
.media-remix-btn-icon {
  font-family: "Font Awesome 6 Pro-Solid", Helvetica;
  color: #CE4257;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
}
.media-remix-btn:hover .media-remix-btn-icon {
  transform: scale(1.15) rotate(8deg);
  color: #ffffff;
}
.media-remix-btn-label {
  font-family: "Gotham-Bold", Helvetica;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.media-remix-btn:hover .media-remix-btn-label {
  color: #ffffff;
}
.media-remix-btn[data-action="remix"] {
  background: linear-gradient(135deg, rgba(206, 66, 87, 0.08) 0%, rgba(255, 127, 81, 0.08) 100%);
  border-color: rgba(206, 66, 87, 0.2);
}
.media-remix-btn[data-action="remix"]:hover {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
}
.media-remix-btn[data-action="respond"] {
  background: #f5f5f5;
  border-color: #e0e0e0;
}
.media-remix-btn[data-action="respond"] .media-remix-btn-icon {
  color: #666666;
}
.media-remix-btn[data-action="respond"]:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.media-remix-btn[data-action="respond"]:hover .media-remix-btn-icon {
  color: #ffffff;
}
.remix-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  padding: 20px;
}
.remix-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.remix-modal {
  background-color: #1a1a1a;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 16px;
  border: 1px solid #333;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  overflow: hidden;
  transform: scale(0.85) translateY(40px);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
}
.remix-modal-overlay.active .remix-modal {
  transform: scale(1) translateY(0);
}
.remix-modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #CE4257 0%, #A02C60 100%);
}
.remix-modal-title {
  font-family: "Gotham-Bold", Helvetica, sans-serif;
  font-size: 22px;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.remix-modal-title-icon {
  font-family: "Font Awesome 6 Pro-Solid", Helvetica;
  font-size: 20px;
}
.remix-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 8px 12px;
  line-height: 1;
  border-radius: 6px;
  font-family: "Font Awesome 6 Pro-Solid", Helvetica;
}
.remix-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}
.remix-modal-body {
  padding: 30px;
  color: #e0e0e0;
  font-family: "DM Sans", Helvetica, sans-serif;
  overflow-y: auto;
  flex: 1;
}
.remix-preview-container {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.remix-preview-item {
  flex: 1;
  min-width: 250px;
}
.remix-preview-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.remix-preview-media {
  width: 100%;
  aspect-ratio: 1.78;
  border-radius: 8px;
  object-fit: cover;
  background-color: #000;
  border: 2px solid #333;
}
.remix-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.remix-option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.remix-option-label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.remix-option-label-icon {
  font-family: "Font Awesome 6 Pro-Solid", Helvetica;
  color: #CE4257;
  font-size: 16px;
}
.remix-option-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.remix-option-btn {
  padding: 10px 18px;
  background-color: #2a2a2a;
  border: 2px solid #444;
  border-radius: 8px;
  color: #e0e0e0;
  font-family: "DM Sans", Helvetica;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.remix-option-btn:hover {
  background-color: #333;
  border-color: #CE4257;
  color: #ffffff;
  transform: translateY(-2px);
}
.remix-option-btn.active {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  border-color: #CE4257;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(206, 66, 87, 0.4);
}
.remix-textarea {
  width: 100%;
  min-height: 100px;
  padding: 15px;
  background-color: #2a2a2a;
  border: 2px solid #444;
  border-radius: 8px;
  color: #ffffff;
  font-family: "DM Sans", Helvetica;
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.remix-textarea:focus {
  outline: none;
  border-color: #CE4257;
  box-shadow: 0 0 0 3px rgba(206, 66, 87, 0.1);
}
.remix-textarea::placeholder {
  color: #666;
}
.remix-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background-color: #222;
}
.remix-modal-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Gotham-Bold", Helvetica;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border: none;
}
.remix-modal-btn-cancel {
  background-color: #2a2a2a;
  color: #e0e0e0;
  border: 2px solid #444;
}
.remix-modal-btn-cancel:hover {
  background-color: #333;
  border-color: #555;
  transform: translateY(-2px);
}
.remix-modal-btn-create {
  background: linear-gradient(135deg, #CE4257 0%, #FF7F51 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(206, 66, 87, 0.3);
}
.remix-modal-btn-create:hover {
  box-shadow: 0 8px 25px rgba(206, 66, 87, 0.6);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .remix-preview-container {
    flex-direction: column;
  }
  
  .remix-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .remix-btn {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  
  .remix-modal {
    max-width: 95%;
    max-height: 85vh;
  }
  
  .remix-modal-body {
    padding: 20px;
  }
}

/* Account Dropdown Styles */
.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 200px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.account-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  transform: rotate(45deg);
}

.account-dropdown.show {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.account-dropdown a {
  padding: 12px 20px;
  color: #e0e0e0;
  font-family: "DM Sans", Helvetica;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
  border-left: 2px solid transparent;
}

.account-dropdown a:hover {
  background-color: #252525;
  color: #ce4257;
  border-left-color: #ce4257;
}

/* Ensure container is relative */
.account-container {
  position: relative;
}
