/* ============================================
   WARRIS CORP - ULTIMATE UNIQUE DESIGN
   Original, Bold, Premium-First
   ============================================ */

/* ============ CSS VARIABLES ============ */
:root {
  /* WARRIS Brand - Signature Pink */
  --warris-pink: #f71f86;
  --warris-pink-light: #ff4da6;
  --warris-pink-dark: #c91869;
  --warris-pink-glow: rgba(247, 31, 134, 0.4);
  --warris-pink-subtle: rgba(247, 31, 134, 0.1);
  
  /* Accent - Gold for Premium */
  --warris-gold: #ffd700;
  --warris-gold-glow: rgba(255, 215, 0, 0.3);
  
  /* Dark Theme */
  --bg-dark: #030305;
  --bg-surface: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --bg-elevated: #15151f;
  
  /* Text */
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-muted: #6b7280;
  
  /* Borders & Effects */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(247, 31, 134, 0.4);
  
  /* Shadows */
  --shadow-pink: 0 0 60px rgba(247, 31, 134, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ BASE RESET ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 100px;
}

/* ============ UNIQUE PREMIUM BACKGROUND ============ */
.warris-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: 
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(247, 31, 134, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 80% 50%, rgba(247, 31, 134, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(247, 31, 134, 0.06) 0%, transparent 50%),
    var(--bg-dark);
  overflow: hidden;
}

/* Animated gradient orbs - More premium */
.warris-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 900px;
  height: 900px;
  background: 
    radial-gradient(circle at 30% 30%, rgba(247, 31, 134, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255, 77, 166, 0.15) 0%, transparent 40%);
  border-radius: 50%;
  animation: float-orb-premium 25s ease-in-out infinite;
  filter: blur(40px);
}

.warris-bg::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 1000px;
  height: 1000px;
  background: 
    radial-gradient(circle at 40% 60%, rgba(247, 31, 134, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(199, 21, 133, 0.1) 0%, transparent 40%);
  border-radius: 50%;
  animation: float-orb-premium 30s ease-in-out infinite reverse;
  filter: blur(60px);
}

@keyframes float-orb-premium {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  20% { transform: translate(60px, -40px) scale(1.08) rotate(5deg); }
  40% { transform: translate(-40px, 60px) scale(0.95) rotate(-3deg); }
  60% { transform: translate(50px, 40px) scale(1.05) rotate(8deg); }
  80% { transform: translate(-30px, -50px) scale(0.98) rotate(-5deg); }
}

/* Premium Grid pattern overlay - Enhanced */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(247, 31, 134, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 31, 134, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: 
    radial-gradient(ellipse 100% 80% at 50% 20%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
  -webkit-mask-image: 
    radial-gradient(ellipse 100% 80% at 50% 20%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
  pointer-events: none;
  animation: grid-pulse 8s ease-in-out infinite;
}

/* Secondary grid for depth */
.grid-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(247, 31, 134, 0.03) 2px, transparent 2px),
    linear-gradient(90deg, rgba(247, 31, 134, 0.03) 2px, transparent 2px);
  background-size: 150px 150px;
  animation: grid-shift 20s linear infinite;
}

/* Glowing intersection points */
.grid-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle 2px at center, rgba(247, 31, 134, 0.3) 0%, transparent 100%);
  background-size: 50px 50px;
  mask-image: 
    radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 60%);
  -webkit-mask-image: 
    radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 60%);
}

@keyframes grid-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes grid-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(150px, 150px); }
}

/* Premium Noise texture overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Scan line effect for extra premium feel */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.5;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--warris-pink);
  border-radius: 3px;
}

/* ============ HEADER ============ */
#headbar-warris {
  background: rgba(3, 3, 5, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
}

#headbar-warris.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
}

#headbar-warris .nav-btn {
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--text-gray) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius-sm) !important;
  transition: all 0.25s var(--ease) !important;
}

#headbar-warris .nav-btn:hover {
  color: var(--text-white) !important;
  background: var(--warris-pink-subtle) !important;
}

#warris-logo {
  height: 55px !important;
  filter: drop-shadow(0 0 20px rgba(247, 31, 134, 0.3)) !important;
}

