/* ============================================================
   LUXURY.CSS — Premium Enhancement Layer
   Adds glassmorphism, gradients, glow, micro-interactions
   Safe to layer on top of existing Starfall.css / index.css
   ============================================================ */

/* ============ CSS VARIABLES ============ */
:root {
  --lux-gold: #ffbb00;
  --lux-gold-light: #ffd700;
  --lux-gold-deep: #ff9500;
  --lux-gold-glow: rgba(255, 187, 0, 0.4);
  --lux-gold-glow-strong: rgba(255, 187, 0, 0.6);
  --lux-glass-bg: rgba(18, 18, 30, 0.65);
  --lux-glass-border: rgba(255, 187, 0, 0.25);
  --lux-glass-blur: 20px;
  --lux-shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
  --lux-shadow-glow: 0 0 40px rgba(255, 187, 0, 0.15);
  --lux-shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 187, 0, 0.08);
  --lux-transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --lux-transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --lux-radius: 20px;
  --lux-radius-lg: 28px;
}

/* ============ PREMIUM SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(10, 10, 15, 0.8);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lux-gold), var(--lux-gold-deep));
  border-radius: 10px;
  border: 2px solid rgba(10, 10, 15, 0.8);
  box-shadow: 0 0 10px var(--lux-gold-glow);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--lux-gold-light), var(--lux-gold));
  box-shadow: 0 0 20px var(--lux-gold-glow-strong);
}
/* Target only document scrollbars, not every element */
html, body {
  scrollbar-width: thin;
  scrollbar-color: var(--lux-gold) rgba(10, 10, 15, 0.8);
}

/* ============ PREMIUM TEXT SELECTION ============ */
::selection {
  background: rgba(255, 187, 0, 0.3);
  color: #fff;
  text-shadow: 0 0 10px var(--lux-gold-glow);
}
::-moz-selection {
  background: rgba(255, 187, 0, 0.3);
  color: #fff;
}

/* ============ GLASSMORPHISM UTILITY ============ */
.lux-glass {
  background: var(--lux-glass-bg) !important;
  backdrop-filter: blur(var(--lux-glass-blur)) saturate(180%) !important;
  -webkit-backdrop-filter: blur(var(--lux-glass-blur)) saturate(180%) !important;
  border: 1px solid var(--lux-glass-border) !important;
  box-shadow: var(--lux-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* ============ PREMIUM GLOW TEXT ============ */
.lux-glow-text {
  text-shadow: 0 0 20px var(--lux-gold-glow), 0 0 40px rgba(255, 187, 0, 0.2) !important;
}

/* ============ ENHANCE: Navbar ============ */
.top_navbar {
  background: rgba(8, 8, 14, 0.75) !important;
  backdrop-filter: blur(30px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(200%) !important;
  border-bottom: 1px solid rgba(255, 187, 0, 0.2) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 187, 0, 0.05) !important;
}

.top_navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 187, 0, 0.4), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.top_navbar.scrolled {
  background: rgba(5, 5, 10, 0.9) !important;
  border-bottom-color: rgba(255, 187, 0, 0.4) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 187, 0, 0.12) !important;
}

.navbar-brand {
  background: linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold), var(--lux-gold-deep)) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: lux-brand-shine 4s ease-in-out infinite !important;
  filter: drop-shadow(0 0 15px rgba(255, 187, 0, 0.5)) !important;
}

@keyframes lux-brand-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Premium nav link hover with underline glow */
.top_navbar .category_list > span {
  position: relative;
  transition: var(--lux-transition-smooth) !important;
}

.top_navbar .category_list > span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  transform: translateX(-50%);
  transition: width var(--lux-transition-bounce);
  box-shadow: 0 0 10px var(--lux-gold-glow);
}

.top_navbar .category_list > span:hover::after,
.top_navbar .category_list > span.active::after {
  width: 70%;
}

/* ============ ENHANCE: Branding Text (Hero Title) ============ */
.branding_text {
  filter: drop-shadow(0 0 30px rgba(255, 187, 0, 0.4)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* ============ ENHANCE: Join Button ============ */
.join_btn {
  background: linear-gradient(135deg, rgba(255, 187, 0, 0.9), rgba(255, 153, 0, 0.8)) !important;
  border: 1.5px solid rgba(255, 215, 0, 0.5) !important;
  box-shadow: 0 4px 20px rgba(255, 187, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}

.join_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s ease;
  z-index: 0;
}

.join_btn:hover::before {
  left: 100%;
}

.join_btn:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 1), rgba(255, 170, 0, 0.9)) !important;
  border-color: rgba(255, 215, 0, 0.8) !important;
  box-shadow: 0 8px 30px rgba(255, 187, 0, 0.5), 0 0 50px rgba(255, 187, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-3px) scale(1.03) !important;
}

.join_btn span {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

/* ============ ENHANCE: Income Cards (block3) ============ */
/* Exclude .lux-reveal so scroll-reveal opacity:0 can work */
.block3:not(.lux-reveal) {
  opacity: 1 !important;
  visibility: visible !important;
}

.block3 {
  background: linear-gradient(145deg, rgba(30, 30, 42, 0.92), rgba(20, 20, 32, 0.96)) !important;
  backdrop-filter: blur(15px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
  border: 1px solid rgba(255, 187, 0, 0.2) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: var(--lux-transition-bounce) !important;
}

/* Mobile: cheaper backdrop-filter to protect GPU on Android */
@media (max-width: 768px) {
  .block3,
  .stat_card,
  .testimonial_card,
  .referral_card,
  .benefit_card,
  .col2,
  .premium_modal,
  .lux-faq-item,
  .premium_join_card,
  .data_protection_text,
  .hacktools-premium-card {
    backdrop-filter: blur(8px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(140%) !important;
  }
}

.block3:hover {
  background: linear-gradient(145deg, rgba(35, 35, 50, 0.95), rgba(25, 25, 40, 0.98)) !important;
  border-color: rgba(255, 187, 0, 0.45) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 187, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-6px) scale(1.02) !important;
}

.block3 .image3,
.block3 .image4 {
  border-color: rgba(255, 187, 0, 0.3) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  transition: var(--lux-transition-smooth) !important;
}

.block3:hover .image3,
.block3:hover .image4 {
  border-color: rgba(255, 187, 0, 0.6) !important;
  box-shadow: 0 8px 25px rgba(255, 187, 0, 0.25) !important;
  transform: scale(1.05) !important;
}

/* ============ ENHANCE: Income Heading ============ */
.income_heading,
.community_heading,
.info4,
.info41 {
  background: linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold), var(--lux-gold-deep)) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: lux-heading-shine 5s ease-in-out infinite !important;
  filter: drop-shadow(0 0 20px rgba(255, 187, 0, 0.3)) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}

