/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
  /* Colors */
  --primary-color: #8522e8;
  --secondary-color: #6610c1;
  --accent-color: #ff2a6d;
  --cyan-accent: #00f0ff;
  --dark-bg: #0a0a12;
  --darker-bg: #05050a;
  --light-text: #f8f9fa;
  --gray-text: #b0b0be;
  --gray-bg: #15151e;
  --success-color: #00ffaa;

  /* Neon Colors */
  --neon-purple: #b026ff;
  --neon-cyan: #00f0ff;
  --neon-pink: #ff0080;
  --neon-blue: #4d4dff;

  /* Dimensions & Spacing */
  --border-radius: 8px;
  --container-width: 1280px;
  --header-height: 40px;

  /* Effects */
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --glow-intensity: 0.6;

  /* Typography */
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Poppins', sans-serif;
}

/* ========================================
   BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(133, 34, 232, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 42, 109, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
  background-size: 100% 100%;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--light-text) 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

h2 { font-size: 3rem; margin-bottom: 1.5rem; }
h3 { font-size: 2rem; margin-bottom: 1rem; }

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--gray-text);
}

a {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition-normal);
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
  background-size: 200% 200%;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
  font-family: var(--font-display);
}

/* Button Glow Effect */
.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: var(--transition-slow);
}

.btn-glow:hover::after {
  left: 100%;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-text);
  box-shadow:
    0 4px 20px rgba(133, 34, 232, 0.4),
    0 0 40px rgba(133, 34, 232, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(133, 34, 232, 0.5);
}

.btn-primary::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;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(133, 34, 232, 0.6),
    0 0 60px rgba(133, 34, 232, 0.4),
    0 0 100px rgba(133, 34, 232, 0.2);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--cyan-accent);
  color: var(--cyan-accent);
  box-shadow:
    0 0 10px rgba(0, 240, 255, 0.3),
    inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  color: var(--light-text);
  border-color: var(--neon-cyan);
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.6),
    0 0 40px rgba(0, 240, 255, 0.3),
    inset 0 0 20px rgba(0, 240, 255, 0.2);
  transform: translateY(-3px);
}

/* Accent Button */
.btn-accent {
  background: linear-gradient(135deg, var(--accent-color), var(--neon-pink));
  color: var(--light-text);
  box-shadow:
    0 4px 20px rgba(255, 42, 109, 0.4),
    0 0 40px rgba(255, 42, 109, 0.2);
  border: 1px solid rgba(255, 42, 109, 0.5);
}

.btn-accent::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;
}

.btn-accent:hover::before {
  left: 100%;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 30px rgba(255, 42, 109, 0.6),
    0 0 60px rgba(255, 42, 109, 0.4),
    0 0 100px rgba(255, 42, 109, 0.2);
}

/* Button Text Bilingual */
.btn-text-cn { margin-right: 8px; }
.btn-text-en { opacity: 0.7; font-size: 0.9em; }

/* Header Buttons */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-buttons .btn,
.btn.btn-accent.btn-glow {
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   HEADER & NAVIGATION - CYBERPUNK ENHANCED
   ======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(0, 240, 255, 0.05);
}

/* Animated bottom border for header */
header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    var(--neon-cyan),
    var(--neon-purple),
    var(--neon-cyan),
    transparent
  );
  background-size: 200% 100%;
  animation: header-border-flow 8s linear infinite;
  opacity: 0.6;
}

@keyframes header-border-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.header-scrolled {
  height: 55px;
  background: rgba(5, 5, 10, 0.98);
  border-bottom-color: rgba(0, 240, 255, 0.25);
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 240, 255, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.logo::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.3);
    opacity: 0.7;
  }
}

.logo span {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
  animation: gradient-flow 4s linear infinite;
}

.logo:hover span {
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.9));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links li { display: flex; align-items: center; }

.nav-links a {
  font-weight: 500;
  position: relative;
  font-family: var(--font-display);
  font-size: 0.85rem;
  white-space: nowrap;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-links a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--neon-cyan);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links a:hover::before {
  width: 6px;
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
  padding-left: 8px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--neon-cyan);
}

.nav-links a.active::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  transform: scale(1.1);
}