/* ============ NAVBAR - STANDALONE PAGES ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(3, 3, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 50px;
  filter: drop-shadow(0 0 15px rgba(247, 31, 134, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  background: var(--warris-pink-subtle);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.nav-btn-outline {
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
}

.nav-btn-outline:hover {
  color: var(--text-white);
  border-color: var(--warris-pink);
  background: var(--warris-pink-subtle);
}

.nav-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-dark));
  border: none;
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px var(--warris-pink-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(3, 3, 5, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s var(--ease);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ============ ANIMATED BACKGROUND ============ */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: var(--bg-dark);
  overflow: hidden;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 31, 134, 0.25) 0%, transparent 70%);
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 31, 134, 0.15) 0%, transparent 70%);
  animation-delay: -7s;
}

.orb-3 {
  top: 40%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 77, 166, 0.1) 0%, transparent 70%);
  animation-delay: -14s;
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--warris-pink) 0%, var(--warris-pink-light) 50%, #ffc0cb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ CONTENT SECTIONS ============ */
.content-section {
  padding: 80px 24px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--warris-pink-subtle);
  border: 1px solid rgba(247, 31, 134, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warris-pink-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-grid.reverse {
  direction: rtl;
}

.feature-grid.reverse > * {
  direction: ltr;
}

.feature-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.feature-list i {
  color: var(--warris-pink);
}

.feature-visual {
  position: relative;
}

.showcase-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, var(--warris-pink-glow) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .feature-grid.reverse {
    direction: ltr;
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.stat-card:hover {
  border-color: rgba(247, 31, 134, 0.3);
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--warris-pink-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.stat-icon i {
  font-size: 1.5rem;
  color: var(--warris-pink);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Hex Cards */
.features-hex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.hex-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.hex-card:hover {
  border-color: rgba(247, 31, 134, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(247, 31, 134, 0.1);
}

.hex-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--warris-pink-subtle), rgba(247, 31, 134, 0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hex-icon i {
  font-size: 1.8rem;
  color: var(--warris-pink);
}

.hex-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.hex-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(247, 31, 134, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-dark));
  box-shadow: 0 4px 24px var(--warris-pink-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--warris-pink-glow);
}

.btn-outline {
  color: var(--text-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--warris-pink);
  background: var(--warris-pink-subtle);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand p {
  color: var(--text-gray);
  margin: 15px 0 20px;
  line-height: 1.7;
}

.footer-logo {
  height: 45px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: all 0.25s var(--ease);
}

.footer-social a:hover {
  background: var(--warris-pink);
  border-color: var(--warris-pink);
  color: #fff;
}

.footer-links h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--warris-pink-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ FLOATING BUTTONS ============ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.discord-btn {
  background: #5865F2;
  color: #fff;
}

.discord-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.scroll-top {
  background: var(--bg-card);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--warris-pink);
  border-color: var(--warris-pink);
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s var(--ease);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: color 0.25s var(--ease);
}

.modal-close:hover {
  color: var(--warris-pink);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header i {
  font-size: 3rem;
  color: var(--warris-pink);
  margin-bottom: 15px;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-body p {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.download-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.download-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.25s var(--ease);
}

.download-option:hover {
  border-color: var(--warris-pink);
  background: var(--warris-pink-subtle);
}

.download-option i {
  font-size: 1.5rem;
  color: var(--warris-pink);
}

.download-option span {
  font-weight: 600;
}

.download-option small {
  display: block;
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-top: 3px;
}

.download-option.premium {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(247, 31, 134, 0.05));
}

.download-option.premium i {
  color: var(--warris-gold);
}

.download-option.premium:hover {
  border-color: var(--warris-gold);
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============ HERO - PREMIUM FOCUSED ============ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Premium animated border glow */
.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--warris-pink) 60deg,
    transparent 120deg,
    transparent 180deg,
    var(--warris-pink-light) 240deg,
    transparent 300deg
  );
  opacity: 0.1;
  animation: hero-rotate 20s linear infinite;
  filter: blur(100px);
  pointer-events: none;
}

@keyframes hero-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Premium badge - Enhanced */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(247, 31, 134, 0.2), rgba(255, 215, 0, 0.1));
  border: 1px solid rgba(247, 31, 134, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warris-pink-light);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Shiny effect on badge */
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.hero-badge i {
  color: var(--warris-gold);
  filter: drop-shadow(0 0 8px var(--warris-gold-glow));
  animation: gold-pulse 2s ease-in-out infinite;
}

@keyframes gold-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--text-white);
  position: relative;
}