@keyframes lux-heading-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============ ENHANCE: Net Worth Detail ============ */
.net_worth_detail {
  background: linear-gradient(145deg, rgba(25, 25, 38, 0.9), rgba(18, 18, 28, 0.95)) !important;
  backdrop-filter: blur(15px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
  border: 1px solid rgba(255, 187, 0, 0.3) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 187, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* ============ ENHANCE: Benefit Cards ============ */
.benefit_card,
.col2 {
  background: linear-gradient(145deg, rgba(22, 22, 35, 0.7), rgba(15, 15, 25, 0.8)) !important;
  backdrop-filter: blur(12px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
  border: 1px solid rgba(255, 187, 0, 0.15) !important;
  border-radius: var(--lux-radius-lg) !important;
  padding: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
  transition: var(--lux-transition-bounce) !important;
}

.benefit_card:hover,
.col2:hover {
  border-color: rgba(255, 187, 0, 0.4) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 187, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-5px) !important;
}

.info64 {
  color: var(--lux-gold) !important;
  text-shadow: 0 0 15px rgba(255, 187, 0, 0.3) !important;
  font-weight: 700 !important;
}

/* ============ ENHANCE: Section Divider ============ */
.section-divider {
  height: 1px;
  width: 80%;
  max-width: 800px;
  margin: 18px auto !important;
  background: linear-gradient(90deg, transparent, rgba(255, 187, 0, 0.4), transparent) !important;
  position: relative;
  border: none !important;
}

.section-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--lux-gold);
  font-size: 14px;
  /* Match .starfall.main_content_section background to avoid visible box on gradients */
  background-color: rgb(0, 0, 0);
  padding: 0 16px;
  text-shadow: 0 0 15px var(--lux-gold-glow);
  animation: lux-divider-pulse 3s ease-in-out infinite;
}

@keyframes lux-divider-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* ============ ENHANCE: Stats Cards ============ */
.stat_card {
  background: linear-gradient(145deg, rgba(25, 25, 38, 0.85), rgba(15, 15, 25, 0.92)) !important;
  backdrop-filter: blur(15px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
  border: 1px solid rgba(255, 187, 0, 0.2) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: var(--lux-transition-bounce) !important;
}

/* Note: transform NOT set with !important so JS 3D tilt inline style can override */
.stat_card:hover {
  border-color: rgba(255, 187, 0, 0.5) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 187, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.stat_number {
  filter: drop-shadow(0 0 15px rgba(255, 187, 0, 0.4)) !important;
}

/* ============ ENHANCE: Testimonial Cards ============ */
.testimonial_card {
  background: linear-gradient(145deg, rgba(22, 22, 35, 0.88), rgba(15, 15, 25, 0.94)) !important;
  backdrop-filter: blur(18px) saturate(170%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(170%) !important;
  border: 1px solid rgba(255, 187, 0, 0.2) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: var(--lux-transition-bounce) !important;
}

.testimonial_card:hover {
  border-color: rgba(255, 187, 0, 0.45) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 187, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* ============ ENHANCE: Gallery Items ============ */
.gallery_item {
  border: 1px solid rgba(255, 187, 0, 0.15) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  transition: var(--lux-transition-bounce) !important;
}

.gallery_item:hover {
  border-color: rgba(255, 187, 0, 0.5) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 187, 0, 0.2) !important;
}

.gallery_overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(10, 10, 15, 0.7) 50%, transparent 100%) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

/* ============ ENHANCE: Referral Cards ============ */
.referral_card {
  background: linear-gradient(145deg, rgba(25, 25, 38, 0.9), rgba(15, 15, 25, 0.95)) !important;
  backdrop-filter: blur(15px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(160%) !important;
  border: 1px solid rgba(255, 187, 0, 0.2) !important;
  border-radius: var(--lux-radius-lg) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: var(--lux-transition-bounce) !important;
}

.referral_card:hover {
  border-color: rgba(255, 187, 0, 0.4) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 187, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-5px) !important;
}

.download_btn {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-deep)) !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(255, 187, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transition: var(--lux-transition-smooth) !important;
  overflow: hidden;
  position: relative;
}

.download_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.download_btn:hover::before {
  left: 100%;
}

.download_btn:hover {
  box-shadow: 0 8px 30px rgba(255, 187, 0, 0.5), 0 0 40px rgba(255, 187, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-3px) scale(1.02) !important;
}

/* ============ ENHANCE: Premium Join Card ============ */
.premium_join_card {
  background: linear-gradient(145deg, rgba(25, 25, 40, 0.92), rgba(15, 15, 28, 0.97)) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 187, 0, 0.3) !important;
  box-shadow: var(--lux-shadow-premium) !important;
  transition: var(--lux-transition-bounce) !important;
}

.premium_join_card:hover {
  border-color: rgba(255, 187, 0, 0.5) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 120px rgba(255, 187, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* ============ ENHANCE: Premium Modal ============ */
.premium_modal {
  background: linear-gradient(165deg, rgba(22, 22, 38, 0.98), rgba(12, 12, 24, 0.99)) !important;
  backdrop-filter: blur(30px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
  border: 1px solid rgba(255, 187, 0, 0.3) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(255, 187, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.premium_input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 187, 0, 0.2) !important;
  transition: var(--lux-transition-smooth) !important;
}

.premium_input:focus {
  border-color: rgba(255, 187, 0, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(255, 187, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* ============ ENHANCE: Loader ============ */
.loader-wrapper {
  background: radial-gradient(ellipse at center, #0a0a14 0%, #000 70%) !important;
}

.loader-text {
  background: linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold), var(--lux-gold-deep)) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: lux-loader-text-shine 2s ease-in-out infinite !important;
  filter: drop-shadow(0 0 20px rgba(255, 187, 0, 0.5)) !important;
}

@keyframes lux-loader-text-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============ ENHANCE: Scroll Progress ============ */
.scroll-progress {
  background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light), var(--lux-gold-deep), var(--lux-gold)) !important;
  background-size: 200% 100% !important;
  box-shadow: 0 0 15px var(--lux-gold-glow-strong), 0 0 30px var(--lux-gold-glow) !important;
  animation: lux-progress-flow 3s linear infinite;
}

@keyframes lux-progress-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ============ ENHANCE: Language Switcher ============ */
.language-switcher {
  background: rgba(255, 187, 0, 0.08) !important;
  border: 1px solid rgba(255, 187, 0, 0.25) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: var(--lux-transition-smooth) !important;
}

.language-switcher:hover {
  background: rgba(255, 187, 0, 0.18) !important;
  border-color: rgba(255, 187, 0, 0.5) !important;
  box-shadow: 0 4px 20px rgba(255, 187, 0, 0.25) !important;
}

/* ============ ENHANCE: Nav Login Link ============ */
.nav-login-link {
  background: rgba(255, 187, 0, 0.08) !important;
  border: 1px solid rgba(255, 187, 0, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: var(--lux-transition-smooth) !important;
}

.nav-login-link:hover {
  background: rgba(255, 187, 0, 0.2) !important;
  border-color: rgba(255, 187, 0, 0.6) !important;
  box-shadow: 0 4px 20px rgba(255, 187, 0, 0.3) !important;
  transform: translateY(-1px) !important;
}

/* ============ PREMIUM TOOLTIP ANIMATION ============ */
@keyframes lux-fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lux-scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ============ FIX: IMAGE6 TOO LARGE + ENHANCE ============ */
.image6-container {
  display: block !important;
  width: 100% !important;
  max-width: 600px !important;
  margin: 20px auto !important;
  border-radius: var(--lux-radius) !important;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  transition: var(--lux-transition-bounce) !important;
  cursor: pointer;
}

.image6-container:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 187, 0, 0.15) !important;
  transform: translateY(-4px) !important;
}

.image6 {
  width: 100% !important;
  max-width: 600px !important;
  height: auto !important;
  max-height: 400px !important;
  object-fit: cover !important;
  border-radius: var(--lux-radius) !important;
  transition: var(--lux-transition-smooth) !important;
  display: block !important;
  margin: 0 auto !important;
}

.image6-container:hover .image6 {
  transform: scale(1.03) !important;
}

@media (max-width: 768px) {
  .image6-container,
  .image6 {
    max-width: 100% !important;
    max-height: 300px !important;
  }
}

@media (max-width: 480px) {
  .image6 {
    max-height: 220px !important;
  }
}

.closed-overlay {
  background: rgba(255, 51, 51, 0.85) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 100, 100, 0.4) !important;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* ============ ENHANCE: Footer ============ */
.info7 {
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 1.5px !important;
  text-shadow: 0 0 10px rgba(255, 187, 0, 0.1) !important;
}

.data_protection_text {
  background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(15, 15, 25, 0.9)) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 187, 0, 0.15) !important;
  border-radius: var(--lux-radius) !important;
  padding: 20px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
}