/* ========================================
   HERO SECTION - CYBERPUNK ENHANCED
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
}

/* Animated scanline overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 240, 255, 0.02) 2px,
    rgba(0, 240, 255, 0.02) 4px
  );
  pointer-events: none;
  z-index: 1;
  animation: scanline-scroll 10s linear infinite;
}

@keyframes scanline-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(100px); }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: gradient-flow 4s linear infinite;
  position: relative;
}

.hero-subtitle::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan));
}

.hero-subtitle i {
  font-size: 1rem;
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px var(--neon-cyan));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 15px var(--neon-cyan)) drop-shadow(0 0 25px var(--neon-purple));
    transform: scale(1.1);
  }
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-cta .btn {
  min-width: 200px;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 40px;
  background: rgba(21, 21, 30, 0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}

.hero-stat { text-align: center; }

.hero-stat .stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stat .stat-text {
  font-size: 0.9rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Grid Background */
.hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(133, 34, 232, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 34, 232, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: grid-move 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes grid-move {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

/* Tech Circles Background Animation */
.tech-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.tech-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.2);
  animation: tech-circle-spin 20s linear infinite;
}

.tech-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
  animation: tech-pulse 2s ease-in-out infinite;
}

.tech-circle-1 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 25s;
}

.tech-circle-2 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 30s;
  animation-direction: reverse;
  opacity: 0.5;
}

.tech-circle-3 {
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 35s;
  opacity: 0.3;
}

@keyframes tech-circle-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes tech-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

/* Floating Industry Icons */
.floating-icons {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  font-size: 3rem;
  color: rgba(0, 240, 255, 0.15);
  animation: float-icon 20s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  25% { transform: translateY(-30px) rotate(5deg); opacity: 0.25; }
  50% { transform: translateY(-15px) rotate(-5deg); opacity: 0.2; }
  75% { transform: translateY(-40px) rotate(3deg); opacity: 0.15; }
}

/* Particles */
.particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
  animation: float-particle 15s infinite;
  opacity: 0.6;
}

.particle:nth-child(odd) {
  background: var(--neon-purple);
  box-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
  animation-duration: 20s;
}

.particle:nth-child(3n) {
  background: var(--neon-pink);
  box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
  animation-duration: 18s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-100px) translateX(100px) scale(1);
    opacity: 0;
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-purple);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Features Section */
.features {
  padding: 120px 0;
  position: relative;
  background: var(--dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: rgba(21, 21, 30, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(133, 34, 232, 0.05), transparent);
  transform: translateX(-100%);
  transition: var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow:
    0 15px 40px rgba(0, 240, 255, 0.2),
    0 0 60px rgba(0, 240, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { transform: translateX(100%); }

.feature-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
}

.feature-card h3 { margin-bottom: 20px; }
.feature-card p { margin-bottom: 0; }

/* Featured AI & Gaming Tech Cards */
.feature-card.feature-featured {
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(176, 38, 255, 0.15) 100%),
    rgba(21, 21, 30, 0.7);
  border: 2px solid rgba(0, 240, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.feature-card.feature-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
  animation: tech-pulse 4s ease-in-out infinite;
}

@keyframes tech-pulse {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(10%, 10%) scale(1.2); opacity: 0.6; }
}

.feature-card.feature-featured::after {
  content: 'AI CORE';
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 15px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--light-text);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.feature-card.feature-featured h3 {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.feature-card.feature-featured-gaming {
  background:
    linear-gradient(135deg, rgba(255, 0, 128, 0.2) 0%, rgba(176, 38, 255, 0.15) 100%),
    rgba(21, 21, 30, 0.7);
  border: 2px solid rgba(255, 0, 128, 0.3);
  position: relative;
  overflow: hidden;
}

.feature-card.feature-featured-gaming::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
  animation: tech-pulse-gaming 4s ease-in-out infinite;
}

@keyframes tech-pulse-gaming {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(-10%, 10%) scale(1.2); opacity: 0.6; }
}

.feature-card.feature-featured-gaming::after {
  content: 'GAMING TECH';
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 15px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: var(--light-text);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.feature-card.feature-featured-gaming h3 {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.feature-card.feature-featured:hover,
.feature-card.feature-featured-gaming:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 240, 255, 0.25),
    0 0 100px rgba(176, 38, 255, 0.15);
}

