/* ==========================================
   ANIMATED LANDING PAGE STYLES
   ========================================== */
/* ========== HEADER + HERO - SEAMLESS BLEND ========== */

/* Transparent header flows into hero */
.header.fixed-top {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  z-index: 1050 !important;
  padding: 16px 0 !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* After scrolling — frosted glass with gradient accent */
.header.fixed-top.shrink {
  background: rgba(8, 12, 24, 0.82) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 31, 113, 0.08) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 31, 113, 0.06) !important;
  padding: 10px 0 !important;
}

/* Nav links match hero typography */
.header .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.3px !important;
  transition: all 0.3s ease !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
}

.header .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

/* Nav brand subtle glow */
.header .navbar-brand img {
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(255, 31, 113, 0.15));
}

.header .navbar-brand:hover img {
  filter: drop-shadow(0 0 16px rgba(255, 31, 113, 0.3));
}

/* ========== NAV BUTTONS - MATCHING HERO STYLE ========== */

/* Get Started - matches hero gradient button but compact for nav */
.btn-signup {
  background: linear-gradient(135deg, #FF1F71 0%, #FF6044 50%, #FF1F71 100%) !important;
  background-size: 200% auto !important;
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  border: none !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 6px 20px rgba(255, 31, 113, 0.25) !important;
}

.btn-signup::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -120% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.btn-signup:hover::before {
  animation: btn-shine-sweep 0.7s ease forwards !important;
}

.btn-signup:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 14px 35px rgba(255, 31, 113, 0.4) !important;
  background-position: right center !important;
  color: #fff !important;
  text-decoration: none !important;
}

/* Login - subtle glass, matches hero ghost button */
.btn-login {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-login::after {
  display: none !important;
}

.btn-login:hover {
  border-color: rgba(255, 31, 113, 0.4) !important;
  background: rgba(255, 31, 113, 0.06) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

/* Particle Canvas */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ========== HERO CINEMATIC ========== */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 31, 113, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(96, 64, 255, 0.04) 0%, transparent 50%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 10;
}

/* Animated Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 31, 113, 0.12);
  top: -10%;
  left: -5%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(96, 68, 255, 0.08);
  bottom: -15%;
  right: -5%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 96, 68, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, 30px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 50px) scale(0.95);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, -30px) scale(1.15);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Grid Overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
  pointer-events: none;
}

/* Hero Text Block */
.hero-text-block {
  position: relative;
  z-index: 10;
}

/* Animated Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 31, 113, 0.08);
  border: 1px solid rgba(255, 31, 113, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #FF1F71;
  margin-bottom: 30px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #FF1F71;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.badge-arrow {
  font-size: 11px;
  animation: arrow-bounce 1.5s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@keyframes arrow-bounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

/* Mega Title */
.hero-mega-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.title-line {
  display: block;
}

.gradient-text,
.gradient-text-inline {
  background: linear-gradient(135deg, #FF1F71, #FF6044, #FF1F71);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* Cursor Blink */
.cursor-blink {
  color: #FF1F71;
  -webkit-text-fill-color: #FF1F71;
  animation: blink 1s step-end infinite;
  font-weight: 300;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Hero Description */
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 35px;
}

.highlight-num {
  color: #FF1F71;
  font-weight: 700;
}

/* Hero CTA Buttons - ULTRA PREMIUM */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

/* Shimmer sweep for buttons */
@keyframes btn-shine-sweep {
  0% {
    left: -120%;
  }

  100% {
    left: 120%;
  }
}

@keyframes premium-pulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(255, 31, 113, 0.35), 0 0 0 0 rgba(255, 31, 113, 0.2);
  }

  50% {
    box-shadow: 0 14px 40px rgba(255, 31, 113, 0.5), 0 0 0 8px rgba(255, 31, 113, 0);
  }
}

/* GET STARTED - Premium Solid Gradient Button */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FF1F71 0%, #FF6044 50%, #FF1F71 100%);
  background-size: 200% auto;
  color: #fff !important;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(255, 31, 113, 0.35);
  animation: premium-pulse 3s ease-in-out infinite;
  border: none;
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  pointer-events: none;
  z-index: 2;
}