/* ============ SECURITY: Input Sanitization Visual ============ */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* Prevent zoom on input focus iOS (16px = minimum to prevent zoom) */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
  font-size: 16px !important;
}

/* ============ LUXURY HOVER GLOW UTILITY ============ */
.lux-hover-glow {
  transition: var(--lux-transition-smooth) !important;
}

.lux-hover-glow:hover {
  box-shadow: 0 0 30px var(--lux-gold-glow), 0 0 60px rgba(255, 187, 0, 0.15) !important;
}

/* ============ PREMIUM SHIMMER OVERLAY ============ */
.lux-shimmer {
  position: relative;
  overflow: hidden;
}

.lux-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: lux-shimmer-move 3s infinite;
  pointer-events: none;
}

@keyframes lux-shimmer-move {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============ MOBILE OPTIMIZATION ============ */
@media (max-width: 768px) {
  .section-divider {
    margin: 40px auto !important;
  }

  .block3:hover,
  .benefit_card:hover,
  .col2:hover,
  .stat_card:hover {
    transform: translateY(-3px) scale(1.01) !important;
  }

  .referral_card:hover {
    transform: translateY(-3px) !important;
  }
}

/* ============ REDUCED MOTION ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ FOCUS VISIBLE ACCESSIBILITY ============ */
*:focus-visible {
  outline: 2px solid var(--lux-gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--lux-gold);
  outline-offset: 2px;
  box-shadow: 0 0 15px var(--lux-gold-glow) !important;
}

/* ============================================================
   PART 2: ADVANCED ENHANCEMENTS
   Scroll reveal, 3D tilt, ripple, FAB, FAQ, cursor glow,
   progress bars, fluid typography, noise overlay
   ============================================================ */

/* ============ FLUID TYPOGRAPHY ============ */
.branding_text {
  font-size: clamp(2rem, 6vw, 4rem) !important;
}

/* ============ FIX: HEADING TEXT CLIPPING ============ */
/* Starfall.css sets width:137px + white-space:nowrap which clips long headings
   like "WHAT MEMBERS SAY", "PLATFORM FEATURES", "OUR IMPACT" */
.income_heading,
.community_heading,
.info4,
.info41 {
  width: auto !important;
  max-width: 100% !important;
  white-space: normal !important;
  text-align: center !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
  font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
}

.control_quote {
  font-size: clamp(0.7rem, 1.5vw, 0.95rem) !important;
}

.owner_income_title {
  font-size: clamp(0.85rem, 2vw, 1.1rem) !important;
}

.net_worth_detail {
  font-size: clamp(0.85rem, 2.5vw, 1.5rem) !important;
}

.benefits_heading {
  font-size: clamp(1rem, 2.5vw, 1.5rem) !important;
}

.info64 {
  font-size: clamp(0.9rem, 2vw, 1.3rem) !important;
}

.community_desc_more,
.desc2 {
  font-size: clamp(0.75rem, 1.3vw, 0.9rem) !important;
  line-height: 1.6 !important;
}

.info1,
.info11,
.info12 {
  font-size: clamp(0.8rem, 1.5vw, 1.1rem) !important;
}

.testimonial_text {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem) !important;
}

.gallery_title {
  font-size: clamp(0.9rem, 2vw, 1.3rem) !important;
}

.gallery_desc {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem) !important;
}

.stat_number {
  font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
}

.stat_label {
  font-size: clamp(0.7rem, 1.5vw, 0.95rem) !important;
}

/* ============ SCROLL REVEAL ANIMATIONS ============ */
.lux-reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform; backface-visibility: hidden;
}

.lux-reveal.lux-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.lux-reveal-left {
  opacity: 0;
  transform: translate3d(-50px, 0, 0);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-reveal-left.lux-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.lux-reveal-right {
  opacity: 0;
  transform: translate3d(50px, 0, 0);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-reveal-right.lux-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.lux-reveal-scale {
  opacity: 0;
  transform: scale3d(0.85, 0.85, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lux-reveal-scale.lux-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid children */
.lux-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.lux-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.lux-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.lux-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.lux-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.lux-stagger > *:nth-child(6) { transition-delay: 0.3s; }
.lux-stagger > *:nth-child(7) { transition-delay: 0.35s; }
.lux-stagger > *:nth-child(8) { transition-delay: 0.4s; }

/* ============ 3D TILT CARDS ============ */
.lux-tilt {
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out !important;
  will-change: transform;
}

.lux-tilt-content {
  transform: translateZ(30px);
}

/* ============ RIPPLE EFFECT ============ */
.lux-ripple-container {
  position: relative;
  overflow: hidden;
}

.lux-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: lux-ripple-anim 0.6s ease-out;
  pointer-events: none;
}

@keyframes lux-ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ============ CURSOR GLOW FOLLOWER ============ */
.lux-cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 187, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}

.lux-cursor-glow.lux-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .lux-cursor-glow { display: none; }
}

/* ============ FLOATING ACTION BUTTON (SCROLL TO TOP) ============ */
.lux-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-deep));
  border: none;
  cursor: pointer;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 187, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lux-fab.lux-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lux-fab:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 187, 0, 0.6), 0 0 40px rgba(255, 187, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.lux-fab:active {
  transform: translateY(-2px) scale(1.05);
}

.lux-fab svg {
  width: 22px;
  height: 22px;
  fill: #0a0a0a;
  transition: transform 0.3s ease;
}

.lux-fab:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .lux-fab {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }
  .lux-fab svg {
    width: 18px;
    height: 18px;
  }
}

/* ============ FAQ ACCORDION ============ */
.lux-faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* ============ ENHANCE: Loader Exit Smoothing ============ */
.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale3d(1.08, 1.08, 1);
  filter: blur(10px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.9s !important;
}

.lux-faq-item {
  background: linear-gradient(145deg, rgba(22, 22, 35, 0.8), rgba(15, 15, 25, 0.9));
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  border: 1px solid rgba(255, 187, 0, 0.15);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lux-faq-item:hover {
  border-color: rgba(255, 187, 0, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 187, 0, 0.08);
}

.lux-faq-item.lux-open {
  border-color: rgba(255, 187, 0, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 187, 0, 0.1);
}

.lux-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease, background 0.3s ease;
  user-select: none;
  background: transparent;
  border: none;
  outline: none;
}

