:root {
  --primary-color: #D4AF37; /* Metallic Gold */
  --primary-glow: rgba(212, 175, 55, 0.4);
  --primary-dark: #B8860B; /* Darker Gold for contrast */
  --bg-dark: #0A0C10;
  --text-main: #E2E8F0;
  --glass-bg: rgba(10, 12, 16, 0.7);
}

body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background: var(--bg-dark) !important;
  color: var(--text-main);
  font-family: 'Inter', sans-serif !important;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(255, 215, 0, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.05), transparent 25%);
}

/* Premium Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark), #B8860B) !important; /* Rich Gold */
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Boosted legibility */
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to { left: 100%; }
}

/* ============================
   PREMIUM FULL-WIDTH NAVBAR
============================ */
header.sticky-top,
.sticky-top {
  position: sticky !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.navbar {
  background: rgba(10, 12, 16, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: none !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0.1rem 0 !important; /* Thinner padding to shift elements upwards */
  top: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  max-width: 100% !important;
}

.navbar .container-fluid,
.navbar .container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

.navbar-inner {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.5rem 1.5rem !important; /* Elegant thinner side padding */
  display: flex !important;
  align-items: center !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  max-width: 1200px !important; /* Centered max-width to match the layout perfectly */
  margin: 0 auto !important; /* Center the layout container */
}

.navbar-inner:hover {
  border-bottom-color: transparent !important;
}

/* Brand - Shifted and styled elegantly inward */
.navbar-brand {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 0 0 24rem !important; /* Shifts logo inward from the left */
  gap: 0.75rem !important;
}
.navbar-logo {
  width: 38px !important;
  height: 38px !important;
  object-fit: contain;
  border-radius: 8px;
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.navbar-brand-name {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: 0.3px !important;
}
.navbar-brand-sub {
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  color: #718096 !important;
  letter-spacing: 0.3px !important;
}

/* Center Links - Centered and customized */
.navbar-center-links {
  gap: 0.6rem !important;
}
.navbar .nav-link {
  position: relative;
  color: #A0AEC0 !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.2px !important;
}
.navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 2px;
  left: 50%;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
.navbar .nav-link:hover::after {
  width: 60%;
}

/* Right Actions Container */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem !important;
  margin: 0 24rem 0 0 !important; /* Shifts actions inward from the right */
}

/* Cart Icon Button - Clean premium pill styled */
.navbar-action-icon {
  position: relative;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #A0AEC0 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.navbar-action-icon:hover {
  background: rgba(212, 175, 55, 0.1) !important;
  border-color: rgba(212, 175, 55, 0.25) !important;
  color: #D4AF37 !important;
}
.navbar-action-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #0A0C10;
  font-size: 0.6rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.45);
  pointer-events: none;
  border: 2px solid rgba(10, 12, 16, 0.9);
}

/* Discord Pill Button - Clean premium pill styled */
.navbar-pill-outline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.25rem !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px;
  color: #A0AEC0 !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.navbar-pill-outline:hover {
  border-color: rgba(212, 175, 55, 0.4) !important;
  color: #fff !important;
  background: rgba(212, 175, 55, 0.12) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15) !important;
  text-decoration: none;
}

/* Filled Pill Button (Dashboard) */
.navbar-pill-filled {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, #D4AF37, #C9A030);
  border: none;
  border-radius: 10px;
  color: #0A0C10;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
}
.navbar-pill-filled::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.navbar-pill-filled:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #DFC055, #D4AF37);
}
.navbar-pill-filled:hover::before {
  left: 100%;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .navbar-inner {
    flex-wrap: wrap;
    padding: 0.6rem 1rem;
  }
  .navbar-collapse {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .navbar-center-links {
    margin-bottom: 0.75rem !important;
  }
  .navbar-center-links .nav-link {
    padding: 0.6rem 0.9rem !important;
  }
  .navbar-actions {
    padding-bottom: 0.25rem;
    flex-wrap: wrap;
  }
  .navbar-brand-sub {
    display: none;
  }
}

/* Premium Primary Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), #FFD700) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px !important; /* Pill shape */
  padding: 0.6rem 1.5rem !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #FFF099, #FFD700);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover::before {
  opacity: 1;
}