.btn-cta-primary:hover::before {
  animation: btn-shine-sweep 0.7s ease forwards;
}

.btn-cta-primary .btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
}

.btn-cta-primary:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 24px 60px rgba(255, 31, 113, 0.5), 0 0 80px rgba(255, 31, 113, 0.12);
  background-position: right center;
  animation: none;
}

.btn-cta-primary:hover .btn-glow {
  width: 400px;
  height: 400px;
}

.btn-cta-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-cta-primary .btn-text {
  position: relative;
  z-index: 3;
}

.btn-cta-primary .btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s;
  position: relative;
  z-index: 3;
}

.btn-cta-primary:hover .btn-icon {
  transform: translateX(5px) rotate(-15deg);
}

/* Ghost / Outline Button - Premium */
@keyframes border-glow-rotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.btn-cta-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.btn-cta-ghost:hover::before {
  animation: btn-shine-sweep 0.7s ease forwards;
}

.btn-cta-ghost:hover {
  border-color: #FF1F71;
  background: rgba(255, 31, 113, 0.08);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 31, 113, 0.15), 0 0 0 1px rgba(255, 31, 113, 0.3);
}

.btn-cta-ghost:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-cta-ghost:hover .btn-icon {
  transform: translateX(5px);
}

.btn-cta-ghost .btn-text {
  position: relative;
  z-index: 3;
}

.btn-cta-ghost .btn-icon {
  transition: transform 0.3s;
  position: relative;
  z-index: 3;
}

/* Hero Micro Stats */
.hero-micro-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.micro-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 31, 113, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1F71;
  font-size: 16px;
}