.lux-faq-question:hover {
  color: var(--lux-gold);
}

.lux-faq-question:focus-visible {
  background: rgba(255, 187, 0, 0.05);
}

.lux-faq-question:hover {
  color: var(--lux-gold);
}

.lux-faq-item.lux-open .lux-faq-question {
  color: var(--lux-gold);
}

.lux-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--lux-gold);
  font-size: 20px;
  line-height: 1;
}

.lux-faq-item.lux-open .lux-faq-icon {
  transform: rotate(45deg);
}

.lux-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 22px;
}

.lux-faq-item.lux-open .lux-faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

.lux-faq-answer p {
  font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ============ INCOME PROGRESS BARS ============ */
.lux-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
}

.lux-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-deep));
  border-radius: 6px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(255, 187, 0, 0.4);
}

/* ============ ANIMATED GRADIENT BORDER ============ */
.lux-gradient-border {
  position: relative;
  background: linear-gradient(145deg, rgba(22, 22, 35, 0.9), rgba(15, 15, 25, 0.95));
  border-radius: var(--lux-radius);
}

.lux-gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--lux-gold), transparent, var(--lux-gold-deep), transparent);
  background-size: 300% 300%;
  z-index: -1;
  animation: lux-border-flow 4s ease infinite;
  opacity: 0.5;
}

@keyframes lux-border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Noise/Grain overlay removed (cleaned up) */

/* ============ TOAST NOTIFICATION ============ */
.lux-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, rgba(25, 25, 40, 0.98), rgba(15, 15, 28, 0.99));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 187, 0, 0.3);
  border-radius: 14px;
  padding: 14px 24px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  z-index: 10001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 187, 0, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 90vw;
}

.lux-toast.lux-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lux-toast-icon {
  color: var(--lux-gold);
  font-size: 1.2em;
}

/* ============ ENHANCED RESPONSIVE BREAKPOINTS ============ */

/* Ultra-wide screens (1920px+) */
@media (min-width: 1920px) {
  .overview_section {
    max-width: 1600px !important;
  }
  .income_grid,
  .gallery_grid,
  .testimonials_grid {
    max-width: 1500px !important;
  }
  .branding_text {
    font-size: clamp(3rem, 5vw, 5rem) !important;
  }
}

/* Large desktop (1440px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .overview_section {
    max-width: 1500px !important;
  }
}

/* Small laptops (1024px - 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .income_grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  }
  .gallery_grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  }
}

/* Tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .stats_grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .testimonials_grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .affiliate_grid {
    grid-template-columns: 1fr !important;
  }
}

/* Large mobile (480px - 768px) */
@media (max-width: 768px) {
  .lux-cursor-glow { display: none !important; }
  
  .stats_grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .testimonials_grid {
    grid-template-columns: 1fr !important;
  }
  
  .gallery_grid {
    grid-template-columns: 1fr !important;
  }
  
  .income_grid {
    grid-template-columns: 1fr !important;
  }
  
  .affiliate_grid {
    grid-template-columns: 1fr !important;
  }
  
  .lux-fab {
    bottom: 20px;
    right: 20px;
  }
  
  .lux-faq-section {
    padding: 10px;
  }
}

/* Small mobile (360px - 480px) */
@media (max-width: 480px) {
  .stats_grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  
  .stat_card {
    padding: 20px 15px !important;
    min-height: 120px !important;
  }
  
  .stat_number {
    font-size: clamp(1.2rem, 8vw, 1.8rem) !important;
  }
  
  .branding_text {
    font-size: clamp(1.5rem, 8vw, 2.5rem) !important;
    letter-spacing: 0.1em !important;
  }
  
  .control_quote {
    letter-spacing: 1px !important;
  }
  
  .section-divider {
    width: 90% !important;
    margin: 30px auto !important;
  }
  
  .lux-fab {
    width: 42px;
    height: 42px;
    bottom: 15px;
    right: 15px;
  }
  
  .lux-toast {
    font-size: 0.8rem;
    padding: 12px 18px;
    bottom: 70px;
  }
}

/* Very small mobile (320px - 360px) */
@media (max-width: 360px) {
  .branding_text {
    font-size: clamp(1.2rem, 7vw, 2rem) !important;
    letter-spacing: 0.05em !important;
  }
  
  .income_heading,
  .community_heading,
  .info4,
  .info41 {
    font-size: clamp(1.1rem, 6vw, 1.5rem) !important;
  }
  
  .stat_card {
    padding: 15px 10px !important;
  }
  
  .block3 {
    padding: 10px !important;
  }
  
  .lux-faq-question {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}

/* Ultra small mobile (below 320px) */
@media (max-width: 320px) {
  .branding_text {
    font-size: 1.1rem !important;
  }
  
  .income_heading,
  .community_heading {
    font-size: 1rem !important;
  }
  
  .stat_number {
    font-size: 1.2rem !important;
  }
}

/* ============ PRINT STYLES ============ */
@media print {
  .loader-wrapper,
  .scroll-progress,
  .top_navbar,  .lux-cursor-glow,
  .lux-fab,
  .premium_modal_overlay {
    display: none !important;
  }
  
  body {
    background: #fff !important;
    color: #000 !important;
  }
  
  .starfall,
  .overview_section,
  .intro_section {
    background: #fff !important;
    color: #000 !important;
  }
  
  .income_heading,
  .community_heading,
  .info4,
  .info41,
  .stat_number,
  .info64,
  .navbar-brand {
    -webkit-text-fill-color: #000 !important;
    color: #000 !important;
    background: none !important;
    text-shadow: none !important;
  }
}

/* ============ DARK MODE PREFERENCE ============ */
@media (prefers-color-scheme: dark) {
  html, body {
    color-scheme: dark;
  }
}

/* ============ HIGH CONTRAST ACCESSIBILITY ============ */
@media (prefers-contrast: high) {
  .lux-glass,
  .block3,
  .stat_card,
  .testimonial_card,
  .referral_card,
  .benefit_card,
  .col2 {
    border-width: 2px !important;
    border-color: rgba(255, 187, 0, 0.6) !important;
  }
}

/* Scroll snap removed — was too aggressive a layout change on mobile. Grids stay vertical. */

/* ============ ANIMATED STAT COUNTER GLOW ============ */
.stat_number.lux-counting {
  filter: drop-shadow(0 0 25px rgba(255, 187, 0, 0.6)) !important;
  transition: filter 0.3s ease;
}

/* ============ ACTIVE NAV INDICATOR ============ */
.top_navbar .category_list > span.lux-nav-active {
  color: var(--lux-gold) !important;
  text-shadow: 0 0 15px rgba(255, 187, 0, 0.6) !important;
}

.top_navbar .category_list > span.lux-nav-active::after {
  width: 70% !important;
}

/* ============ ENHANCED EVENT TAGS ============ */
.lux-event-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 187, 0, 0.1);
  border: 1px solid rgba(255, 187, 0, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lux-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lux-event-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lux-gold);
  animation: lux-tag-pulse 1.5s infinite;
}

@keyframes lux-tag-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ============ ENHANCED FOOTER ============ */
.lux-footer {
  text-align: center;
  padding: 40px 20px 20px;
  margin-top: 20px;
}

.lux-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.lux-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  cursor: pointer;
}