/* Game Showcase */
.game-showcase {
  padding: 120px 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.game-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(133, 34, 232, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 42, 109, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.game-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  transition: var(--transition-normal);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--border-radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-normal);
}

.game-card:hover::before { opacity: 1; }

.game-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(0, 240, 255, 0.2);
}

.game-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image img { transform: scale(1.1); }

.game-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 18, 1), transparent);
}

.game-content {
  background: rgba(21, 21, 30, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  position: relative;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.game-genre {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--light-text);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* AI & Gaming Genre Tags */
.game-genre-ai {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  animation: genre-glow-ai 2s ease-in-out infinite;
}

.game-genre-gaming {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
  animation: genre-glow-gaming 2s ease-in-out infinite;
}

@keyframes genre-glow-ai {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
    transform: scale(1.05);
  }
}

@keyframes genre-glow-gaming {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
    transform: scale(1.05);
  }
}

/* Featured Game Card */
.game-card.game-featured {
  border: 2px solid rgba(0, 240, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 240, 255, 0.15);
}

.game-card.game-featured::before {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  opacity: 0.8;
}

.game-card.game-featured:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(0, 240, 255, 0.3);
}

.game-card.game-featured .game-content {
  background:
    linear-gradient(180deg, rgba(21, 21, 30, 0.95) 0%, rgba(10, 10, 18, 0.98) 100%);
  border-top: 2px solid rgba(0, 240, 255, 0.3);
}

.game-title { font-size: 1.8rem; margin-bottom: 15px; }

.game-features {
  margin: 20px 0;
  list-style: none;
}

.game-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.game-features li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.game-cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.game-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(133, 34, 232, 0.8), rgba(255, 42, 109, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.game-card:hover .game-overlay { opacity: 1; }

.play-icon {
  font-size: 3rem;
  color: var(--light-text);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
    radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 0, 128, 0.3) 0%, transparent 50%);
  background-size: 200% 200%, 200% 200%, 100% 100%, 100% 100%;
  animation: shimmer 5s infinite linear;
  z-index: 1;
}

@keyframes shimmer {
  0% { background-position: 0% 0%, 0% 0%; }
  100% { background-position: 200% 200%, 200% 200%; }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtitle {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.contact-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* About Section */
.about-section {
  padding: 120px 0;
  position: relative;
  background: var(--dark-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img { transform: scale(1.05); }

.about-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, rgba(133, 34, 232, 0.2), rgba(255, 42, 109, 0.2));
  opacity: 0;
  transition: var(--transition-normal);
}

.about-image:hover::after { opacity: 1; }

.about-info h2 { margin-bottom: 25px; }
.about-info p { margin-bottom: 25px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item { text-align: center; }

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-display);
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trailer Section */
.trailer-section {
  padding: 40px 0 120px;
  position: relative;
  background-color: var(--dark-bg);
}

.trailer-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow:
    var(--card-shadow),
    0 0 0 1px rgba(0, 240, 255, 0.2);
}

.trailer-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

/* Global Presence Section */
.global-presence-section {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
}

.global-map {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  aspect-ratio: 16/9;
  background: rgba(21, 21, 30, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 240, 255, 0.1);
  overflow: hidden;
}

.global-map::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(176, 38, 255, 0.1) 0%, transparent 30%);
  animation: global-pulse 8s ease-in-out infinite;
}

@keyframes global-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.map-dots {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--neon-cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--neon-cyan);
}

.map-dot::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: rgba(0, 240, 255, 0.3);
  border-radius: 50%;
  animation: map-pulse 2s ease-in-out infinite;
}

.map-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 50%;
  animation: map-pulse 2s ease-in-out infinite 0.5s;
}

@keyframes map-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.map-dot:hover {
  background: var(--neon-pink);
  box-shadow: 0 0 30px var(--neon-pink);
}

.map-dot span {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 8px 16px;
  background: rgba(21, 21, 30, 0.9);
  border: 1px solid var(--neon-cyan);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--light-text);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-dot:hover span { opacity: 1; }