/* Text shadow for depth */
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: transparent;
  text-shadow: 0 0 80px var(--warris-pink-glow);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--warris-pink) 0%, var(--warris-pink-light) 40%, #ff8fbe 70%, var(--warris-pink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  animation: gradient-shift 4s ease-in-out infinite;
  position: relative;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Underline glow effect */
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--warris-pink), transparent);
  border-radius: 2px;
  opacity: 0.5;
  filter: blur(4px);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto 45px;
  line-height: 1.8;
}

/* Hero CTA Buttons - Enhanced */
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--warris-pink) 0%, var(--warris-pink-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 24px var(--warris-pink-glow), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px var(--warris-pink-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  border-color: var(--warris-pink);
  background: var(--warris-pink-subtle);
  color: var(--warris-pink-light);
}

.btn-outline i {
  transition: transform 0.3s var(--ease);
}

.btn-outline:hover i {
  transform: translateX(4px);
}

/* App Showcase - Floating Effect - Premium */
.app-showcase {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
  perspective: 1000px;
}

.app-showcase::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 70%;
  background: radial-gradient(ellipse, var(--warris-pink-glow) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.app-showcase img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 
    var(--shadow-card), 
    0 0 100px rgba(247, 31, 134, 0.25),
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(247, 31, 134, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease);
}

.app-showcase:hover img {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 
    var(--shadow-card), 
    0 0 120px rgba(247, 31, 134, 0.35),
    0 50px 100px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ============ STATS BAR - PREMIUM ============ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
}

/* Decorative line */
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 31, 134, 0.3), transparent);
}

.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 31, 134, 0.3), transparent);
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

/* Separator between stats */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(247, 31, 134, 0.4), transparent);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-light), #ff8fbe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 20px var(--warris-pink-glow));
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ============ SECTION LAYOUTS - PREMIUM ============ */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

/* Decorative glow behind section header */
.section-header::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(247, 31, 134, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--warris-pink);
  margin-bottom: 20px;
  padding: 8px 20px;
  background: rgba(247, 31, 134, 0.1);
  border: 1px solid rgba(247, 31, 134, 0.2);
  border-radius: var(--radius-full);
  position: relative;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-white);
  position: relative;
}

/* Subtle text glow */
.section-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  text-shadow: 0 0 60px var(--warris-pink-glow);
  pointer-events: none;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ FEATURE SECTION - ORIGINAL LAYOUT ============ */
.feature-section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-layout.reverse {
  direction: rtl;
}

.feature-layout.reverse > * {
  direction: ltr;
}

.feature-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-white);
}

.feature-content p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.feature-visual {
  position: relative;
}

.feature-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

/* Feature List - Unique Style */
.feature-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.feature-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--warris-pink-subtle), rgba(247, 31, 134, 0.05));
  border: 1px solid rgba(247, 31, 134, 0.2);
  border-radius: var(--radius-md);
  color: var(--warris-pink);
  font-size: 1.1rem;
}

.feature-point h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.feature-point p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .feature-layout.reverse {
    direction: ltr;
  }
  
  .feature-points {
    align-items: center;
  }
  
  .feature-point {
    text-align: left;
    max-width: 400px;
  }
}

/* ============ FEATURE CARDS - HEXAGON STYLE - PREMIUM ============ */
.features-hex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-hex-card {
  background: linear-gradient(180deg, rgba(18, 18, 26, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Glassmorphism glow effect */
.feature-hex-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--warris-pink), var(--warris-pink-light), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

/* Inner glow effect */
.feature-hex-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(247, 31, 134, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}

.feature-hex-card:hover {
  border-color: rgba(247, 31, 134, 0.5);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(247, 31, 134, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-hex-card:hover::before {
  transform: scaleX(1);
}

.feature-hex-card:hover::after {
  opacity: 1;
}

.feature-hex-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(247, 31, 134, 0.2), rgba(247, 31, 134, 0.05));
  border: 1px solid rgba(247, 31, 134, 0.3);
  border-radius: var(--radius-md);
  color: var(--warris-pink);
  font-size: 1.5rem;
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 1;
}

/* Icon glow ring */
.feature-hex-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--warris-pink), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
  filter: blur(8px);
}

.feature-hex-card:hover .feature-hex-icon {
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-dark));
  color: #fff;
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 8px 30px var(--warris-pink-glow);
  border-color: transparent;
}

.feature-hex-card:hover .feature-hex-icon::before {
  opacity: 0.6;
}