/* Outline Buttons */
.btn-outline-primary {
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: rgba(255, 215, 0, 0.1) !important;
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

/* Product Cards - Dark Modern Theme */
.products .card {
  background: rgba(18, 20, 26, 0.7) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #E2E8F0 !important;
  border: 1px solid rgba(255, 215, 0, 0.1) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.products .card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow) !important;
}

.products .card .card-img-top {
  border-radius: 16px 16px 0 0 !important;
  background: #12141a !important;
}

.products .card .card-body p {
  color: #A0AEC0 !important;
}

.products .card .card-body .text-primary {
  color: #38a169 !important; /* Green stock text */
  font-weight: 600;
}

.products .card:hover .add-to-cart-hover {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Badges / Chips */
.chips .btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A0AEC0;
  transition: all 0.3s ease;
}

.chips .btn:hover, .chips .btn.active {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.3);
}

/* Headers & Text */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.text-primary {
  color: #FFD700 !important;
}

/* Hero Section Adjustments */
.hero {
  padding-top: 3rem !important;
  padding-bottom: 0.5rem !important;
  margin: 0 !important;
  min-height: auto !important; /* Remove fixed height */
  height: auto !important; /* Override potential height constraints */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero .container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: auto !important; /* Changed from 100% to auto */
  padding: 0 1rem !important; /* Remove top/bottom padding */
  margin: 0 auto !important; /* Remove top/bottom margin */
}

.hero .content {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 2rem !important; /* Extremely tight padding */
  padding-bottom: 1rem !important;
  margin: 0 !important;
}

.hero .content p {
  text-align: center !important;
  max-width: 800px;
  margin: 0 auto 1.5rem auto !important;
  font-size: 1.5rem !important; /* Upscaled subtitle */
  color: #E2E8F0;
  letter-spacing: 0.5px;
}

.hero .content h1 {
  background: linear-gradient(to right, #ffffff, var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-align: center;
  font-size: 5.5rem !important; /* Massive Upscaled Title */
  margin-bottom: 0.5rem !important;
  line-height: 1.1;
}

.hero .stats-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
}

.hero .stats {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto;
  gap: 2.5rem !important;
}