.lux-footer-links a:hover {
  color: var(--lux-gold);
  text-shadow: 0 0 15px rgba(255, 187, 0, 0.4);
}

.lux-footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.lux-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 187, 0, 0.08);
  border: 1px solid rgba(255, 187, 0, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.lux-footer-social a:hover {
  background: rgba(255, 187, 0, 0.2);
  border-color: rgba(255, 187, 0, 0.5);
  color: var(--lux-gold);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 187, 0, 0.3);
}

.lux-footer-divider {
  width: 60%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 187, 0, 0.3), transparent);
  margin: 0 auto 20px;
}

@media (max-width: 480px) {
  .lux-footer-links {
    gap: 12px;
  }
  .lux-footer-links a {
    font-size: 0.75rem;
  }
  .lux-footer-social a {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
}

/* ============ SMOOTH SCROLL BEHAVIOR ============ */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ============ GRADIENT TEXT UTILITY ============ */
.lux-gradient-text {
  background: linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold), var(--lux-gold-deep)) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: lux-heading-shine 5s ease-in-out infinite !important;
}

/* ============================================================
   PART 3: PROFESSIONAL IMPROVISATIONS
   Lightbox, animated headers, premium badges, card depth,
   scroll-triggered counters, professional polish
   ============================================================ */

/* ============ PREMIUM IMAGE LIGHTBOX ============ */
.lux-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10010;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lux-lightbox.lux-active {
  opacity: 1;
  visibility: visible;
}

.lux-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  border: 2px solid rgba(255, 187, 0, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 187, 0, 0.15);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  object-fit: contain;
}

.lux-lightbox.lux-active .lux-lightbox-img {
  transform: scale(1);
}

.lux-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 187, 0, 0.15);
  border: 1px solid rgba(255, 187, 0, 0.3);
  border-radius: 50%;
  color: var(--lux-gold);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10012;
}

.lux-lightbox-close:hover {
  background: rgba(255, 187, 0, 0.3);
  border-color: rgba(255, 187, 0, 0.6);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 187, 0, 0.3);
}

.lux-lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 18, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 187, 0, 0.2);
  border-radius: 12px;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  max-width: 80vw;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}

.lux-lightbox.lux-active .lux-lightbox-caption {
  opacity: 1;
}

.lux-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 187, 0, 0.3);
  background: rgba(18, 18, 30, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  color: var(--lux-gold);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10012;
}

.lux-lightbox-nav:hover {
  background: rgba(255, 187, 0, 0.2);
  border-color: rgba(255, 187, 0, 0.6);
  box-shadow: 0 4px 20px rgba(255, 187, 0, 0.3);
}

.lux-lightbox-prev { left: 20px; }
.lux-lightbox-next { right: 20px; }

@media (max-width: 768px) {
  .lux-lightbox-nav { width: 40px; height: 40px; font-size: 18px; }
  .lux-lightbox-prev { left: 10px; }
  .lux-lightbox-next { right: 10px; }
  .lux-lightbox-close { top: 15px; right: 15px; width: 38px; height: 38px; font-size: 20px; }
}

/* ============ ANIMATED SECTION HEADER (applied to existing headings) ============ */
/* Applied via JS to .income_heading, .community_heading, .info4, .info41 wrappers */
.block, .block1, .block2, .stats_section h2, .testimonials_section h2, .features_gallery h2, .lux-faq-section h2 {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.block::after, .block1::after, .block2::after,
.stats_section > h2::after, .testimonials_section > h2::after,
.features_gallery > h2::after, .lux-faq-section > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), var(--lux-gold-deep), var(--lux-gold), transparent);
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  box-shadow: 0 0 15px var(--lux-gold-glow);
  pointer-events: none;
}

.block.lux-visible::after, .block1.lux-visible::after, .block2.lux-visible::after,
.stats_section > h2.lux-visible::after, .testimonials_section > h2.lux-visible::after,
.features_gallery > h2.lux-visible::after, .lux-faq-section > h2.lux-visible::after {
  width: 100px;
}

@keyframes lux-header-dot-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.4); }
}

/* ============ PREMIUM BADGE / RIBBON ============ */
.lux-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 187, 0, 0.15), rgba(255, 153, 0, 0.1));
  border: 1px solid rgba(255, 187, 0, 0.3);
  color: var(--lux-gold);
  text-shadow: 0 0 8px rgba(255, 187, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.lux-badge:hover {
  background: linear-gradient(135deg, rgba(255, 187, 0, 0.25), rgba(255, 153, 0, 0.15));
  border-color: rgba(255, 187, 0, 0.5);
  box-shadow: 0 4px 15px rgba(255, 187, 0, 0.2);
  transform: translateY(-1px);
}

.lux-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lux-gold);
  box-shadow: 0 0 8px var(--lux-gold-glow-strong);
  animation: lux-badge-dot 1.5s infinite;
}

@keyframes lux-badge-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.lux-badge-gold {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-deep));
  color: #0a0a0a;
  border: none;
  text-shadow: none;
  box-shadow: 0 4px 15px rgba(255, 187, 0, 0.3);
}

.lux-badge-gold::before {
  background: #0a0a0a;
  box-shadow: none;
}

/* ============ ENHANCED CARD DEPTH (3D perspective on hover) ============ */
.block3,
.stat_card,
.testimonial_card,
.gallery_item,
.referral_card,
.benefit_card,
.col2,
.premium_join_card {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* Layered shadow on hover for depth perception */
.block3:hover,
.stat_card:hover,
.testimonial_card:hover,
.gallery_item:hover,
.referral_card:hover,
.benefit_card:hover,
.col2:hover {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 187, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* ============ IMAGE ZOOM INDICATOR ============ */
.lux-zoomable {
  position: relative;
  cursor: zoom-in;
}

.lux-zoomable::after {
  content: '⊕';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 187, 0, 0.3);
  border-radius: 50%;
  color: var(--lux-gold);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.lux-zoomable:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* ============ INCOME CARD PERCENT BADGE ============ */
.block3 .info31 {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 4px 12px !important;
  border-radius: 10px !important;
  background: rgba(255, 187, 0, 0.1) !important;
  border: 1px solid rgba(255, 187, 0, 0.25) !important;
  font-size: clamp(0.8rem, 1.5vw, 1rem) !important;
  width: fit-content !important;
  text-align: center !important;
}

/* ============ PREMIUM STAT CARD ICON ============ */
.stat_card {
  position: relative;
}

.stat_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), var(--lux-gold-deep), var(--lux-gold), transparent);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat_card:hover::before {
  opacity: 1;
}

/* ============ GALLERY ITEM BADGE ============ */
.gallery_item {
  position: relative;
}

.gallery_item .gallery_overlay {
  border-radius: 0 0 18px 18px;
}

.gallery_item .gallery_title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery_item .gallery_title::before {
  content: '◆';
  font-size: 0.7em;
  color: var(--lux-gold);
  opacity: 0.7;
}

/* ============ SMOOTH IMAGE LOADING ============ */
/* Only fade in when JS is active (html.js class added by JS) */
img {
  transition: opacity 0.4s ease;
}

html.js img[loading="lazy"]:not(.loaded) {
  opacity: 0;
}

html.js img[loading="lazy"].loaded {
  opacity: 1;
}