.global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.global-stat {
  text-align: center;
  padding: 30px;
  background: rgba(21, 21, 30, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.global-stat:hover {
  transform: translateY(-5px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.global-stat i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.global-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-text);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 10px;
}

.global-stat .stat-label {
  font-size: 0.9rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Diverse Industries Section - Cyberpunk Enhanced */
.diverse-industries {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.diverse-industries::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 25%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 0, 128, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(176, 38, 255, 0.05) 0%, transparent 40%);
  z-index: 0;
  pointer-events: none;
}

.industry-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.industry-card {
  padding: 30px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  cursor: pointer;
}

/* Industry card cyberpunk glow effect */
.industry-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 240, 255, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.industry-card:hover::after {
  opacity: 1;
}

.industry-card.industry-large { min-height: 420px; }
.industry-card.industry-wide { min-height: 200px; }
.industry-card.industry-ultra-large { min-height: 480px; }

/* Industry Card Styles - Cyberpunk Enhanced */

/* AI & Gaming Featured Card - Ultra Premium Style */
.industry-card.ai-gaming-featured {
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(176, 38, 255, 0.15) 50%, rgba(255, 0, 128, 0.15) 100%),
    radial-gradient(circle at 20% 20%, rgba(0, 240, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.2) 0%, transparent 40%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.industry-card.ai-gaming-featured::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink), var(--neon-cyan));
  background-size: 300% 300%;
  border-radius: calc(var(--border-radius) + 2px);
  z-index: -1;
  animation: ai-gaming-border-flow 4s linear infinite;
}

@keyframes ai-gaming-border-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.industry-card.ai-gaming-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21, 21, 30, 0.4);
  border-radius: var(--border-radius);
  z-index: -1;
}

.industry-card.ai-gaming-featured:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 240, 255, 0.3),
    0 0 100px rgba(176, 38, 255, 0.2),
    inset 0 0 40px rgba(0, 240, 255, 0.1);
}

.industry-card.ai-gaming-featured .industry-icon {
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  box-shadow:
    0 0 30px rgba(0, 240, 255, 0.6),
    0 0 60px rgba(176, 38, 255, 0.4);
}

.industry-card.ai-gaming-featured h3 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  background-size: 200% 200%;
}

.industry-card.ai-gaming-featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.industry-card.ai-gaming-featured .industry-tags {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.industry-card.ai-gaming-featured .industry-tags li {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.industry-card.ai-gaming-featured .industry-tags li:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
}

/* Gaming Featured Card - Pink/Purple Theme */
.industry-card.gaming-featured {
  background:
    linear-gradient(135deg, rgba(255, 0, 128, 0.15) 0%, rgba(176, 38, 255, 0.15) 50%, rgba(255, 0, 128, 0.1) 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(176, 38, 255, 0.2) 0%, transparent 40%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.industry-card.gaming-featured::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple), var(--neon-pink), var(--neon-cyan));
  background-size: 300% 300%;
  border-radius: calc(var(--border-radius) + 2px);
  z-index: -1;
  animation: gaming-border-flow 4s linear infinite;
}

@keyframes gaming-border-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.industry-card.gaming-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21, 21, 30, 0.4);
  border-radius: var(--border-radius);
  z-index: -1;
}

.industry-card.gaming-featured:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(255, 0, 128, 0.3),
    0 0 100px rgba(176, 38, 255, 0.2),
    inset 0 0 40px rgba(255, 0, 128, 0.1);
}

.industry-card.gaming-featured .industry-icon {
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  box-shadow:
    0 0 30px rgba(255, 0, 128, 0.6),
    0 0 60px rgba(176, 38, 255, 0.4);
}

.industry-card.gaming-featured h3 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  background-size: 200% 200%;
}