.feature-hex-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-hex-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .features-hex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .features-hex-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ PRODUCTS/SERVICES SECTION - COMPLETELY NEW ============ */
#products {
  padding: 100px 24px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  background: transparent !important;
}

/* Service Tabs - Unique Pill Design */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  background: var(--bg-card);
  padding: 8px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-subtle);
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.service-tab:hover {
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
}

.service-tab.active {
  color: #fff;
  background: var(--warris-pink);
  box-shadow: 0 4px 20px var(--warris-pink-glow);
}

.service-tab i {
  font-size: 1rem;
}

/* Override old produit-buttons */
.produit-buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 50px !important;
  background: var(--bg-card) !important;
  padding: 8px !important;
  border-radius: var(--radius-full) !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border: 1px solid var(--border-subtle) !important;
}

.produit-btn {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--text-gray) !important;
  background: transparent !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  cursor: pointer !important;
  transition: all 0.3s var(--ease) !important;
}

.produit-btn:hover {
  color: var(--text-white) !important;
  background: rgba(255,255,255,0.05) !important;
}

.produit-btn.active {
  color: #fff !important;
  background: var(--warris-pink) !important;
  box-shadow: 0 4px 20px var(--warris-pink-glow) !important;
}

/* Products Container */
.produits-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Single Product Card - Premium Highlight */
.produit-category.single-product {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  display: none;
}

.produit-category.single-product.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.produit-category.single-product:hover {
  border-color: rgba(247, 31, 134, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(247, 31, 134, 0.15);
}

/* Services Grid */
.produit-category.services-grid {
  display: none;
  width: 100%;
  max-width: 1000px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
}

.produit-category.services-grid.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Product Card Styling - PREMIUM REDESIGN */
.produit-card {
  width: 100%;
  position: relative;
}

/* Premium glow border on hover */
.produit-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--warris-pink), transparent, var(--warris-pink-light));
  border-radius: calc(var(--radius-xl) + 2px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s var(--ease);
  filter: blur(6px);
}

.produit-category.single-product:hover .produit-card::before {
  opacity: 0.6;
}

.produit-card-image {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(247, 31, 134, 0.05) 0%, var(--bg-surface) 50%, var(--bg-card) 100%);
  position: relative;
}

.produit-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(247, 31, 134, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.produit-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
}

.produit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}

.produit-card:hover .produit-card-image img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.produit-card-body {
  padding: 32px;
  position: relative;
}

.produit-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 20%, var(--warris-pink-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

/* Premium badge effect */
.produit-card-title::after {
  content: '★ POPULAR';
  position: absolute;
  top: -8px;
  right: -80px;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--warris-gold), #ff9500);
  color: #000;
  border-radius: var(--radius-full);
  -webkit-text-fill-color: initial;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.produit-card-description {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.produit-card-price-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.produit-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px var(--warris-pink-glow));
}

.produit-card-add-to-cart {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--warris-pink) 0%, var(--warris-pink-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 25px var(--warris-pink-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.produit-card-add-to-cart::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.5s ease;
}

.produit-card-add-to-cart:hover::before {
  left: 100%;
}

.produit-card-add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--warris-pink-glow);
}

/* Card buttons layout */
.produit-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* View Details button — styled like Get It Now but secondary */
.produit-card-details-btn {
  width: 100%;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.produit-card-details-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(247, 31, 134, 0.1), transparent);
  transition: left 0.5s ease;
}

.produit-card-details-btn:hover::before {
  left: 100%;
}

.produit-card-details-btn:hover {
  background: rgba(247, 31, 134, 0.08);
  border-color: rgba(247, 31, 134, 0.35);
  color: var(--warris-pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 31, 134, 0.15);
}