/* ============ REFINED CONTROL QUOTE ============ */
.control_quote {
  position: relative;
  padding: 20px 30px !important;
  max-width: 700px !important;
  margin: 30px auto !important;
  font-style: italic !important;
  line-height: 1.6 !important;
}

.control_quote::before,
.control_quote::after {
  content: '«';
  position: absolute;
  font-family: 'Georgia', serif;
  font-size: 50px;
  color: rgba(255, 187, 0, 0.12);
  line-height: 1;
  pointer-events: none;
}

.control_quote::before {
  top: -15px;
  left: -5px;
}

.control_quote::after {
  content: '»';
  bottom: -25px;
  right: -5px;
}

/* ============ PLATFORM PURPOSE ENHANCEMENT ============ */
.platform_purpose {
  max-width: 800px !important;
  margin: 40px auto !important;
  padding: 24px 30px !important;
  line-height: 1.8 !important;
  font-size: clamp(0.8rem, 1.3vw, 0.95rem) !important;
  color: rgba(255, 255, 255, 0.65) !important;
  text-align: center !important;
  background: linear-gradient(145deg, rgba(18, 18, 30, 0.5), rgba(10, 10, 20, 0.6)) !important;
  border: 1px solid rgba(255, 187, 0, 0.1) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  position: relative !important;
  z-index: 2 !important;
  pointer-events: auto !important;
}

/* ============ INCOME GRID SECTION WRAPPER ============ */
.main_income_info {
  padding: 20px 0 !important;
}

.owner_income_title {
  margin-bottom: 10px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem) !important;
}

/* ============ COMMUNITY BENEFITS LIST SPACING ============ */
.community_benefits_list {
  gap: 20px !important;
  max-width: 1000px !important;
  margin: 30px auto !important;
}

/* ============ TESTIMONIAL ENHANCEMENT ============ */
.testimonial_card {
  position: relative;
}

.testimonial_card .testimonial_text {
  position: relative;
  z-index: 1;
}

.testimonial_card .testimonial_text::before {
  content: '“';
  position: absolute;
  top: -15px;
  left: -5px;
  font-size: 60px;
  font-family: 'Georgia', serif;
  color: rgba(255, 187, 0, 0.08);
  line-height: 1;
  z-index: 0;
}

/* ============ SMOOTH SCROLLBAR FOR MODALS ============ */
.premium_modal {
  scrollbar-width: thin;
  scrollbar-color: var(--lux-gold) rgba(0, 0, 0, 0.3);
}

.premium_modal::-webkit-scrollbar {
  width: 6px;
}

.premium_modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.premium_modal::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lux-gold), var(--lux-gold-deep));
  border-radius: 6px;
}

/* ============ SECTION DIVIDER ENHANCEMENT ============ */
.section-divider {
  position: relative;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 187, 0, 0.3), rgba(255, 187, 0, 0.5), rgba(255, 187, 0, 0.3), transparent) !important;
}

.section-divider::after {
  font-size: 16px !important;
  padding: 0 20px !important;
}

/* ============ MOBILE HEADING WRAP FIX ============ */
@media (max-width: 768px) {
  .income_heading,
  .community_heading,
  .info4,
  .info41 {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    padding: 0 15px !important;
    line-height: 1.3 !important;
  }

  .control_quote {
    padding: 15px 20px !important;
  }

  .control_quote::before { font-size: 40px; top: -5px; }
  .control_quote::after { font-size: 40px; bottom: -20px; }

  .platform_purpose {
    padding: 18px 20px !important;
    margin: 25px auto !important;
  }

  .community_benefits_list {
    gap: 15px !important;
  }
}

@media (max-width: 480px) {
  .income_heading,
  .community_heading,
  .info4,
  .info41 {
    font-size: clamp(1.2rem, 6vw, 1.6rem) !important;
    padding: 0 10px !important;
  }

  .control_quote {
    padding: 12px 15px !important;
    letter-spacing: 1px !important;
  }

  .control_quote::before { display: none; }
  .control_quote::after { display: none; }

  .platform_purpose {
    padding: 15px !important;
    font-size: 0.8rem !important;
  }

  .section-divider {
    width: 90% !important;
  }

  .section-divider::after {
    font-size: 12px !important;
    padding: 0 12px !important;
  }
}

/* ============ IMAGE6 CONTAINER ZOOMABLE CLASS ============ */
.image6-container.lux-zoomable::after {
  top: 15px;
  right: 15px;
}


/* ============================================================
   PART 4: HACKTOOLS PREMIUM CARD — COMPREHENSIVE RESPONSIVE
   Optimized for ALL screen sizes:
   Ultra-wide (1920+) > Desktop (1280+) > Laptop (1024+)
   Tablet (768+) > Large Mobile (480+) > Small Mobile (360+)
   Ultra-Small (<360px)
   ============================================================ */

/* ============ AFFILIATE GRID: SINGLE CARD CENTERING ============ */
.affiliate_grid {
  justify-items: center !important;
  padding: 20px 10px !important;
}

.affiliate_grid .referral_card {
  max-width: 560px !important;
  width: 100% !important;
}

@media (min-width: 769px) {
  .affiliate_grid {
    justify-content: center !important;
    padding: 30px 10px !important;
  }
}

@media (min-width: 1280px) {
  .affiliate_grid .referral_card {
    max-width: 600px !important;
  }
}

/* ============ HACKTOOLS PREMIUM CARD: BASE ============ */
.hacktools-premium-card {
  position: relative;
  border: 2px solid rgba(255, 187, 0, 0.5) !important;
  background: linear-gradient(145deg, rgba(30, 25, 15, 0.95), rgba(18, 14, 8, 0.98)) !important;
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 187, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s ease,
              border-color 0.4s ease !important;
  padding: 24px !important;
}

/* Radial glow at top */
.hacktools-premium-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(255, 187, 0, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Moving shimmer sweep */
.hacktools-premium-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 187, 0, 0.06), transparent);
  animation: hacktools-shimmer 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes hacktools-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.hacktools-premium-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: rgba(255, 187, 0, 0.7) !important;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(255, 187, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

/* All children above pseudo-elements */
.hacktools-premium-card > * {
  position: relative;
  z-index: 1;
}

/* ============ PREMIUM BADGE ============ */
.hacktools-premium-badge {
  position: absolute;
  top: -2px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold), var(--lux-gold-deep));
  background-size: 200% 200%;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 15px rgba(255, 187, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: hacktools-badge-glow 2.5s ease-in-out infinite;
  z-index: 10;
}

@keyframes hacktools-badge-glow {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 0 4px 15px rgba(255, 187, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 6px 25px rgba(255, 187, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
}

.hacktools-premium-badge .badge-icon {
  font-size: 0.9rem;
  animation: hacktools-icon-bounce 1.8s ease-in-out infinite;
}

@keyframes hacktools-icon-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.2); }
}

/* ============ HEADER: Title + Icon ============ */
.hacktools-premium-card .referral_header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
  padding-top: 14px !important;
  flex-wrap: nowrap !important;
}

.hacktools-premium-card .referral_title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: clamp(1.1rem, 3.2vw, 1.55rem) !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--lux-gold-light), var(--lux-gold), var(--lux-gold-deep)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 30px rgba(255, 187, 0, 0.3) !important;
  letter-spacing: 0.03em !important;
  text-align: left !important;
  margin: 0 !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