.industry-card.gaming-featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.industry-card.gaming-featured .industry-tags {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.industry-card.gaming-featured .industry-tags li {
  background: rgba(255, 0, 128, 0.1);
  border: 1px solid rgba(255, 0, 128, 0.3);
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.industry-card.gaming-featured .industry-tags li:hover {
  background: rgba(255, 0, 128, 0.2);
  border-color: var(--neon-pink);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.industry-card.glassmorphic {
  background: rgba(21, 21, 30, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 240, 255, 0.15);
  transition: all 0.3s ease;
}

.industry-card.glassmorphic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card.glassmorphic:hover {
  border-color: var(--neon-cyan);
  box-shadow:
    0 15px 40px rgba(0, 240, 255, 0.2),
    0 0 60px rgba(0, 240, 255, 0.1),
    inset 0 0 20px rgba(0, 240, 255, 0.05);
  transform: translateY(-10px);
}

.industry-card.glassmorphic:hover::before {
  opacity: 1;
}

.industry-card.neumorphic {
  background: linear-gradient(145deg, #1a1a24, #0f0f16);
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
}

.industry-card.neumorphic:hover {
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.5),
    -12px -12px 24px rgba(255, 255, 255, 0.03),
    0 0 30px rgba(0, 240, 255, 0.15);
  transform: translateY(-10px);
  border-color: rgba(0, 240, 255, 0.3);
}

.industry-card.brutalist {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-card.brutalist::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}

.industry-card.brutalist:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.industry-card.brutalist h4,
.industry-card.brutalist p { color: var(--light-text); }

.industry-card.brutalist h3,
.industry-card.brutalist h4 {
  -webkit-text-fill-color: var(--light-text);
}

.industry-card.brutalist:hover {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  box-shadow:
    0 0 40px rgba(255, 0, 128, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  transform: translateY(-10px) scale(1.02);
}

.industry-card.minimalist {
  background: transparent;
  border: 1px solid rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.industry-card.minimalist::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(176, 38, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--border-radius);
}

.industry-card.minimalist:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--neon-cyan);
  box-shadow:
    0 0 30px rgba(0, 240, 255, 0.2),
    inset 0 0 20px rgba(0, 240, 255, 0.05);
  transform: translateY(-10px);
}

.industry-card.minimalist:hover::after {
  opacity: 1;
}

.industry-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.industry-icon.holographic {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(176, 38, 255, 0.2));
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.industry-icon.claymorphic {
  background: linear-gradient(145deg, #1a1a24, #0f0f16);
  box-shadow:
    5px 5px 10px rgba(0, 0, 0, 0.5),
    -5px -5px 10px rgba(255, 255, 255, 0.02);
}

.industry-icon.futuristic {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--light-text);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.industry-icon i {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-icon.futuristic i {
  color: var(--light-text);
  -webkit-text-fill-color: var(--light-text);
}

.industry-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.industry-content h4 { font-size: 1.2rem; margin-bottom: 10px; }

.industry-card h3,
.industry-card h4 {
  background: linear-gradient(135deg, var(--light-text), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--gray-text);
}

.industry-card.brutalist p { color: rgba(255, 255, 255, 0.9); }

.industry-tags {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.industry-tags li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-text);
}

.industry-tags li i { color: var(--neon-cyan); font-size: 0.8rem; }

.industry-card.industry-large .industry-tags { margin-top: 15px; }

.floating {
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Cyberpunk Glitch Effect for Industry Icons */
@keyframes cyber-glitch {
  0% { transform: translate(0); filter: hue-rotate(0deg); }
  20% { transform: translate(-2px, 2px); filter: hue-rotate(90deg); }
  40% { transform: translate(-2px, -2px); filter: hue-rotate(180deg); }
  60% { transform: translate(2px, 2px); filter: hue-rotate(270deg); }
  80% { transform: translate(2px, -2px); filter: hue-rotate(360deg); }
  100% { transform: translate(0); filter: hue-rotate(0deg); }
}

.industry-card:hover .industry-icon i {
  animation: cyber-glitch 0.5s ease;
}

/* Neon Pulse Effect */
@keyframes neon-pulse {
  0%, 100% {
    text-shadow:
      0 0 5px var(--neon-cyan),
      0 0 10px var(--neon-cyan),
      0 0 20px var(--neon-cyan);
  }
  50% {
    text-shadow:
      0 0 10px var(--neon-cyan),
      0 0 20px var(--neon-cyan),
      0 0 40px var(--neon-cyan),
      0 0 80px var(--neon-purple);
  }
}

/* Enhanced Button Hover Effect */
.btn:hover {
  animation: neon-pulse 1s ease-in-out infinite;
}

/* Scanline Effect for Hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  opacity: 0.3;
  z-index: 1;
}

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  position: relative;
  background: var(--dark-bg);
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(176, 38, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.process-step {
  position: relative;
}

.step-number {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
  transition: var(--transition-normal);
}

.process-step:hover .step-number {
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 1));
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background-color: var(--dark-bg);
  position: relative;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  padding: 40px;
  background: rgba(21, 21, 30, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.testimonial-content {
  margin-bottom: 30px;
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  padding-left: 30px;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  border: 3px solid var(--primary-color);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 { margin-bottom: 5px; }

.author-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--accent-color);
}

/* Partners Section */
.partners-section {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.partner-logo {
  padding: 40px 20px;
  text-align: center;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.partner-logo.glassmorphic {
  background: rgba(21, 21, 30, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo.glassmorphic:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.2);
}

.partner-logo.neumorphic {
  background: var(--gray-bg);
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.02);
}

.partner-logo.neumorphic:hover {
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.5),
    -12px -12px 24px rgba(255, 255, 255, 0.03);
}

.partner-logo.brutalist {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border: 2px solid var(--light-text);
  color: var(--light-text);
}

.partner-logo.brutalist:hover {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
}

.partner-logo.minimalist {
  background: transparent;
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.partner-logo.minimalist:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--neon-cyan);
}

.partner-logo:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Footer - Cyberpunk Enhanced */
footer {
  padding: 80px 0 30px;
  background: linear-gradient(180deg, var(--darker-bg), #020205);
  border-top: 1px solid rgba(0, 240, 255, 0.15);
  position: relative;
  overflow: hidden;
}

/* Footer animated top border */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    var(--neon-cyan),
    var(--neon-purple),
    var(--neon-pink),
    var(--neon-purple),
    var(--neon-cyan),
    transparent
  );
  background-size: 200% 100%;
  animation: footer-border-flow 6s linear infinite;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

@keyframes footer-border-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Footer grid pattern overlay */
footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-links-group { margin-bottom: 20px; }

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.footer-logo::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--neon-cyan);
  animation: logo-pulse 2s ease-in-out infinite;
}

.footer-about p { margin-bottom: 25px; }

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 2px;
  box-shadow: 0 0 15px var(--neon-cyan);
  animation: footer-title-glow 2s ease-in-out infinite;
}