.produit-card-details-btn i {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.produit-card-details-btn:hover i {
  opacity: 1;
}

/* Service Card - Premium */
.service-card {
  background: linear-gradient(180deg, rgba(18, 18, 26, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--warris-pink), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: rgba(247, 31, 134, 0.4);
  transform: translateY(-8px);
  box-shadow: 
    var(--shadow-card),
    0 0 40px rgba(247, 31, 134, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .produit-card-image {
  height: 180px;
}

.service-card .produit-card-body {
  padding: 24px;
}

.service-card .produit-card-title {
  font-size: 1.15rem;
}

.service-card .produit-card-title::after {
  display: none;
}

.service-card .produit-card-price {
  font-size: 1.6rem;
}

/* Boost Features List - Enhanced */
.boost-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.boost-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s var(--ease);
}

.boost-features li:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.boost-features li:last-child {
  border-bottom: none;
}

.boost-features li i {
  color: var(--warris-pink);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.service-card .boost-features li {
  font-size: 0.85rem;
  padding: 5px 0;
}

/* ============ GAMES SECTION - UNIQUE DESIGN ============ */
.games-section {
  padding: 100px 24px;
  text-align: center;
}

.games-showcase {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.game-tile {
  width: 140px;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.game-tile:hover {
  transform: scale(1.1) translateY(-5px);
  border-color: var(--warris-pink);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--warris-pink-glow);
  z-index: 10;
}

.game-tile:hover img {
  transform: scale(1.15);
}

/* Game placeholder */
.game-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
}

/* ============ REVIEWS SECTION ============ */
.reviews {
  background: var(--bg-surface) !important;
  border-radius: var(--radius-xl) !important;
  margin: 60px 24px !important;
  padding: 80px 24px !important;
  border: 1px solid var(--border-subtle) !important;
}

/* Reviews Stats Summary */
.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.review-stat {
  text-align: center;
}

.review-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.review-stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 4px;
}

.review-stat-stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 6px;
}

.reviews-carousel {
  overflow: hidden;
  margin-top: 40px;
  padding: 20px 0;
  position: relative;
  width: calc(100% + 500px);
  margin-left: -250px;
  margin-right: -250px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-reviews 40s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  min-width: 340px;
  max-width: 340px;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--radius-lg) !important;
  padding: 28px;
  position: relative;
  transition: all 0.3s var(--ease);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 60px;
  color: rgba(247, 31, 134, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(247, 31, 134, 0.3) !important;
  transform: translateY(-4px);
}

/* Review Header */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(247, 31, 134, 0.2), rgba(247, 31, 134, 0.1));
  color: var(--warris-pink);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(247, 31, 134, 0.3);
}

.review-product-badge i {
  font-size: 0.7rem;
}

.review-product-badge.support {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.3);
}

.review-product-badge.overclock {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
  color: #ffc107;
  border-color: rgba(255, 193, 7, 0.3);
}

.stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Review Result Badge */
.review-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(247, 31, 134, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(247, 31, 134, 0.1);
}

.result-before {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.result-after {
  font-size: 1rem;
  font-weight: 700;
  color: var(--warris-pink);
}

.review-result i.fa-arrow-right {
  color: var(--warris-pink);
  font-size: 0.8rem;
}

.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warris-pink);
}

.result-tag i {
  font-size: 0.8rem;
}

.result-tag.support {
  color: #4caf50;
}

.result-tag.overclock {
  color: #ffc107;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-dark));
}

.reviewer-avatar span {
  font-size: 1rem;
  font-weight: 700;
}

.reviewer-info > div > strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #4caf50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.verified-badge i {
  font-size: 0.65rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

/* ============ CTA SECTION - UNIQUE ============ */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(247, 31, 134, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--warris-pink-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: pulse-glow 4s ease-in-out infinite;
}

.cta-glow.left {
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.cta-glow.right {
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 2s;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateY(-50%) scale(1.1); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-white);
}

/* ============ FOOTER ============ */
.premium-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 24px 40px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 260px;
  margin-top: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
  background: var(--warris-pink);
  border-color: var(--warris-pink);
  color: #fff;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warris-pink);
  margin-bottom: 24px;
}

.footer-column a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.2s var(--ease);
}

.footer-column a:hover {
  color: var(--text-white);
}

.footer-bottom {
  max-width: 1100px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============ FLOATING BUTTONS ============ */
#info-button button {
  width: 54px !important;
  height: 54px !important;
  border-radius: var(--radius-md) !important;
  background: var(--warris-pink) !important;
  box-shadow: 0 4px 20px var(--warris-pink-glow) !important;
}