.hacktools-premium-card .referral_icon {
  width: clamp(52px, 12vw, 72px) !important;
  height: clamp(52px, 12vw, 72px) !important;
  aspect-ratio: 1 !important;
  flex-shrink: 0 !important;
  object-fit: cover !important;
  border: 2px solid rgba(255, 187, 0, 0.5) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(255, 187, 0, 0.25), 0 0 12px rgba(255, 187, 0, 0.15) !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
  background: linear-gradient(135deg, rgba(255, 187, 0, 0.12), rgba(255, 153, 0, 0.05));
  padding: 3px !important;
}

.hacktools-premium-card:hover .referral_icon {
  transform: rotate(8deg) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(255, 187, 0, 0.35) !important;
}

/* ============ DOWNLOAD BUTTON ============ */
.hacktools-premium-card .download_btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 14px 24px !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  color: #0a0a0a !important;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-deep)) !important;
  border: none !important;
  border-radius: 14px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(255, 187, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  animation: hacktools-btn-pulse 3s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px !important;
}

@keyframes hacktools-btn-pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(255, 187, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 187, 0, 0.55), 0 0 40px rgba(255, 187, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

.hacktools-premium-card .download_btn:hover {
  transform: translateY(-4px) scale(1.03) !important;
  box-shadow: 0 12px 35px rgba(255, 187, 0, 0.6), 0 0 50px rgba(255, 187, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.hacktools-premium-card .download_icon {
  font-size: 1.2em;
  animation: hacktools-download-bounce 2s ease-in-out infinite;
}

@keyframes hacktools-download-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hacktools-premium-card .download_text {
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}

/* ============ FEATURE LIST ============ */
.hacktools-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: rgba(255, 187, 0, 0.05);
  border: 1px solid rgba(255, 187, 0, 0.2);
  border-radius: 14px;
}

.hacktools-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.4;
}

.hacktools-feature-item .feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-deep));
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 187, 0, 0.3);
}

/* ============ REFERRAL CONTENT ITEMS ============ */
.hacktools-premium-card .referral_content {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.hacktools-premium-card .referral_item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 187, 0, 0.15) !important;
  border-radius: 12px !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
}

.hacktools-premium-card .referral_item:hover {
  background: rgba(255, 187, 0, 0.06) !important;
  border-color: rgba(255, 187, 0, 0.35) !important;
}

.hacktools-premium-card .referral_flag {
  font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
}

.hacktools-premium-card .referral_info {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
}

.hacktools-premium-card .referral_amount {
  font-family: 'Orbitron', sans-serif !important;
  font-size: clamp(0.85rem, 2.5vw, 1.05rem) !important;
  font-weight: 700 !important;
  color: var(--lux-gold) !important;
  text-shadow: 0 0 10px rgba(255, 187, 0, 0.3) !important;
}

.hacktools-premium-card .referral_label {
  font-size: clamp(0.7rem, 1.8vw, 0.8rem) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 500 !important;
}

/* ============ REFERRAL IMAGE ============ */
.hacktools-premium-card .hacktools_ref_image {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 187, 0, 0.2) !important;
  margin: 4px 0 !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.hacktools-premium-card .hacktools_ref_image:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 8px 25px rgba(255, 187, 0, 0.2) !important;
}

/* ============ REFERRAL DESCRIPTION ============ */
.hacktools-premium-card .referral_desc {
  font-size: clamp(0.75rem, 2vw, 0.88rem) !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-align: center !important;
  margin-top: 8px !important;
  padding: 0 4px !important;
}

.hacktools-premium-card .referral_link {
  color: var(--lux-gold) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  transition: color 0.3s ease, text-shadow 0.3s ease !important;
}

.hacktools-premium-card .referral_link:hover {
  color: var(--lux-gold-light) !important;
  text-shadow: 0 0 12px rgba(255, 187, 0, 0.5) !important;
}

/* ============ DESKTOP: 1024px+ ============ */
@media (min-width: 1024px) {
  .hacktools-premium-card {
    padding: 28px !important;
  }
  .hacktools-premium-badge {
    right: 28px;
    font-size: 0.75rem;
    padding: 8px 20px;
  }
  .hacktools-features {
    padding: 18px 20px;
    gap: 12px;
  }
  .hacktools-feature-item {
    font-size: 0.92rem;
  }
}

/* ============ LARGE DESKTOP: 1440px+ ============ */
@media (min-width: 1440px) {
  .hacktools-premium-card {
    padding: 32px !important;
  }
  .affiliate_grid .referral_card {
    max-width: 640px !important;
  }
  .hacktools-premium-card .referral_title {
    font-size: 1.6rem !important;
  }
  .hacktools-premium-card .referral_icon {
    width: 88px !important;
    height: 88px !important;
  }
}

/* ============ ULTRA-WIDE: 1920px+ ============ */
@media (min-width: 1920px) {
  .affiliate_grid .referral_card {
    max-width: 700px !important;
  }
  .hacktools-premium-card {
    padding: 36px !important;
  }
  .hacktools-premium-badge {
    font-size: 0.8rem;
    padding: 9px 22px;
    right: 32px;
  }
}

/* ============ TABLET: 768px - 1023px ============ */
@media (max-width: 1023px) and (min-width: 769px) {
  .hacktools-premium-card {
    padding: 24px !important;
  }
  .hacktools-premium-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
    right: 20px;
  }
  .hacktools-features {
    padding: 14px 16px;
    gap: 10px;
  }
  .hacktools-feature-item {
    font-size: 0.82rem;
  }
}

/* ============ LARGE MOBILE: 481px - 768px ============ */
@media (max-width: 768px) {
  .hacktools-premium-card {
    padding: 20px !important;
  }
  .hacktools-premium-badge {
    font-size: 0.6rem;
    padding: 5px 13px;
    right: 16px;
    gap: 4px;
    letter-spacing: 1px;
  }
  .hacktools-premium-badge .badge-icon {
    font-size: 0.75rem;
  }
  .hacktools-premium-card .referral_header {
    gap: 10px !important;
    margin-bottom: 14px !important;
    padding-top: 8px !important;
  }
  .hacktools-premium-card .referral_title {
    font-size: 1.2rem !important;
  }
  .hacktools-premium-card .referral_icon {
    width: 64px !important;
    height: 64px !important;
  }
  .hacktools-premium-card .download_btn {
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    margin-bottom: 14px !important;
  }
  .hacktools-features {
    padding: 12px 14px;
    gap: 8px;
    margin-bottom: 14px;
  }
  .hacktools-feature-item {
    font-size: 0.78rem;
    gap: 8px;
  }
  .hacktools-feature-item .feature-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    font-size: 0.6rem;
  }
  .hacktools-premium-card .referral_item {
    padding: 10px 12px !important;
    gap: 10px !important;
  }
  .hacktools-premium-card .referral_flag {
    font-size: 1.5rem !important;
  }
  .hacktools-premium-card .referral_amount {
    font-size: 0.9rem !important;
  }
  .hacktools-premium-card .referral_label {
    font-size: 0.72rem !important;
  }
  .hacktools-premium-card .referral_desc {
    font-size: 0.78rem !important;
  }
}