@keyframes footer-title-glow {
  0%, 100% { box-shadow: 0 0 15px var(--neon-cyan); }
  50% { box-shadow: 0 0 25px var(--neon-cyan), 0 0 35px var(--neon-purple); }
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 15px; }

.footer-links a {
  color: var(--gray-text);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  position: relative;
}

.footer-links a i {
  color: var(--neon-cyan);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  transform: translateX(8px);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.footer-links a:hover i {
  filter: drop-shadow(0 0 5px var(--neon-cyan));
  transform: scale(1.1);
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--light-text);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  border-radius: 50%;
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  background-color: rgba(0, 240, 255, 0.2);
  border-color: var(--neon-cyan);
  transform: translateY(-8px) rotate(10deg);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.4);
  color: var(--neon-cyan);
}

.footer-newsletter p { margin-bottom: 20px; }

.newsletter-form {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}

.newsletter-input {
  flex-grow: 1;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  color: var(--light-text);
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  padding: 0 24px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--light-text);
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  font-weight: 600;
}

.newsletter-btn:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  text-align: center;
  position: relative;
  z-index: 2;
}

.copyright {
  color: var(--gray-text);
  font-size: 0.9rem;
  position: relative;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.appear {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.appear {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.appear {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   ENHANCED INTERACTIVE EFFECTS
   ======================================== */

/* Glowing Border Animation */
@keyframes border-glow-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Cyberpunk Text Glitch Effect */
@keyframes text-glitch {
  0% { text-shadow: 2px 0 var(--neon-cyan), -2px 0 var(--neon-pink); }
  25% { text-shadow: -2px 0 var(--neon-cyan), 2px 0 var(--neon-pink); }
  50% { text-shadow: 2px 0 var(--neon-purple), -2px 0 var(--neon-cyan); }
  75% { text-shadow: -2px 0 var(--neon-pink), 2px 0 var(--neon-purple); }
  100% { text-shadow: 2px 0 var(--neon-cyan), -2px 0 var(--neon-pink); }
}

/* Holographic Shimmer Effect */
@keyframes holographic-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Enhanced Card Hover Effects */
.industry-card,
.feature-card,
.game-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mouse Follow Glow Effect */
.industry-card:hover,
.feature-card:hover,
.game-card:hover {
  animation: card-glow 0.6s ease-out;
}

@keyframes card-glow {
  0% {
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.5),
      0 0 0 rgba(0, 240, 255, 0);
  }
  50% {
    box-shadow:
      0 15px 50px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(0, 240, 255, 0.3);
  }
  100% {
    box-shadow:
      var(--card-shadow),
      0 0 60px rgba(0, 240, 255, 0.2);
  }
}

/* Pulsing Icon Animation */
.feature-icon,
.industry-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon,
.industry-card:hover .industry-icon {
  animation: icon-pulse-glow 1s ease-in-out infinite;
}

@keyframes icon-pulse-glow {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
  }
  25% {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
  }
  50% {
    transform: scale(1.05) rotate(-5deg);
    filter: drop-shadow(0 0 25px rgba(176, 38, 255, 0.8));
  }
  75% {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6));
  }
}