.micro-num {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.micro-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.micro-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

/* ========== HERO VISUAL (RIGHT COLUMN) ========== */
.hero-visual-block {
  position: relative;
  width: 100%;
  height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 31, 113, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

/* Floating Cards */
.float-card {
  position: absolute;
  z-index: 20;
  transition: transform 0.3s ease-out;
}

.float-card-inner {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  animation: card-float 5s ease-in-out infinite;
}

.float-card-inner i {
  font-size: 24px;
  color: #FF1F71;
}

.float-card-label {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.float-card-stat {
  font-size: 12px;
  color: #00e676;
  font-weight: 700;
}

.float-card-1 {
  top: 5%;
  left: 0%;
  animation-delay: 0s;
}

.float-card-2 {
  top: 15%;
  right: -5%;
  animation-delay: -1.5s;
}

.float-card-3 {
  bottom: 25%;
  left: -5%;
  animation-delay: -3s;
}

.float-card-4 {
  bottom: 5%;
  right: 5%;
  animation-delay: -4s;
}

@keyframes card-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Dashboard Mock */
.hero-dashboard-mock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  background: rgba(10, 15, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  z-index: 15;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dash-dot.red {
  background: #ff5f57;
}

.dash-dot.yellow {
  background: #febc2e;
}

.dash-dot.green {
  background: #28c840;
}

.dash-title {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.dash-chart {
  position: relative;
  margin-bottom: 15px;
}

.chart-svg {
  width: 100%;
  border-radius: 10px;
}

.chart-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-line 2s ease-out 1.5s forwards;
}

.chart-area {
  opacity: 0;
  animation: fade-in-area 1s ease-out 2.5s forwards;
}

.chart-dot {
  opacity: 0;
  animation: fade-in-area 0.5s ease-out 3s forwards;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fade-in-area {
  to {
    opacity: 1;
  }
}

.chart-label-live {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #00e676;
  text-transform: uppercase;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #00e676;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.dash-stats-row {
  display: flex;
  justify-content: space-between;
}

.dash-stat-num {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #FF1F71, #FF6044);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-success-glow {
  background: linear-gradient(135deg, #00e676, #00c853) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.dash-stat-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

/* Scroll Indicator - positioned within hero flow, not absolute */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: #FF1F71;
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

/* ========== SLIDE-UP ENTRY ANIMATIONS ========== */
.anim-slide-up {
  opacity: 0;
  transform: translateY(40px);
}

.anim-slide-up.animate-in {
  animation: slideUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-in {
  opacity: 0;
}

.anim-fade-in.fade-animate-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ========== SCROLL REVEAL BASE ========== */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== LOGIN GLASS CARD ========== */
.floating-login-section {
  padding: 60px 0;
  position: relative;
  z-index: 5;
  margin-top: -40px;
}

.login-glass-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.login-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 31, 113, 0.04) 0%, transparent 60%);
  pointer-events: none;
  animation: rotate-glow 15s linear infinite;
}

@keyframes rotate-glow {
  to {
    transform: rotate(360deg);
  }
}

.login-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(255, 31, 113, 0.1);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FF1F71;
  font-size: 22px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  z-index: 2;
}

.input-icon-wrap .form-control {
  padding-left: 48px !important;
}

/* ========== SECTION TITLES ========== */
.section-title-block {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 31, 113, 0.08);
  color: #FF1F71;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 15px;
}

.section-desc {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ========== PLATFORMS SECTION ========== */
.platforms-section {
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.platform-anim-card-inner {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-anim-card-inner:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 31, 113, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.platform-icon-ring {
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255, 31, 113, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #FF1F71;
  transition: all 0.5s ease;
  position: relative;
}

.platform-anim-card-inner:hover .platform-icon-ring {
  background: linear-gradient(135deg, #FF1F71, #FF6044);
  border-color: transparent;
  color: #fff;
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 10px 25px rgba(255, 31, 113, 0.3);
}

.platform-anim-card-inner h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.platform-anim-card-inner p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.platform-link {
  color: #FF1F71 !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.platform-link:hover {
  gap: 12px;
}

.platform-card-shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: rotate(25deg);
  transition: all 0.7s ease;
  pointer-events: none;
}

.platform-anim-card-inner:hover .platform-card-shine {
  left: 150%;
}

/* ========== FEATURES SECTION ========== */
.features-anim-section {
  padding: 80px 0;
  position: relative;
  z-index: 5;
  background: rgba(5, 8, 17, 0.5);
}

.feature-anim-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 23, 42, 0.4);
  transition: all 0.5s ease;
  height: 100%;
}

.feature-anim-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 31, 113, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-sphere {
  width: 80px;
  height: 80px;
  background: rgba(255, 31, 113, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: #FF1F71;
  position: relative;
  transition: all 0.5s ease;
}

.sphere-ring {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(255, 31, 113, 0.15);
  border-radius: 24px;
  animation: ring-rotate 8s linear infinite;
}

@keyframes ring-rotate {
  to {
    transform: rotate(360deg);
  }
}

.feature-anim-card:hover .feature-icon-sphere {
  background: linear-gradient(135deg, #FF1F71, #FF6044);
  color: #fff;
  transform: scale(1.1);
}

.feature-anim-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-anim-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== STEPS SECTION ========== */
.steps-section {
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.steps-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 31, 113, 0.3), rgba(255, 31, 113, 0.05));
}

.step-anim-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.step-number-circle {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: rgba(255, 31, 113, 0.08);
  border: 2px solid rgba(255, 31, 113, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.5s ease;
}

.step-number-circle span {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #FF1F71, #FF6044);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-anim-item:hover .step-number-circle {
  background: linear-gradient(135deg, #FF1F71, #FF6044);
  border-color: transparent;
  transform: scale(1.1);
}

.step-anim-item:hover .step-number-circle span {
  -webkit-text-fill-color: #fff;
}

.step-content-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  flex: 1;
  transition: all 0.5s ease;
}

.step-anim-item:hover .step-content-card {
  border-color: rgba(255, 31, 113, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-icon-mini {
  font-size: 20px;
  color: #FF1F71;
  margin-bottom: 12px;
}

.step-content-card h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.step-content-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin: 0;
}

/* ========== STATS SECTION ========== */
.stats-anim-section {
  padding: 70px 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: rgba(5, 8, 17, 0.6);
}

.stats-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 31, 113, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-anim-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.5s ease;
}

.stat-anim-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 31, 113, 0.3);
}

.stat-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(255, 31, 113, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #FF1F71;
  font-size: 20px;
}

.stat-anim-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  display: inline;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF1F71, #FF6044);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.stat-anim-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 5px;
}

.stat-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF1F71, #FF6044);
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== FAQ SECTION ========== */
.faq-anim-section {
  padding: 70px 0;
  position: relative;
  z-index: 5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-anim-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-anim-item:hover,
.faq-anim-item.active {
  border-color: rgba(255, 31, 113, 0.3);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question span {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: rgba(255, 31, 113, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1F71;
  font-size: 12px;
  transition: all 0.4s ease;
}

.faq-anim-item.active .faq-toggle {
  background: linear-gradient(135deg, #FF1F71, #FF6044);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s;
  padding: 0 28px;
}

.faq-anim-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-anim-section {
  padding: 70px 0;
  position: relative;
  z-index: 5;
}

.cta-anim-box {
  background: linear-gradient(135deg, #FF1F71, #FF6044, #FF1F71);
  background-size: 200% 200%;
  animation: cta-gradient 6s ease infinite;
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(255, 31, 113, 0.3);
}

@keyframes cta-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.cta-content {
  position: relative;
  z-index: 5;
}

.cta-anim-box h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-anim-box .gradient-text-inline {
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
}

.cta-anim-box p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white-anim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #FF1F71 !important;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta-white-anim:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .hero-mega-title {
    font-size: 2.8rem;
  }

  .hero-cinematic {
    padding: 110px 0 50px;
    min-height: auto;
  }

  .hero-badge {
    margin-bottom: 20px;
  }

  .hero-desc {
    margin-bottom: 25px;
  }

  .hero-actions {
    margin-bottom: 25px;
  }

  .platforms-section {
    padding: 50px 0;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .features-anim-section {
    padding: 50px 0;
  }

  .steps-section {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-anim-section {
    padding: 50px 0;
  }

  .faq-anim-section {
    padding: 50px 0;
  }

  .cta-anim-section {
    padding: 50px 0;
  }

  .hero-micro-stats {
    flex-wrap: wrap;
    gap: 14px;
  }

  .micro-divider {
    display: none;
  }

  .timeline-line {
    display: none;
  }

  .step-anim-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  .step-number-circle {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }

  .step-number-circle span {
    font-size: 16px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-title-block {
    margin-bottom: 35px;
  }

  .floating-login-section {
    padding: 40px 0;
    margin-top: -20px;
  }

  .scroll-indicator {
    display: none;
  }

  .feature-anim-card {
    padding: 25px 20px;
  }

  .stat-anim-card {
    padding: 25px 15px;
  }

  .stat-anim-number {
    font-size: 2.2rem;
  }

  .cta-anim-box {
    padding: 45px 25px;
    border-radius: 20px;
  }

  .cta-anim-box h2 {
    font-size: 1.8rem;
  }

  .cta-anim-box p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .btn-cta-primary,
  .btn-cta-ghost {
    transform: none;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-bottom: 25px;
  }

  .btn-cta-primary:hover,
  .btn-cta-ghost:hover {
    transform: translateY(-2px);
  }

  .platform-anim-card-inner {
    padding: 25px 18px;
  }
}

@media (max-width: 576px) {
  .hero-mega-title {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-cinematic {
    padding: 95px 0 35px;
  }

  .hero-badge {
    padding: 6px 14px;
    font-size: 11px;
    margin-bottom: 15px;
  }

  .platforms-section {
    padding: 35px 0;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .features-anim-section {
    padding: 35px 0;
  }

  .steps-section {
    padding: 35px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stats-anim-section {
    padding: 35px 0;
  }

  .faq-anim-section {
    padding: 35px 0;
  }

  .cta-anim-section {
    padding: 35px 0;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 20px;
  }

  .btn-cta-primary,
  .btn-cta-ghost {
    transform: none;
    width: 100%;
    padding: 12px 15px;
  }

  .btn-cta-primary:hover,
  .btn-cta-ghost:hover {
    transform: translateY(-1px);
  }

  .btn-cta-primary {
    animation: none !important;
  }

  .cta-anim-box {
    padding: 35px 20px;
  }

  .cta-anim-box h2 {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.7rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  .section-title-block {
    margin-bottom: 25px;
  }

  .floating-login-section {
    padding: 30px 0;
  }

  .login-glass-card {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question span {
    font-size: 0.88rem;
  }

  .step-content-card {
    padding: 20px;
  }

  .step-anim-item {
    margin-bottom: 20px;
    gap: 15px;
  }

  .hero-micro-stats {
    gap: 10px;
  }

  .micro-stat-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .micro-num {
    font-size: 13px;
  }

  .micro-label {
    font-size: 9px;
  }

  .micro-stat {
    gap: 8px;
  }

  .stat-anim-number {
    font-size: 1.8rem;
  }

  .stat-suffix {
    font-size: 1rem;
  }

  .btn-cta-white-anim {
    padding: 14px 28px;
    font-size: 13px;
  }
}

/* ==========================================
   AUTH PAGES - HERO STYLE
   ========================================== */

/* Full page hero background */
.auth-hero-page {
  position: relative;
  min-height: 100vh;
  background: var(--dark-navy, #0a0e1a);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Glass Card */
.auth-glass-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 40px 38px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: authCardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes authCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Rotating glow behind card */
.auth-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, rgba(255, 31, 113, 0.04), transparent, rgba(255, 96, 68, 0.03), transparent, rgba(255, 31, 113, 0.04));
  pointer-events: none;
  animation: rotate-glow 20s linear infinite;
  z-index: 0;
}

/* Icon wrap */
.auth-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 31, 113, 0.1);
  border: 1px solid rgba(255, 31, 113, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1F71;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.auth-icon-wrap.success {
  background: rgba(0, 230, 118, 0.1);
  border-color: rgba(0, 230, 118, 0.2);
  color: #00e676;
  width: 64px;
  height: 64px;
  font-size: 26px;
}

/* Title & Subtitle */
.auth-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Input Groups with Icons */
.auth-input-group {
  position: relative;
  z-index: 2;
}

.auth-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  z-index: 3;
  transition: color 0.3s;
  pointer-events: none;
}

.auth-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 14px 16px 14px 46px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}

.auth-input:focus {
  border-color: rgba(255, 31, 113, 0.4) !important;
  background: rgba(255, 31, 113, 0.03) !important;
  box-shadow: 0 0 0 3px rgba(255, 31, 113, 0.08) !important;
  outline: none !important;
}

.auth-input:focus+.auth-input-icon,
.auth-input-group:focus-within .auth-input-icon {
  color: #FF1F71;
}

.auth-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

select.auth-input option {
  background: #0f172a;
  color: #fff;
}

/* Submit Button */
.auth-btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF1F71 0%, #FF6044 50%, #FF1F71 100%) !important;
  background-size: 200% auto !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 8px 25px rgba(255, 31, 113, 0.3) !important;
  z-index: 2;
  text-decoration: none !important;
}

.auth-btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
  z-index: 2;
}

.auth-btn-submit:hover::before {
  animation: btn-shine-sweep 0.7s ease forwards;
}

.auth-btn-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(255, 31, 113, 0.45) !important;
  background-position: right center !important;
}

.auth-btn-submit:active {
  transform: translateY(-1px) scale(0.98) !important;
}

/* Checkbox */
.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.auth-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #FF1F71;
  cursor: pointer;
}

.auth-checkbox span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

/* Links */
.auth-link {
  color: #FF1F71 !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.3s;
}

.auth-link:hover {
  color: #FF6044 !important;
  text-decoration: underline !important;
}

.auth-link-small {
  color: #FF1F71 !important;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none !important;
  position: relative;
  z-index: 2;
}

.auth-link-small:hover {
  text-decoration: underline !important;
}

.auth-footer-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  position: relative;
  z-index: 2;
}

/* Auth page responsive */
@media (max-width: 576px) {
  .auth-glass-card {
    padding: 30px 24px;
    border-radius: 20px;
  }

  .auth-title {
    font-size: 1.3rem;
  }

  .auth-input {
    padding: 12px 14px 12px 42px !important;
    font-size: 13px !important;
  }

  .auth-btn-submit {
    padding: 12px 24px !important;
    font-size: 13px !important;
  }

  .auth-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* ==========================================
   DASHBOARD & SIDEBAR PREMIUM REFINEMENTS
   ========================================== */

/* 1. Sidebar Smooth Transitions (Optimized for Mobile) */
.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: rgba(8, 12, 24, 0.95) !important;
    backdrop-filter: blur(15px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(150%) !important;
    z-index: 10000 !important;
    transform: translate3d(-100%, 0, 0); /* Use hardware acceleration */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform;
    border-right: 1px solid rgba(255, 31, 113, 0.15) !important;
    visibility: hidden; /* Prevent interaction when closed */
}

.side-panel.open {
    transform: translate3d(0, 0, 0) !important;
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.6), 5px 0 20px rgba(255, 31, 113, 0.1) !important;
    visibility: visible !important;
}

/* Reduced blur on mobile for higher FPS */
@media (max-width: 768px) {
    .side-panel {
        backdrop-filter: blur(8px) saturate(120%) !important;
        -webkit-backdrop-filter: blur(8px) saturate(120%) !important;
        width: 280px;
        transition-duration: 0.35s !important;
    }
}

.overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.overlay-blur.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.menu-item {
    display: flex !important;
    align-items: center !important;
    padding: 12px 25px !important;
    margin-bottom: 5px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    border-radius: 0 12px 12px 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-left: 3px solid transparent;
    font-weight: 500 !important;
    font-size: 14px !important;
}

.menu-item i {
    width: 20px !important;
    margin-right: 15px !important;
    font-size: 18px !important;
    text-align: center !important;
}

.menu-item:hover, .menu-item.active {
    background: linear-gradient(90deg, rgba(255, 31, 113, 0.1) 0%, transparent 100%) !important;
    border-left-color: #FF1F71 !important;
    color: #fff !important;
}

.menu-item.active i {
    color: #FF1F71 !important;
}

/* 2. Glassmorphic C3 Charts Styling */
.c3 svg {
    font-family: 'Inter', sans-serif !important;
}

.c3-axis-x .tick line, .c3-axis-y .tick line {
    stroke: rgba(255, 255, 255, 0.1) !important;
}

.c3-axis-x path, .c3-axis-y path {
    stroke: rgba(255, 255, 255, 0.2) !important;
}

.c3-axis-x tspan, .c3-axis-y tspan {
    fill: rgba(255, 255, 255, 0.4) !important;
    font-size: 10px !important;
    font-weight: 500;
}

.c3-legend-item {
    fill: rgba(255, 255, 255, 0.7) !important;
    font-size: 11px !important;
}

.c3-tooltip-container {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.c3-tooltip th {
    background: rgba(255, 31, 113, 0.15) !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.c3-tooltip td {
    color: rgba(255, 255, 255, 0.8) !important;
    border-left: none !important;
}

/* 3. Dashboard Card Enhanced Shimmer */
.nexus-glass-card {
    overflow: hidden;
}

.nexus-glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 1;
}

.nexus-glass-card:hover::before {
    animation: shimmer-sweep 0.8s ease forwards;
}

.stat-card .icon-wrap {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.stat-card:hover .icon-wrap {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 4. Sidebar Toggle Refinement */
.sidebar-toggle {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.sidebar-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 31, 113, 0.5) !important;
}

.sidebar-toggle:active {
    transform: scale(0.9);
}

/* 5. Trending Table Refinement */
.table-responsive::-webkit-scrollbar {
    height: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: rgba(255, 31, 113, 0.3);
    border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-track {
    background: transparent;
}

/* 6. WhatsApp Floating Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: #fff !important;
}

.whatsapp-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-ping 2s infinite linear;
}

@keyframes whatsapp-ping {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-floating-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}