/* ============ SMALL MOBILE: 361px - 480px ============ */
@media (max-width: 480px) {
  .affiliate_grid {
    padding: 15px 8px !important;
  }
  .hacktools-premium-card {
    padding: 16px !important;
    border-width: 1.5px !important;
  }
  .hacktools-premium-badge {
    font-size: 0.55rem;
    padding: 4px 11px;
    right: 12px;
    gap: 3px;
    letter-spacing: 0.8px;
    border-radius: 0 0 10px 10px;
  }
  .hacktools-premium-badge .badge-icon {
    font-size: 0.65rem;
  }
  .hacktools-premium-card .referral_header {
    gap: 8px !important;
    margin-bottom: 12px !important;
    padding-top: 6px !important;
  }
  .hacktools-premium-card .referral_title {
    font-size: 1.05rem !important;
  }
  .hacktools-premium-card .referral_icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 12px !important;
  }
  .hacktools-premium-card .download_btn {
    padding: 11px 16px !important;
    font-size: 0.85rem !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    gap: 8px !important;
  }
  .hacktools-features {
    padding: 10px 12px;
    gap: 7px;
    margin-bottom: 12px;
    border-radius: 10px;
  }
  .hacktools-feature-item {
    font-size: 0.72rem;
    gap: 7px;
  }
  .hacktools-feature-item .feature-check {
    width: 16px;
    height: 16px;
    min-width: 16px;
    font-size: 0.55rem;
  }
  .hacktools-premium-card .referral_item {
    padding: 8px 10px !important;
    gap: 8px !important;
    border-radius: 10px !important;
  }
  .hacktools-premium-card .referral_flag {
    font-size: 1.3rem !important;
  }
  .hacktools-premium-card .referral_amount {
    font-size: 0.82rem !important;
  }
  .hacktools-premium-card .referral_label {
    font-size: 0.68rem !important;
  }
  .hacktools-premium-card .hacktools_ref_image {
    border-radius: 10px !important;
  }
  .hacktools-premium-card .referral_desc {
    font-size: 0.72rem !important;
    line-height: 1.5 !important;
  }
  .hacktools-premium-card:hover {
    transform: translateY(-4px) scale(1.01) !important;
  }
}

/* ============ VERY SMALL MOBILE: 320px - 360px ============ */
@media (max-width: 360px) {
  .affiliate_grid {
    padding: 10px 5px !important;
  }
  .hacktools-premium-card {
    padding: 12px !important;
    border-radius: 16px !important;
  }
  .hacktools-premium-badge {
    font-size: 0.5rem;
    padding: 3px 9px;
    right: 10px;
    gap: 2px;
    letter-spacing: 0.5px;
    border-radius: 0 0 8px 8px;
  }
  .hacktools-premium-badge .badge-icon {
    font-size: 0.55rem;
  }
  .hacktools-premium-card .referral_header {
    gap: 6px !important;
    margin-bottom: 10px !important;
    padding-top: 4px !important;
  }
  .hacktools-premium-card .referral_title {
    font-size: 0.95rem !important;
    letter-spacing: 0.02em !important;
  }
  .hacktools-premium-card .referral_icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 10px !important;
  }
  .hacktools-premium-card .download_btn {
    padding: 10px 14px !important;
    font-size: 0.78rem !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
    gap: 6px !important;
  }
  .hacktools-premium-card .download_icon {
    font-size: 1em;
  }
  .hacktools-features {
    padding: 8px 10px;
    gap: 5px;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  .hacktools-feature-item {
    font-size: 0.65rem;
    gap: 6px;
    line-height: 1.3;
  }
  .hacktools-feature-item .feature-check {
    width: 14px;
    height: 14px;
    min-width: 14px;
    font-size: 0.5rem;
  }
  .hacktools-premium-card .referral_item {
    padding: 7px 9px !important;
    gap: 7px !important;
    border-radius: 8px !important;
  }
  .hacktools-premium-card .referral_flag {
    font-size: 1.15rem !important;
  }
  .hacktools-premium-card .referral_amount {
    font-size: 0.75rem !important;
  }
  .hacktools-premium-card .referral_label {
    font-size: 0.62rem !important;
  }
  .hacktools-premium-card .referral_desc {
    font-size: 0.65rem !important;
    line-height: 1.45 !important;
    padding: 0 2px !important;
  }
  .hacktools-premium-card:hover {
    transform: translateY(-3px) !important;
  }
}

/* ============ ULTRA-SMALL: Below 320px ============ */
@media (max-width: 320px) {
  .hacktools-premium-card {
    padding: 10px !important;
    border-radius: 14px !important;
  }
  .hacktools-premium-badge {
    font-size: 0.45rem;
    padding: 3px 7px;
    right: 8px;
    letter-spacing: 0.3px;
  }
  .hacktools-premium-badge .badge-icon {
    font-size: 0.5rem;
  }
  .hacktools-premium-card .referral_title {
    font-size: 0.85rem !important;
  }
  .hacktools-premium-card .referral_icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 8px !important;
  }
  .hacktools-premium-card .download_btn {
    padding: 9px 12px !important;
    font-size: 0.72rem !important;
    border-radius: 8px !important;
    margin-bottom: 8px !important;
  }
  .hacktools-features {
    padding: 7px 8px;
    gap: 4px;
    margin-bottom: 8px;
  }
  .hacktools-feature-item {
    font-size: 0.6rem;
    gap: 5px;
  }
  .hacktools-feature-item .feature-check {
    width: 12px;
    height: 12px;
    min-width: 12px;
    font-size: 0.45rem;
  }
  .hacktools-premium-card .referral_item {
    padding: 6px 8px !important;
    gap: 6px !important;
  }
  .hacktools-premium-card .referral_flag {
    font-size: 1rem !important;
  }
  .hacktools-premium-card .referral_amount {
    font-size: 0.7rem !important;
  }
  .hacktools-premium-card .referral_label {
    font-size: 0.58rem !important;
  }
  .hacktools-premium-card .referral_desc {
    font-size: 0.6rem !important;
  }
}

/* ============ REDUCED MOTION: Disable animations ============ */
@media (prefers-reduced-motion: reduce) {
  .hacktools-premium-card::after,
  .hacktools-premium-badge,
  .hacktools-premium-badge .badge-icon,
  .hacktools-premium-card .download_btn,
  .hacktools-premium-card .download_icon {
    animation: none !important;
  }
  .hacktools-premium-card:hover {
    transform: none !important;
  }
}

/* ============ HIGH CONTRAST: Stronger borders ============ */
@media (prefers-contrast: high) {
  .hacktools-premium-card {
    border-width: 3px !important;
    border-color: rgba(255, 187, 0, 0.8) !important;
  }
  .hacktools-features {
    border-color: rgba(255, 187, 0, 0.5) !important;
  }
  .hacktools-feature-item {
    color: #fff !important;
  }
}

/* ============ HACKTOOLS PREMIUM HEADER — icon next to title (horizontal) ============ */
.hacktools-premium-card .referral_title {
  flex: 0 1 auto !important;
  min-width: 0 !important;
}
.hacktools-premium-card .referral_header {
  text-align: center;
}
@media (max-width: 360px) {
  .hacktools-premium-card .referral_header {
    gap: 10px !important;
  }
  .hacktools-premium-card .referral_title {
    font-size: 0.95rem !important;
  }
}