/* Typing Effect for Hero */
@keyframes typing-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Matrix Rain Effect (subtle) */
@keyframes matrix-rain {
  0% { transform: translateY(-100%); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Neon Flicker Effect */
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 5px var(--neon-cyan),
      0 0 10px var(--neon-cyan),
      0 0 20px var(--neon-cyan),
      0 0 40px var(--neon-cyan);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  z-index: 10001;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Magnetic Button Effect */
.btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
  animation: button-magnetic 0.6s ease;
}

@keyframes button-magnetic {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
  100% { transform: translateY(-3px) scale(1); }
}

/* Particle Trail Effect */
@keyframes particle-trail {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.6;
  }
  100% {
    transform: scale(0) translate(var(--tx, 20px), var(--ty, -20px));
    opacity: 0;
  }
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
}

/* Selection Color */
::selection {
  background: rgba(0, 240, 255, 0.3);
  color: var(--light-text);
}

::-moz-selection {
  background: rgba(0, 240, 255, 0.3);
  color: var(--light-text);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  .about-content { gap: 40px; }

  .industry-bento-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-card.industry-large { grid-column: span 3 !important; }
  .industry-card.industry-wide { grid-column: span 2 !important; }
}

@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--darker-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 30px;
    gap: 20px;
    transition: var(--transition-normal);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 999;
  }

  .nav-links.active { right: 0; }
  .mobile-nav-toggle { display: block; }

  .about-content { grid-template-columns: 1fr; }
  .about-image {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .global-stats { grid-template-columns: repeat(2, 1fr); }

  .industry-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-card.industry-large,
  .industry-card.industry-wide {
    grid-column: span 2 !important;
  }

  .certifications-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 45px; }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .hero {
    padding-top: calc(var(--header-height) + 50px);
    min-height: auto;
    padding-bottom: 60px;
  }

  .cta-content h2 { font-size: 2.5rem; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta .btn { width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }

  .navbar { padding: 0 15px; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.8rem; }

  .trailer-section { padding: 60px 0 80px; margin-top: -20px; }
  .hero-stats {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 30px 20px;
    gap: 20px;
  }

  .logo { font-size: 1.1rem; }
  .hero-grid-bg { background-size: 30px 30px; }
  .particle { width: 2px; height: 2px; }
}

@media (max-width: 576px) {
  h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { margin-bottom: 60px; }

  .features-grid,
  .game-grid { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: 1fr; gap: 20px; padding: 30px 20px; }
  .hero-stat .stat-number { font-size: 2.5rem; }

  .global-stats { grid-template-columns: 1fr; }

  .industry-bento-grid { grid-template-columns: 1fr; }
  .industry-card.industry-large,
  .industry-card.industry-wide {
    grid-column: span 1 !important;
  }

  .industry-tags { grid-template-columns: 1fr; }
  .certifications-grid { grid-template-columns: 1fr; }
  .partners-logos { grid-template-columns: repeat(2, 1fr); }

  .map-dot { width: 15px; height: 15px; }
  .map-dot span { font-size: 0.75rem; padding: 5px 10px; }

  .logo { font-size: 1rem; }
}