.hero .stats > div {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.hero .stats .value {
  font-size: 1.5rem !important;
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero .stats .value svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

.hero .stats .label {
  font-size: 1rem !important;
  color: #A0AEC0;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.products {
  padding-top: 1rem !important;
  margin-top: 0 !important;
}

.brand-glow {
  color: var(--primary-color) !important;
  text-shadow: 0 0 25px var(--primary-glow), 0 0 50px rgba(255, 123, 0, 0.3);
  -webkit-text-fill-color: var(--primary-color);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0A0C10;
}
::-webkit-scrollbar-thumb {
  background: #2a2d35;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* ------------------------
   WIDE FADED REVIEWS SCROLLER (Horizontal Force)
------------------------ */
.reviews-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 3rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.reviews-marquee {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important; /* FORCES columns sideways */
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
  gap: 2rem;
  padding-left: 2rem;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

.review-card {
  width: 450px !important; 
  min-width: 450px !important;
  max-width: 450px !important;
  flex: 0 0 auto !important; /* Prevents squishing */
  background: rgba(18, 20, 26, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 215, 0, 0.05);
  transform: translateY(-8px) scale(1.02);
}

.review-card .stars {
  color: #FFD700;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-card .content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #E2E8F0;
  font-style: italic;
  margin: 0;
}

.review-card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card .product {
  color: #FFD700;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-card .date {
  color: #718096;
  font-size: 0.85rem;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------------------------
   CUSTOM STATUS LIST (EXTREME ANIMATED ROWS)
------------------------ */
@keyframes slideInStatus {
  0% { opacity: 0; transform: translateX(-40px) scale(0.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.custom-status-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
}

.custom-status-row {
  background: rgba(18, 20, 26, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slideInStatus 0.8s ease-out forwards;
}

.custom-status-row:nth-child(2) { animation-delay: 0.1s; }
.custom-status-row:nth-child(3) { animation-delay: 0.2s; }
.custom-status-row:nth-child(4) { animation-delay: 0.3s; }
.custom-status-row:nth-child(5) { animation-delay: 0.4s; }
.custom-status-row:nth-child(6) { animation-delay: 0.5s; }

/* Sweeping animated light effect (Laser sweep) */
.custom-status-row::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 150%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 215, 0, 0.1), transparent);
  transform: rotate(35deg);
  transition: all 0.8s cubic-bezier(0.1, 0.9, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.custom-status-row:hover::after {
  left: 200%;
}

.custom-status-row:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(25, 28, 36, 0.95);
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 215, 0, 0.15);
}

.custom-status-row h3 {
  font-size: 1.45rem;
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
  transition: color 0.4s ease;
}

.custom-status-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A0AEC0;
  transition: all 0.3s ease;
  z-index: 2;
}

.custom-status-row:hover .custom-status-icon-wrapper {
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  transform: scale(1.05);
}

.custom-status-details {
  font-size: 0.85rem;
  color: #718096;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  z-index: 2;
}
.custom-status-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-status-row:hover h3 {
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
  z-index: 2;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: auto; /* Push badge to bottom if needed */
  width: 100%;
  justify-content: center;
}

.custom-status-row:hover .status-badge {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 35px rgba(34, 197, 94, 0.5);
  transform: scale(1.08);
  color: #fff;
}

/* Pulsing background behind the status badge */
.status-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
  transform: translateX(-100%);
  z-index: -1;
}

.custom-status-row:hover .status-badge::before {
  animation: badge-shine 1.5s infinite;
}

@keyframes badge-shine {
  100% { transform: translateX(100%); }
}

.breathing-dot {
  width: 12px;
  height: 12px;
  background-color: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80;
  animation: breathe 1s ease-in-out infinite alternate;
  transition: all 0.3s ease;
}

.custom-status-row:hover .breathing-dot {
  background-color: #fff;
  box-shadow: 0 0 15px #fff, 0 0 30px #4ade80;
}

@keyframes breathe {
  0% { opacity: 0.3; transform: scale(0.7); box-shadow: 0 0 5px #4ade80; }
  100% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 20px #4ade80, 0 0 40px #4ade80; }
}

/* Orange Status Badge */
.status-badge.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.3);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.custom-status-row:hover .status-badge.orange {
  background: rgba(249, 115, 22, 0.25);
  border-color: rgba(249, 115, 22, 0.9);
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.5);
  color: #fff;
}

.status-badge.orange::before {
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
}

.status-badge.orange .breathing-dot {
  background-color: #fb923c;
  box-shadow: 0 0 10px #fb923c, 0 0 20px #fb923c;
  animation: breathe-orange 1s ease-in-out infinite alternate;
}

.custom-status-row:hover .status-badge.orange .breathing-dot {
  background-color: #fff;
  box-shadow: 0 0 15px #fff, 0 0 30px #fb923c;
}

@keyframes breathe-orange {
  0% { opacity: 0.3; transform: scale(0.7); box-shadow: 0 0 5px #fb923c; }
  100% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 20px #fb923c, 0 0 40px #fb923c; }
}

/* ------------------------
   YOUTUBE VIDEOS SECTION
------------------------ */
.youtube-videos-block {
  padding: 3rem 0;
}

.yt-video-card {
  background: rgba(18, 20, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.yt-video-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 215, 0, 0.1);
  transform: translateY(-6px) scale(1.02);
}

.yt-video-card .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.yt-video-card .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ------------------------
   PREMIUM PRODUCT CARDS (GOLD THEME)
------------------------ */
.premium-card {
  background: rgba(15, 15, 20, 0.6) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  overflow: hidden;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  text-decoration: none !important;
  height: 100%;
}

.premium-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: rgba(25, 25, 30, 0.8) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(150, 150, 255, 0.15) !important;
}

.glass-panel {
  background: rgba(15, 15, 20, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.glass-panel h1 {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.premium-card-image-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
}

.premium-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-card-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0A0C10 90%);
  z-index: 1;
}

.premium-badges-top {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.premium-badge-left {
  background: #D4AF37;
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.premium-badge-right {
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #10b981;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.premium-badge-right .dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.premium-card-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.premium-subtitle {
  color: #718096;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.premium-title {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.premium-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.premium-price {
  color: #D4AF37;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.premium-price-duration {
  color: #4a5568;
  font-size: 0.85rem;
  font-weight: 600;
}

.premium-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.premium-feature-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.premium-feature-chip svg {
  color: #D4AF37;
}

.premium-btn-purchase {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  width: 100%;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  cursor: pointer;
  margin-top: auto;
}

.premium-card:hover .premium-btn-purchase {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ------------------------
   PROFESSIONAL HERO LAYOUT
------------------------ */
.hero-pro-layout {
  padding: 8rem 0 6rem 0;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-bg-overlay {
  background: linear-gradient(90deg, #0A0C10 0%, rgba(10, 12, 16, 0.8) 40%, rgba(10, 12, 16, 0) 100%) !important;
}

.hero-pro-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-pro-content {
  flex: 1;
  max-width: 650px;
  text-align: left;
  margin: 0 !important; /* Forces it to the left, overriding default Sellix centering */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
}

.hero-pro-title {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.95;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-pro-title .text-neon {
  color: #D4AF37;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-pro-subtitle {
  font-size: 1.1rem;
  color: #A0AEC0;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #FFD700, #D4AF37) !important;
  color: #0A0C10 !important;
  font-size: 1.05rem;
  border-radius: 12px !important;
  font-weight: 800;
  padding: 14px 28px;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  color: #0A0C10 !important;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #E2E8F0 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-size: 1.05rem;
  border-radius: 12px !important;
  font-weight: 700;
  padding: 14px 28px;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.hero-stats-bar {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-shield {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
}

.stat-lightning {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
}

.stat-users {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.7rem;
  color: #718096;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 900;
}

.hero-main-title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  text-transform: none !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
}
@media (max-width: 768px) {
  .hero-main-title {
    font-size: 1.5rem !important;
  }
  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

.hero-pro-layout {
  min-height: 70vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 160px 0 80px 0 !important;
}


/* ========================
   CUSTOM VARIANT STYLES (HENZO STYLE)
======================== */
.variants .variant {
  background: rgba(18, 20, 26, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  color: #E2E8F0 !important;
  padding: 12px 16px !important;
  text-align: left !important;
  transition: all 0.3s ease !important;
}

.variants .variant:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
  transform: none !important;
  box-shadow: none !important;
}

.variants .variant.active {
  background: rgba(18, 20, 26, 0.95) !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
}

.variants .variant .name {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin-bottom: 2px !important;
}

.variants .variant .stock {
  font-size: 0.75rem !important;
  color: #718096 !important;
}

.variants .variant .price {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #E2E8F0 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
}

.variants .variant .active-indicator {
  display: none !important;
}

body {
  background-color: #050508 !important;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  background-position: center top !important;
}

.variants .variant .active-indicator svg {
  color: #D4AF37 !important;
  width: 24px !important;
  height: 24px !important;
}
/* ========================
   CUSTOM PRODUCT STYLES (HENZO STYLE)
======================== */
.input-group.col-4 {
  background: rgba(18, 20, 26, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.input-group-btn {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  padding: 10px 15px !important;
  transition: all 0.3s ease !important;
}

.btn-premium-dark {
  background: rgba(18, 20, 26, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #E2E8F0 !important;
  padding: 8px 24px !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.btn-premium-dark:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
  color: #D4AF37 !important;
  transform: translateY(-2px) !important;
}

.input-group-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.input-group .form-control {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  text-align: left !important;
  font-weight: 600 !important;
  padding: 10px 15px !important;
}

.buy-buttons .btn-primary {
  background: linear-gradient(135deg, #FFD700, #D4AF37) !important;
  color: #0A0C10 !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
  transition: all 0.3s ease !important;
}

.buy-buttons .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
  transform: translateY(-2px) !important;
}

.buy-buttons .btn-outline-primary {
  background: transparent !important;
  color: #D4AF37 !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  transition: all 0.3s ease !important;
}

.buy-buttons .btn-outline-primary:hover {
  background: rgba(212, 175, 55, 0.1) !important;
  border-color: #D4AF37 !important;
  transform: translateY(-2px) !important;
}

/* ========================
   MEDIA GALLERY SECTION
======================== */
.media-gallery {
  padding: 4rem 0;
}

.media-gallery .section-title h2 {
  text-align: center;
  background: linear-gradient(to right, #ffffff, var(--primary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.media-gallery .section-subtitle p {
  text-align: center;
  color: #718096;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Tabs Wrapper */
.media-tabs-wrapper {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.media-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.media-tabs-scroll {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4px;
}

/* Individual Tab Button */
.media-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(18, 20, 26, 0.5);
  backdrop-filter: blur(8px);
  color: #A0AEC0;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.media-tab-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 215, 0, 0.05));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.media-tab-btn:hover {
  border-color: rgba(212, 175, 55, 0.3);
  color: #E2E8F0;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.media-tab-btn:hover::before {
  opacity: 1;
}

.media-tab-btn.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.5);
  color: #FFD700;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.media-tab-btn.active::before {
  opacity: 1;
}

.media-tab-icon {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.media-tab-label {
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

/* Tab Content Area */
.media-tab-content {
  min-height: 300px;
}

/* Fade transition */
.media-fade-enter {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.media-fade-enter-start {
  opacity: 0;
  transform: translateY(12px);
}
.media-fade-enter-end {
  opacity: 1;
  transform: translateY(0);
}

/* Media Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Media Card (for future video/image embeds) */
.media-card {
  background: rgba(18, 20, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.media-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.08);
  transform: translateY(-6px) scale(1.01);
}

.media-card .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.media-card .video-wrapper iframe,
.media-card .video-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Empty State */
.media-empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background: rgba(18, 20, 26, 0.4);
  backdrop-filter: blur(12px);
  border: 1px dashed rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  animation: emptyPulse 3s ease-in-out infinite;
}

@keyframes emptyPulse {
  0%, 100% { border-color: rgba(255, 215, 0, 0.1); }
  50% { border-color: rgba(255, 215, 0, 0.3); }
}

.media-empty-icon {
  color: rgba(212, 175, 55, 0.4);
  margin-bottom: 1.5rem;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.media-empty-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.media-empty-subtitle {
  color: #718096;
  font-size: 0.95rem;
  max-width: 400px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .media-tabs-scroll {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .media-tab-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  .media-gallery .section-title h2 {
    font-size: 2rem;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-page-title {
    font-size: 3rem !important;
  }
}

/* ========================
   DEDICATED MEDIA PAGE HERO
======================== */
.media-page-hero {
  padding: 8rem 0 0.5rem 0;
  text-align: center;
  position: relative;
}

.media-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.media-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.media-page-badge-dot {
  width: 8px;
  height: 8px;
  background: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 10px #D4AF37;
  animation: breathe-gold 1s ease-in-out infinite alternate;
}

@keyframes breathe-gold {
  0% { opacity: 0.4; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1.3); }
}

.media-page-title {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(to right, #ffffff, #D4AF37);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.1;
}

.media-page-subtitle {
  color: #718096;
  font-size: 1.1rem;
  max-width: 500px;
  line-height: 1.6;
  margin: 0;
}

/* Media Page Stats */
.media-page-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.media-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.media-stat-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.media-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.media-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Tab Count Badge */
.media-tab-count {
  background: rgba(255, 255, 255, 0.06);
  color: #718096;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.media-tab-btn.active .media-tab-count {
  background: rgba(212, 175, 55, 0.2);
  color: #FFD700;
}

/* Featured Card (for single-video categories) */
.media-card-featured {
  grid-column: 1 / -1;
  max-width: 800px;
  margin: 0 auto;
}

.media-gallery-page {
  padding: 1rem 0 5rem 0;
}

.media-gallery-page .media-tabs-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Media Grid - 3 columns on desktop, 2 on tablet, 1 on mobile */
.media-gallery-page .media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .media-gallery-page .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .media-gallery-page .media-grid {
    grid-template-columns: 1fr;
  }
  
  .media-page-title {
    font-size: 3rem !important;
  }

  .media-recruit-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================
   MEDIA TEAM RECRUITMENT
======================== */
.media-recruit-section {
  padding: 2rem 0 5rem 0;
}

.media-recruit-card {
  position: relative;
  background: rgba(18, 20, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.media-recruit-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.08);
}

.media-recruit-glow {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  border-radius: 0 0 10px 10px;
}

.media-recruit-content {
  padding: 3rem;
}

.media-recruit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #D4AF37;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.media-recruit-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.media-recruit-subtitle {
  color: #A0AEC0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

.media-recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.media-recruit-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #D4AF37;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.media-recruit-heading svg {
  flex-shrink: 0;
}

.media-recruit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.media-recruit-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.media-recruit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.media-recruit-cta {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.media-recruit-notice {
  color: #718096;
  font-size: 0.95rem;
  margin: 0;
}

.media-recruit-notice strong {
  color: #D4AF37;
  font-weight: 800;
}

@media (max-width: 768px) {
  .media-recruit-content {
    padding: 2rem;
  }
  
  .media-recruit-title {
    font-size: 1.6rem;
  }

  .media-recruit-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================
   PRODUCT CARD MEDIA BUTTON
======================== */
.premium-card-media-btn {
  position: relative;
  z-index: 10;
  background: rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 5px 12px;
  color: #FFD700;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.premium-card-media-btn:hover {
  background: rgba(212, 175, 55, 0.25) !important;
  border-color: rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.premium-card-media-btn svg {
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
  transition: transform 0.3s ease;
}

.premium-card-media-btn:hover svg {
  transform: scale(1.15);
}

/* ========================
   PRODUCT MEDIA MODAL
======================== */
.pm-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pm-modal-overlay.pm-modal-active {
  opacity: 1;
}

.pm-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  transition: opacity 0.35s ease;
}

.pm-modal-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-modal-active .pm-modal-container {
  transform: translateY(0) scale(1);
}

/* Close button */
.pm-modal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 20, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #A0AEC0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100001;
}

.pm-modal-close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #FFD700;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Modal content */
.pm-modal-content {
  background: rgba(12, 14, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.05);
}

/* Header */
.pm-modal-header {
  position: relative;
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

/* Decorative glow line on top */
.pm-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  border-radius: 0 0 10px 10px;
}

/* Subtle gradient overlay on header */
.pm-modal-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.04), transparent 60%);
  pointer-events: none;
}

.pm-modal-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.pm-modal-product-image {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.1);
  flex-shrink: 0;
}

.pm-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.pm-modal-badge-dot {
  width: 7px;
  height: 7px;
  background: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 10px #D4AF37;
  animation: breathe-gold 1s ease-in-out infinite alternate;
}

.pm-modal-title {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(to right, #ffffff, #D4AF37);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.pm-modal-subtitle {
  color: #718096;
  font-size: 0.95rem;
  margin: 0.3rem 0 0 0;
  font-weight: 500;
}

/* Videos Grid */
.pm-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 2rem 2.5rem;
}

/* Video Card */
.pm-video-card {
  position: relative;
  background: rgba(18, 20, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: pm-card-entrance 0.5s ease-out both;
}

@keyframes pm-card-entrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pm-video-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.08);
  transform: translateY(-4px) scale(1.01);
}

.pm-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.pm-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pm-video-index {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #D4AF37;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Empty State */
.pm-modal-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.pm-empty-icon {
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 1.5rem;
  animation: floatIcon 3s ease-in-out infinite;
}

.pm-empty-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
}

.pm-empty-subtitle {
  color: #718096;
  font-size: 0.95rem;
  max-width: 350px;
  line-height: 1.5;
  margin: 0;
}

/* CTA */
.pm-modal-cta {
  display: flex;
  justify-content: center;
  padding: 1.5rem 2.5rem 2.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pm-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #D4AF37;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.pm-cta-link:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .pm-modal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pm-modal-overlay {
    padding: 1rem;
  }

  .pm-modal-header {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }

  .pm-modal-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .pm-modal-product-image {
    width: 56px;
    height: 56px;
  }

  .pm-modal-title {
    font-size: 1.5rem;
  }

  .pm-modal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .pm-modal-cta {
    padding: 1.5rem;
  }

  .pm-modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .pm-modal-overlay {
    padding: 0.5rem;
  }

  .pm-modal-content {
    border-radius: 16px;
  }

  .pm-modal-header {
    padding: 1.5rem 1rem 1rem 1rem;
  }

  .pm-modal-grid {
    padding: 1rem;
  }
}

/* ===================================================
   MINIMALIST SECTION DIVIDERS
   =================================================== */
.premium-category-wrapper {
  margin-bottom: 5.5rem !important;
}

.premium-category-wrapper:last-child {
  margin-bottom: 0 !important;
}

.premium-minimalist-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-bottom: 4rem;
  margin-top: 2.5rem;
}

.premium-minimalist-separator .separator-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.premium-minimalist-separator .separator-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  position: relative;
}

.premium-minimalist-separator .category-tag {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.premium-minimalist-separator .pulse-dot {
  width: 7px;
  height: 7px;
  background: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 12px #D4AF37, 0 0 20px #D4AF37;
  animation: pulse-badge-dot 2.5s infinite;
}

.premium-minimalist-separator .spoofer-dot {
  background: #00e676;
  box-shadow: 0 0 12px #00e676, 0 0 20px #00e676;
}

.premium-minimalist-separator .account-dot {
  background: #00b0ff;
  box-shadow: 0 0 12px #00b0ff, 0 0 20px #00b0ff;
}

@keyframes pulse-badge-dot {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .premium-category-wrapper {
    margin-bottom: 3.5rem !important;
  }
  
  .premium-minimalist-separator {
    margin-bottom: 2.5rem;
    gap: 12px;
  }
  
  .premium-minimalist-separator .category-tag {
    font-size: 0.82rem;
    letter-spacing: 2px;
  }
}

/* ===================================================
   TWO-COLUMN HERO & INTERACTIVE CHEAT GUI
   =================================================== */

.hero-two-column {
  width: 100%;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Status dot pulse animation */
.status-dot-pulse {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e, 0 0 20px #22c55e;
  animation: status-breathe 1.5s ease-in-out infinite alternate;
}

@keyframes status-breathe {
  0% { opacity: 0.4; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.2); }
}

/* Cheat Menu Wrapper */
.cheat-menu-container {
  width: 100%;
  max-width: 530px;
  height: 420px;
  background: rgba(10, 11, 15, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.05);
  display: flex;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  text-align: left;
  user-select: none;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cheat-menu-container:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.1);
}

/* Sidebar */
.cheat-menu-sidebar {
  width: 65px;
  background: #06070a;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0;
  gap: 30px;
}

.cheat-menu-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #B8860B);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.cheat-menu-nav-btn {
  background: none;
  border: none;
  color: #525f7a;
  font-size: 1.25rem;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.cheat-menu-nav-btn:hover {
  color: #a0aec0;
  transform: scale(1.05);
}

.cheat-menu-nav-btn.active {
  color: #D4AF37;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.cheat-menu-nav-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 3px;
  background-color: #D4AF37;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 8px #D4AF37;
}

/* Menu Body */
.cheat-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #0a0b0f;
  padding: 16px 20px 20px 20px;
}

.cheat-menu-tabs-header {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.cheat-menu-tab-title {
  color: #4a5568;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cheat-menu-tab-title.active {
  color: #D4AF37;
}

/* Sections Grid Layout */
.cheat-menu-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

/* Scrollbar for grid */
.cheat-menu-grid::-webkit-scrollbar {
  width: 4px;
}
.cheat-menu-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
}
.cheat-menu-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.cheat-menu-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.3);
}

/* Card / Box inside menu */
.cheat-subpanel {
  background: rgba(14, 15, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cheat-subpanel-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #cbd5e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.cheat-subpanel-title i {
  font-size: 0.6rem;
  color: #718096;
}

/* Inputs, Checkboxes, Switches */
.cheat-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #a0aec0;
}

.cheat-control-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

/* Custom Checkbox */
.cheat-checkbox-input {
  display: none;
}

.cheat-checkbox-custom {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #06070a;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.cheat-checkbox-input:checked + .cheat-checkbox-custom {
  background: #D4AF37;
  border-color: #D4AF37;
}

.cheat-checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  color: #000;
  display: none;
}

.cheat-checkbox-input:checked + .cheat-checkbox-custom::after {
  display: block;
}

/* Keyboard badge keybind */
.cheat-keybind-badge {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #D4AF37;
  font-size: 0.6rem;
  padding: 1px 4px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
}

/* Custom Toggle Switch */
.cheat-switch-label {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 14px;
  flex-shrink: 0;
}

.cheat-switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cheat-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #06070a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: .3s;
}

.cheat-switch-slider:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  left: 2px;
  bottom: 2px;
  background-color: #718096;
  border-radius: 50%;
  transition: .3s;
}

.cheat-switch-input:checked + .cheat-switch-slider {
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.cheat-switch-input:checked + .cheat-switch-slider:before {
  transform: translateX(12px);
  background-color: #000;
}

/* Dropdown/Select styling */
.cheat-select-container {
  position: relative;
  width: 100%;
}

.cheat-select {
  width: 100%;
  background: #06070a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: #e2e8f0;
  font-size: 0.72rem;
  padding: 5px 8px;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}

.cheat-select:focus {
  border-color: rgba(212, 175, 55, 0.4);
}

.cheat-select-container::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6rem;
  color: #718096;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Slider styling */
.cheat-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.cheat-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #718096;
}

.cheat-slider-value {
  color: #e2e8f0;
}

.cheat-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #06070a;
  outline: none;
}

.cheat-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D4AF37;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
  transition: transform 0.1s ease;
}

.cheat-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.cheat-range-slider::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D4AF37;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
  transition: transform 0.1s ease;
}

.cheat-range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

/* Adjustments for the whole page */
@media (max-width: 991px) {
  .hero-text-col {
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
  }
  .hero-text-col .hero-main-title {
    text-align: center !important;
  }
  .hero-text-col .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-text-col .hero-actions {
    justify-content: center !important;
  }
  .hero-text-col .hero-stats {
    justify-content: center !important;
  }
}