#info-button button:hover {
  transform: translateY(-4px) !important;
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============ HIDE OLD ELEMENTS ============ */
.network-bg,
#constellationCanvas,
.performance-showcase,
.gauge-card,
.logo-showcase,
.software-showcase,
.stats,
.trust-badges,
.features-section,
.cta-banner,
.premium-bg,
.dot-pattern {
  display: none !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-section {
    padding: 120px 20px 80px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  
  .btn-premium,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .stats-bar {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .games-section {
    padding: 60px 20px;
  }
  
  .cta-section {
    padding: 80px 20px;
  }
  
  .game-tile {
    width: 100px;
    height: 65px;
  }
}

/* ============ APP GALLERY ============ */
.app-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item span {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

.gallery-item:hover {
  border-color: var(--warris-pink);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px var(--warris-pink-glow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .app-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* ============ UTILITIES ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .slide-left,
  .slide-right,
  .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .warris-bg::before,
  .warris-bg::after {
    animation: none;
  }
}
/* ============ PREMIUM FLOATING PARTICLES ============ */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--warris-pink);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 15s infinite;
  box-shadow: 0 0 10px var(--warris-pink-glow);
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Generate multiple particles with CSS */
.particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 15%; animation-delay: 2s; animation-duration: 20s; width: 3px; height: 3px; }
.particle:nth-child(3) { left: 25%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 35%; animation-delay: 1s; animation-duration: 22s; width: 5px; height: 5px; }
.particle:nth-child(5) { left: 45%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 55%; animation-delay: 5s; animation-duration: 17s; width: 2px; height: 2px; }
.particle:nth-child(7) { left: 65%; animation-delay: 2.5s; animation-duration: 21s; }
.particle:nth-child(8) { left: 75%; animation-delay: 1.5s; animation-duration: 18s; width: 4px; height: 4px; }
.particle:nth-child(9) { left: 85%; animation-delay: 4.5s; animation-duration: 20s; }
.particle:nth-child(10) { left: 95%; animation-delay: 0.5s; animation-duration: 16s; width: 3px; height: 3px; }
.particle:nth-child(11) { left: 10%; animation-delay: 6s; animation-duration: 23s; }
.particle:nth-child(12) { left: 30%; animation-delay: 7s; animation-duration: 19s; width: 5px; height: 5px; }
.particle:nth-child(13) { left: 50%; animation-delay: 8s; animation-duration: 17s; }
.particle:nth-child(14) { left: 70%; animation-delay: 9s; animation-duration: 21s; width: 2px; height: 2px; }
.particle:nth-child(15) { left: 90%; animation-delay: 10s; animation-duration: 18s; }

/* ============ PREMIUM GLOW ACCENTS ============ */
.glow-accent {
  position: relative;
}

.glow-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, var(--warris-pink-glow) 0%, transparent 70%);
  opacity: 0.4;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

/* ============ PREMIUM CARD HOVER GLOW ============ */
.card-glow {
  position: relative;
  transition: all 0.4s var(--ease);
}

.card-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-light), var(--warris-pink));
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s var(--ease);
  filter: blur(10px);
}

.card-glow:hover::before {
  opacity: 0.5;
}

/* ============ PREMIUM SCROLL INDICATOR ============ */
.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 100;
}

.scroll-indicator.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-indicator::after {
  content: '';
  width: 24px;
  height: 40px;
  border: 2px solid rgba(247, 31, 134, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--warris-pink);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ============ PREMIUM DIVIDER ============ */
.premium-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(247, 31, 134, 0.1) 20%, 
    rgba(247, 31, 134, 0.5) 50%, 
    rgba(247, 31, 134, 0.1) 80%, 
    transparent 100%
  );
  margin: 60px 0;
  position: relative;
}

.premium-divider::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--warris-pink);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--warris-pink-glow);
}

/* ============ PREMIUM TEXT EFFECTS ============ */
.text-glow {
  text-shadow: 0 0 40px var(--warris-pink-glow);
}

.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--warris-pink) 0%,
    var(--warris-pink-light) 25%,
    #ff8fbe 50%,
    var(--warris-pink-light) 75%,
    var(--warris-pink) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============ PREMIUM ICON BADGE ============ */
.icon-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(247, 31, 134, 0.2), rgba(247, 31, 134, 0.05));
  border: 1px solid rgba(247, 31, 134, 0.3);
  border-radius: var(--radius-lg);
  color: var(--warris-pink);
  font-size: 1.5rem;
  transition: all 0.4s var(--ease);
}

.icon-badge::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--warris-pink), transparent, var(--warris-pink-light));
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s var(--ease);
}

.icon-badge:hover {
  background: linear-gradient(135deg, var(--warris-pink), var(--warris-pink-dark));
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px var(--warris-pink-glow);
}

.icon-badge:hover::before {
  opacity: 0.5;
  filter: blur(10px);
}

/* ============ SECTION GLOW BORDERS ============ */
.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warris-pink), transparent);
  opacity: 0.3;
}

.section-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, var(--warris-pink-glow) 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

/* ============ PREMIUM MICRO-INTERACTIONS ============ */

/* Enhanced Button Hover */
.btn-premium {
  position: relative;
  overflow: hidden;
}

.btn-premium::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium:hover::after {
  width: 300px;
  height: 300px;
}

/* Magnetic Button Effect */
.magnetic-btn {
  transition: transform 0.3s var(--ease);
}

/* Card Tilt Effect */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease);
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

/* Floating Animation */
.float-animation {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Pulse Glow Effect */
.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(247, 31, 134, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(247, 31, 134, 0.6), 0 0 60px rgba(247, 31, 134, 0.3);
  }
}

/* Text Gradient Animation */
.animated-gradient-text {
  background: linear-gradient(
    90deg,
    var(--warris-pink),
    var(--warris-pink-light),
    #ffd700,
    var(--warris-pink-light),
    var(--warris-pink)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  to { background-position: 200% center; }
}

/* Shine Effect */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.shine-effect:hover::before {
  left: 100%;
}

/* Neon Border Effect */
.neon-border {
  position: relative;
}

.neon-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--warris-pink), transparent, var(--warris-pink));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(4px);
}

.neon-border:hover::before {
  opacity: 1;
}

/* Glitch Text Effect */
.glitch-text {
  position: relative;
}

.glitch-text:hover {
  animation: glitchText 0.3s ease-in-out;
}

@keyframes glitchText {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

/* Scale Bounce on Click */
.click-bounce:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Underline Animation */
.underline-animation {
  position: relative;
}

.underline-animation::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--warris-pink);
  transition: width 0.3s ease, left 0.3s ease;
}

.underline-animation:hover::after {
  width: 100%;
  left: 0;
}

/* Card Lift Effect */
.card-lift {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(247, 31, 134, 0.1);
}

/* Icon Spin on Hover */
.icon-spin:hover i {
  animation: iconSpin 0.5s var(--ease);
}

@keyframes iconSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Stagger Animation for Lists */
.stagger-animation > * {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerIn 0.5s var(--ease) forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Morphing Background */
.morph-bg {
  position: relative;
}

.morph-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(247, 31, 134, 0.1),
    transparent,
    rgba(247, 31, 134, 0.05)
  );
  animation: morphBg 10s ease-in-out infinite;
  border-radius: inherit;
}

@keyframes morphBg {
  0%, 100% { 
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  50% { 
    clip-path: polygon(5% 5%, 95% 0, 100% 95%, 0 100%);
  }
}

/* Badge Bounce */
.badge-bounce {
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Typing Cursor Effect */
.typing-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--warris-pink);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============ PREMIUM TOAST SYSTEM (GLOBAL) ============ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  pointer-events: none;
}

.toast {
  position: relative;
  background: rgba(13, 13, 18, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  animation: toastSlideIn 0.5s var(--ease-bounce) forwards;
  overflow: hidden;
  min-width: 320px;
  max-width: 450px;
}

.toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--toast-color, var(--warris-pink));
}

.toast::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--toast-color, var(--warris-pink));
  animation: toastProgress 3s linear forwards;
}

.toast.success { --toast-color: #22c55e; border-color: rgba(34, 197, 94, 0.2); }
.toast.error { --toast-color: #ef4444; border-color: rgba(239, 68, 68, 0.2); }
.toast.warning { --toast-color: #f59e0b; border-color: rgba(245, 158, 11, 0.2); }
.toast.info { --toast-color: #3b82f6; border-color: rgba(59, 130, 246, 0.2); }

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.toast.success .toast-icon { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.toast.error .toast-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.toast.warning .toast-icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.toast.info .toast-icon { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }

.toast-content { flex: 1; min-width: 0; }
.toast-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.toast-message { font-size: 13px; color: var(--text-gray); }

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@keyframes toastSlideIn {
  0% { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes toastProgress {
  0% { width: 100%; }
  100% { width: 0%; }
}

/* ============ RESPONSIVE FIXES FOR PREMIUM EFFECTS ============ */
@media (max-width: 768px) {
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .hero-section::before {
    width: 400px;
    height: 400px;
  }
  
  .particles-container {
    display: none;
  }
  
  .grid-overlay {
    background-size: 30px 30px;
  }
  
  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
  }
}