/* Modern 2025 Design System for FunPoint Studios */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

/* CSS Custom Properties - 2025 Design System */
:root {
  /* 2025 Gaming Color Palette */
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #ec4899;
  --secondary-dark: #db2777;
  --secondary-light: #f472b6;
  --accent-color: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;

  /* Neutral Colors */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Gaming Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-gaming: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f59e0b 100%);
  --gradient-neon: linear-gradient(135deg, #00f5ff 0%, #ff00ff 50%, #ffff00 100%);
  --gradient-dark: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Typography System */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Font Sizes - Fluid Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
  --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;

  /* Spacing Scale */
  --space-px: 1px;
  --space-0: 0;
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */
  --space-24: 6rem;
  /* 96px */
  --space-32: 8rem;
  /* 128px */
  --space-40: 10rem;
  /* 160px */
  --space-48: 12rem;
  /* 192px */
  --space-56: 14rem;
  /* 224px */
  --space-64: 16rem;
  /* 256px */

  /* Responsive Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 0.125rem;
  /* 2px */
  --radius-base: 0.25rem;
  /* 4px */
  --radius-md: 0.375rem;
  /* 6px */
  --radius-lg: 0.5rem;
  /* 8px */
  --radius-xl: 0.75rem;
  /* 12px */
  --radius-2xl: 1rem;
  /* 16px */
  --radius-3xl: 1.5rem;
  /* 24px */
  --radius-full: 9999px;

  /* Shadows - Modern Gaming Style */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
  --shadow-glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
  --shadow-glow-amber: 0 0 20px rgba(245, 158, 11, 0.3);

  /* Animation Timing */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Easing Functions */
  --ease-linear: linear;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-elastic: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;

  /* Glassmorphism Properties */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(20px);
  --glass-dark-bg: rgba(0, 0, 0, 0.1);
  --glass-dark-border: rgba(255, 255, 255, 0.1);
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
  :root {
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Modern Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.025em;
}

h1 {
  font-size: var(--text-6xl);
  font-weight: var(--font-black);
}

h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-extrabold);
}

h3 {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
}

h4 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
}

h5 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
}

h6 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
}

p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
  line-height: 1.7;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Modern Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: 1;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  /* Touch-friendly */
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}

/* Glassmorphism Components */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}

.glass-dark {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--shadow-lg);
}

/* Modern Card System */
.card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.card-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Modern Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Container System */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--space-4);
}

/* Responsive Utilities */
@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.6s var(--ease-out) forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s var(--ease-out) forwards;
}

.animate-scale-in {
  animation: scaleIn 0.4s var(--ease-bounce) forwards;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite alternate;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  from {
    box-shadow: var(--shadow-glow);
  }

  to {
    box-shadow: var(--shadow-glow-blue);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--radius-base);
}

/* Selection Styles */
::selection {
  background: var(--primary-color);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white);
}

/* Moder
n Navigation System - 2025 */
.modern-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
  padding: var(--space-4) 0;
  margin: 0;
  box-sizing: border-box;
}

.glass-nav {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.modern-header.scrolled {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(30px);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-nav {
  padding: 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  transition: height var(--transition-normal);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.modern-header.scrolled .nav-container {
  height: 60px;
}

.nav-logo {
  position: absolute;
  left: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  z-index: calc(var(--z-fixed) + 10);
}

.logo-link {
  display: block;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 50px;
  width: auto;
  transition: all var(--transition-normal);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)) brightness(1.2) contrast(1.1);
}

.modern-header.scrolled .logo-img {
  height: 45px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-left: 200px; /* Space for logo */
  margin-right: 100px; /* Space for mobile toggle */
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-2);
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition-normal);
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link:hover,
.nav-item.current .nav-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gaming);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-item.current .nav-link::after {
  width: 80%;
}

/* Modern Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-modal);
}

.modern-hamburger {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transition: all var(--transition-normal);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.modern-hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  transform-origin: center;
}

.modern-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.modern-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.modern-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(350px, 90vw);
  height: 100vh;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--glass-border);
  z-index: var(--z-modal);
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-2xl);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  padding: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  min-width: 40px;
  min-height: 40px;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.close-line {
  width: 16px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: absolute;
}

.close-line:nth-child(1) {
  transform: rotate(45deg);
}

.close-line:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  padding: var(--space-6) 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: block;
  padding: var(--space-4) var(--space-6);
  color: var(--white);
  text-decoration: none;
  font-weight: var(--font-medium);
  font-size: var(--text-base);
  transition: all var(--transition-normal);
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav-link:hover,
.mobile-nav-item.current .mobile-nav-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gradient-gaming);
  transition: width var(--transition-normal);
}

.mobile-nav-link:hover::before,
.mobile-nav-item.current .mobile-nav-link::before {
  width: 4px;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-social {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-container {
    padding: 0 var(--space-4);
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 var(--space-4);
    height: 60px;
  }

  .nav-logo {
    left: var(--space-4);
  }

  .mobile-menu-toggle {
    right: var(--space-4);
  }

  .logo-img {
    height: 45px;
  }

  .mobile-menu {
    width: 100%;
  }
}

/* Navigation Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gradient-gaming);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}

/* Focus Styles for Navigation */
.nav-link:focus-visible,
.mobile-nav-link:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.modern-hamburger:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/*
 Modern Hero Section - 2025 */
.modern-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--primary-color) 100%);
  overflow: hidden;
  padding-top: 100px;
}

/* Particle Animation Container */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* CSS Particle Animation Fallback */
.particles-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(99, 102, 241, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(59, 130, 246, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(245, 158, 11, 0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleFloat 20s linear infinite;
  opacity: 0.6;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  33% {
    transform: translateY(-100px) translateX(50px);
  }

  66% {
    transform: translateY(-200px) translateX(-50px);
  }

  100% {
    transform: translateY(-300px) translateX(0px);
  }
}

/* Animated Background Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.1;
  animation: shapeFloat 15s ease-in-out infinite;
  animation-play-state: running;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.hero-shape-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

.hero-shape-5 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 10%;
  animation-delay: 8s;
}

@keyframes shapeFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-30px) rotate(90deg) scale(1.1);
  }

  50% {
    transform: translateY(-60px) rotate(180deg) scale(0.9);
  }

  75% {
    transform: translateY(-30px) rotate(270deg) scale(1.1);
  }
}

/* Floating Game Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  max-width: 120px;
  height: auto;
  opacity: 0.7;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: elementFloat 12s ease-in-out infinite;
  animation-play-state: running;
}

.floating-element-1 {
  top: 15%;
  left: 5%;
  animation: floatElement1 14s ease-in-out infinite;
  animation-delay: 0s;
}

.floating-element-2 {
  top: 25%;
  right: 8%;
  animation: floatElement2 16s ease-in-out infinite;
  animation-delay: 2s;
}

.floating-element-3 {
  bottom: 30%;
  left: 8%;
  animation: floatElement3 18s ease-in-out infinite;
  animation-delay: 4s;
}

.floating-element-4 {
  top: 45%;
  right: 12%;
  animation: floatElement4 12s ease-in-out infinite;
  animation-delay: 6s;
}

.floating-element-5 {
  bottom: 15%;
  right: 15%;
  animation: floatElement5 20s ease-in-out infinite;
  animation-delay: 8s;
}

@keyframes elementFloat {

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

  25% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
  }

  50% {
    transform: translateY(-40px) translateX(-10px) rotate(-5deg);
  }

  75% {
    transform: translateY(-20px) translateX(5px) rotate(3deg);
  }
}

/* Individual Floating Element Animations */
@keyframes floatElement1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-25px) translateX(15px) rotate(8deg) scale(1.05);
  }
  50% {
    transform: translateY(-15px) translateX(-10px) rotate(-5deg) scale(0.95);
  }
  75% {
    transform: translateY(-20px) translateX(12px) rotate(3deg) scale(1.02);
  }
}

@keyframes floatElement2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translateY(-30px) translateX(-20px) rotate(-10deg) scale(1.1);
  }
  40% {
    transform: translateY(-10px) translateX(25px) rotate(12deg) scale(0.9);
  }
  60% {
    transform: translateY(-35px) translateX(-5px) rotate(-7deg) scale(1.08);
  }
  80% {
    transform: translateY(-5px) translateX(18px) rotate(6deg) scale(0.92);
  }
}

@keyframes floatElement3 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  30% {
    transform: translateY(-20px) translateX(30px) rotate(15deg) scale(1.15);
  }
  60% {
    transform: translateY(-40px) translateX(-15px) rotate(-12deg) scale(0.85);
  }
  90% {
    transform: translateY(-10px) translateX(20px) rotate(9deg) scale(1.05);
  }
}

@keyframes floatElement4 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  15% {
    transform: translateY(-35px) translateX(10px) rotate(6deg) scale(1.2);
  }
  35% {
    transform: translateY(-15px) translateX(-25px) rotate(-9deg) scale(0.8);
  }
  55% {
    transform: translateY(-45px) translateX(5px) rotate(4deg) scale(1.1);
  }
  75% {
    transform: translateY(-25px) translateX(-20px) rotate(-6deg) scale(0.9);
  }
  95% {
    transform: translateY(-5px) translateX(15px) rotate(2deg) scale(1.03);
  }
}

@keyframes floatElement5 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-28px) translateX(-18px) rotate(-8deg) scale(1.12);
  }
  50% {
    transform: translateY(-32px) translateX(22px) rotate(11deg) scale(0.88);
  }
  75% {
    transform: translateY(-18px) translateX(-8px) rotate(-4deg) scale(1.06);
  }
}

/* Enhanced Hero Visual Effects */

/* Starfield Background */
.starfield-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  animation: starsMove 50s linear infinite;
}

.stars-small {
  background-image: 
    radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 200px 90px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 250px 50px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 300px 120px, rgba(255, 255, 255, 0.6), transparent);
  background-size: 350px 200px;
  animation-duration: 60s;
}

.stars-medium {
  background-image: 
    radial-gradient(2px 2px at 60px 80px, rgba(99, 102, 241, 0.8), transparent),
    radial-gradient(2px 2px at 120px 40px, rgba(236, 72, 153, 0.7), transparent),
    radial-gradient(2px 2px at 180px 100px, rgba(245, 158, 11, 0.6), transparent),
    radial-gradient(2px 2px at 240px 60px, rgba(59, 130, 246, 0.8), transparent),
    radial-gradient(2px 2px at 300px 140px, rgba(168, 85, 247, 0.7), transparent);
  background-size: 400px 250px;
  animation-duration: 80s;
  animation-direction: reverse;
}

.stars-large {
  background-image: 
    radial-gradient(3px 3px at 100px 150px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(3px 3px at 200px 80px, rgba(99, 102, 241, 0.8), transparent),
    radial-gradient(3px 3px at 300px 200px, rgba(236, 72, 153, 0.7), transparent),
    radial-gradient(3px 3px at 400px 120px, rgba(245, 158, 11, 0.8), transparent);
  background-size: 500px 300px;
  animation-duration: 100s;
}

@keyframes starsMove {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  100% {
    transform: translateY(-200px) translateX(-100px);
  }
}

/* Shooting Stars */
.shooting-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 1), transparent);
  border-radius: 50%;
  animation: shootingStar 3s ease-out infinite;
}

.shooting-star::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), transparent);
  transform: translateX(-50px) rotate(45deg);
}

.shooting-star-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shooting-star-2 {
  top: 60%;
  left: 70%;
  animation-delay: 2s;
}

.shooting-star-3 {
  top: 40%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes shootingStar {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateX(300px) translateY(300px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(400px) translateY(400px) scale(0);
  }
}

/* Nebula Effects */
.nebula-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: nebulaFloat 20s ease-in-out infinite;
  opacity: 0.3;
}

.nebula-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 20%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  animation-delay: 0s;
}

.nebula-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: 30%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
  animation-delay: 10s;
}

.nebula-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 60%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
  animation-delay: 5s;
}

.cosmic-dust {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 50px 100px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(1px 1px at 150px 200px, rgba(99, 102, 241, 0.1), transparent),
    radial-gradient(1px 1px at 250px 50px, rgba(236, 72, 153, 0.1), transparent),
    radial-gradient(1px 1px at 350px 150px, rgba(245, 158, 11, 0.1), transparent);
  background-size: 400px 300px;
  animation: dustMove 40s linear infinite;
}

@keyframes nebulaFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50px) scale(1.2);
    opacity: 0.5;
  }
}

@keyframes dustMove {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  100% {
    transform: translateX(-100px) translateY(-50px);
  }
}

/* Additional Hero Shapes */
.hero-shape-6 {
  width: 80px;
  height: 80px;
  top: 25%;
  left: 60%;
  animation-delay: 12s;
}

.hero-shape-7 {
  width: 120px;
  height: 120px;
  bottom: 40%;
  left: 40%;
  animation-delay: 18s;
}

/* Gaming Icons Floating */
.gaming-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.gaming-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.7;
  animation: iconFloat 8s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.gaming-icon-1 {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.gaming-icon-2 {
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

.gaming-icon-3 {
  bottom: 35%;
  left: 25%;
  animation-delay: 2s;
}

.gaming-icon-4 {
  top: 60%;
  right: 35%;
  animation-delay: 3s;
}

.gaming-icon-5 {
  bottom: 20%;
  right: 20%;
  animation-delay: 4s;
}

.gaming-icon-6 {
  top: 45%;
  left: 10%;
  animation-delay: 5s;
}

.gaming-icon-7 {
  bottom: 50%;
  right: 10%;
  animation-delay: 6s;
}

.gaming-icon-8 {
  top: 70%;
  left: 70%;
  animation-delay: 7s;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(90deg) scale(1.1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-10px) rotate(180deg) scale(0.9);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-15px) rotate(270deg) scale(1.05);
    opacity: 0.8;
  }
}

/* Hero Glow Orbs */
.hero-glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orbPulse 6s ease-in-out infinite;
}

.hero-glow-orb-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-glow-orb-2 {
  width: 200px;
  height: 200px;
  bottom: 30%;
  right: 15%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
  animation-delay: 2s;
}

.hero-glow-orb-3 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 70%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.6) 0%, transparent 70%);
  animation-delay: 4s;
}

.hero-glow-orb-4 {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 40%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, transparent 70%);
  animation-delay: 1s;
}

@keyframes orbPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}

/* Enhanced Hero Responsive Styles */
@media (max-width: 1024px) {
  .gaming-icon {
    font-size: 1.8rem;
    opacity: 0.6;
  }

  .nebula {
    opacity: 0.25;
    filter: blur(50px);
  }

  .hero-glow-orb {
    opacity: 0.35;
    filter: blur(35px);
  }
}

@media (max-width: 768px) {
  /* Mobile optimizations for new elements */
  .gaming-icon {
    font-size: 1.5rem;
    opacity: 0.5;
  }

  .nebula {
    opacity: 0.2;
    filter: blur(40px);
  }

  .hero-glow-orb {
    opacity: 0.3;
    filter: blur(30px);
  }

  .stars-small,
  .stars-medium,
  .stars-large {
    opacity: 0.6;
  }

  .shooting-star {
    display: none;
  }

  .cosmic-dust {
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .gaming-icon {
    font-size: 1.2rem;
    opacity: 0.4;
  }

  .nebula {
    opacity: 0.15;
    filter: blur(30px);
  }

  .hero-glow-orb {
    opacity: 0.2;
    filter: blur(25px);
  }

  .cosmic-dust {
    opacity: 0.5;
  }

  .stars-small,
  .stars-medium,
  .stars-large {
    opacity: 0.4;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: 70vh;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: var(--font-black);
  line-height: 0.9;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.title-word {
  display: inline-block;
  position: relative;
  margin-right: var(--space-4);
  animation: titleReveal 1s ease-out forwards;
  opacity: 0;
  transform: translateY(50px);
}

.title-word:nth-child(1) {
  animation-delay: 0.2s;
}

.title-word:nth-child(2) {
  animation-delay: 0.4s;
}

.title-word:nth-child(3) {
  animation-delay: 0.6s;
}

.title-word:nth-child(4) {
  animation-delay: 0.8s;
}

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

.title-word::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.title-word:hover::before {
  opacity: 1;
}

.hero-description {
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out 1s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-description p {
  color: var(--white);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-8);
  animation: fadeInUp 1s ease-out 1.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: var(--font-black);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  animation: fadeInUp 1s ease-out 1.4s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.store-badge {
  display: block;
  transition: all var(--transition-normal);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.store-badge:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-2xl);
}

.store-badge img {
  height: 60px;
  width: auto;
  display: block;
  transition: filter var(--transition-normal);
}

.store-badge:hover img {
  filter: brightness(1.1);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  animation: fadeInScale 1.5s ease-out 0.5s forwards;
  opacity: 0;
  transform: scale(0.8);
}

.hero-image-container.animation-loaded {
  animation: fadeInScale 1.5s ease-out 0.5s forwards, heroContainerFloat 8s ease-in-out infinite 2s;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  transition: transform var(--transition-slow);
}

.hero-image:hover {
  transform: scale(1.05) rotate(2deg);
}

.image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--gradient-gaming);
  border-radius: var(--radius-3xl);
  opacity: 0.3;
  filter: blur(30px);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

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

  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Mobile Vibration Effect */
.mobile-vibrate {
  position: relative;
}

.vibrating-image {
  position: relative;
  overflow: hidden;
  transition: transform 0.1s ease-out;
}



/* Vibration Rings */
.vibration-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}



.vibration-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  opacity: 0;
}

.vibration-ring.animation-active {
  animation: vibrationRing 0.6s ease-out infinite;
}

.ring-1 {
  width: 120%;
  height: 120%;
  animation-delay: 0s;
}

.ring-2 {
  width: 140%;
  height: 140%;
  animation-delay: 0.2s;
  border-color: rgba(236, 72, 153, 0.3);
}

.ring-3 {
  width: 160%;
  height: 160%;
  animation-delay: 0.4s;
  border-color: rgba(245, 158, 11, 0.3);
}

/* Hero Image Floating Animation */
@keyframes heroImageFloat {
  0% { 
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
  15% { 
    transform: translateY(-15px) translateX(8px) rotate(1deg) scale(1.02);
  }
  30% { 
    transform: translateY(-25px) translateX(-5px) rotate(-0.5deg) scale(1.01);
  }
  45% { 
    transform: translateY(-10px) translateX(12px) rotate(1.5deg) scale(1.03);
  }
  60% { 
    transform: translateY(-20px) translateX(-8px) rotate(-1deg) scale(1.01);
  }
  75% { 
    transform: translateY(-5px) translateX(6px) rotate(0.5deg) scale(1.02);
  }
  90% { 
    transform: translateY(-12px) translateX(-3px) rotate(-0.3deg) scale(1.01);
  }
  100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
  }
}

@keyframes heroContainerFloat {
  0% { 
    transform: translateY(0px) translateX(0px) scale(1);
  }
  20% { 
    transform: translateY(-8px) translateX(5px) scale(1.01);
  }
  40% { 
    transform: translateY(-15px) translateX(-3px) scale(0.99);
  }
  60% { 
    transform: translateY(-12px) translateX(7px) scale(1.02);
  }
  80% { 
    transform: translateY(-5px) translateX(-2px) scale(1.01);
  }
  100% { 
    transform: translateY(0px) translateX(0px) scale(1);
  }
}

@keyframes vibrationRing {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.8);
    filter: blur(0px);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
    filter: blur(2px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.4);
    filter: blur(4px);
  }
}



/* Automatic floating on all devices */
@media (max-width: 768px) {
  .hero-image-container {
    animation: fadeInScale 1.5s ease-out 0.5s forwards, heroContainerFloat 12s ease-in-out infinite 2s;
  }
  
  .vibrating-image {
    animation: heroImageFloat 10s ease-in-out infinite;
  }
}

@media (min-width: 769px) {
  .hero-image-container {
    animation: fadeInScale 1.5s ease-out 0.5s forwards, heroContainerFloat 8s ease-in-out infinite 2s;
  }
  
  .vibrating-image {
    animation: heroImageFloat 6s ease-in-out infinite;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  z-index: 10;
  animation: fadeIn 2s ease-out 2s forwards;
  opacity: 0;
}

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

.scroll-arrow span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--white);
  border-radius: var(--radius-full);
  animation: scrollArrow 2s ease-in-out infinite;
}

.scroll-arrow span:nth-child(1) {
  animation-delay: 0s;
}

.scroll-arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollArrow {

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

  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

/* Responsive Hero Design */
@media (max-width: 1024px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }

  .hero-title {
    font-size: var(--text-5xl);
  }

  .floating-element {
    max-width: 80px;
    opacity: 0.5;
  }

  .hero-shape {
    opacity: 0.05;
  }
}

@media (max-width: 768px) {
  .modern-hero {
    padding-top: 80px;
    min-height: 90vh;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-stats {
    justify-content: center;
    gap: var(--space-6);
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .store-badge img {
    height: 50px;
  }

  .floating-element {
    max-width: 60px;
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-3xl);
  }

  .title-word {
    margin-right: var(--space-2);
  }

  .hero-description {
    padding: var(--space-4);
  }

  .hero-description p {
    font-size: var(--text-base);
  }

  .hero-stats {
    gap: var(--space-4);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }

  .hero-actions {
    gap: var(--space-4);
  }

  .store-badge img {
    height: 45px;
  }
}

/* Mo
dern Games Section - 2025 */
.modern-games-section {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Background Shapes */
.games-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.1;
  animation: bgShapeFloat 20s ease-in-out infinite;
}

.bg-shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.bg-shape-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -5%;
  animation-delay: 7s;
}

.bg-shape-3 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 20%;
  animation-delay: 14s;
}

@keyframes bgShapeFloat {

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

  33% {
    transform: translateY(-50px) rotate(120deg);
  }

  66% {
    transform: translateY(-100px) rotate(240deg);
  }
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-20);
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-black);
  margin-bottom: var(--space-4);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-gaming);
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Modern Games Carousel */
.modern-games-carousel {
  position: relative;
  z-index: 10;
}

.modern-games-carousel .swiper {
  padding: var(--space-8) 0 var(--space-16);
  overflow: visible;
}

/* Smooth carousel transitions */
.swiper-wrapper {
  /* Let Swiper handle its own transitions */
}

.swiper-slide {
  /* Let Swiper handle its own transitions */
  will-change: transform;
}

.modern-games-carousel .swiper-wrapper {
  align-items: center;
}

.modern-games-carousel .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  transition: all var(--transition-slow);
  transform-style: preserve-3d;
}

/* Modern Carousel Effects */
.modern-games-carousel .swiper-slide {
  transform: scale(0.9);
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.modern-games-carousel .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}

.modern-games-carousel .swiper-slide.swiper-slide-next,
.modern-games-carousel .swiper-slide.swiper-slide-prev {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Game Card */
.game-card {
  position: relative;
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
  background: var(--white);
  border: 1px solid var(--gray-200);
  
  
}

.game-card:hover {
  transform: translateY(0px) scale(1.00);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
  border-color: var(--primary-color);
  
}

.game-image {
  transform: scale(1);
  position: relative;
  width: 100%;
  aspect-ratio: 1.2/2;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.game-card:hover .game-image img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Game Overlay */
.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.1) 30%,
      rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-6);
  opacity: 0;
  transition: all var(--transition-normal);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-info {
  margin-top: auto;
}

.game-info h3 {
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.game-platforms {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.platform-badge {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.platform-badge.ios {
  background: rgba(0, 122, 255, 0.8);
  color: var(--white);
}

.platform-badge.android {
  background: rgba(76, 175, 80, 0.8);
  color: var(--white);
}

.platform-badge.vr {
  background: rgba(156, 39, 176, 0.8);
  color: var(--white);
}

.platform-badge.meta {
  background: rgba(24, 119, 242, 0.8);
  color: var(--white);
}

/* Play Button */
.play-btn {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-xl);
  text-decoration: none;
  box-shadow: none;
  transition: all var(--transition-normal);
  transform: scale(0);
}

.game-card:hover .play-btn {
  transform: scale(1);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: none;
  color: var(--white);
}

.play-btn i {
  margin-left: 2px;
  /* Optical alignment for play icon */
}

/* Modern Navigation Buttons */
.modern-nav-btn {
  width: 60px !important;
  height: 60px !important;
  margin-top: -30px !important;
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 50% !important;
  color: var(--gray-800) !important;
  font-size: var(--text-lg) !important;
  transition: all var(--transition-normal) !important;
  box-shadow: var(--shadow-lg) !important;
}

.modern-nav-btn:hover {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  transform: scale(1.1) !important;
  box-shadow: var(--shadow-glow) !important;
}

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

.swiper-button-next.modern-nav-btn {
  right: -30px !important;
}

.swiper-button-prev.modern-nav-btn {
  left: -30px !important;
}

/* Modern Pagination */
.modern-pagination {
  position: relative !important;
  margin-top: var(--space-8) !important;
}

.modern-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: var(--gray-300) !important;
  opacity: 1 !important;
  margin: 0 var(--space-2) !important;
  transition: all var(--transition-normal) !important;
}

.modern-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  transform: scale(1.2) !important;
  box-shadow: var(--shadow-glow) !important;
}

/* Responsive Games Section */
@media (max-width: 1024px) {
  .modern-games-section {
    padding: var(--space-20) 0;
  }

  .section-title {
    font-size: var(--text-4xl);
  }

  .modern-nav-btn {
    display: none !important;
  }

  .modern-games-carousel .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .modern-games-section {
    padding: var(--space-20) 0;
  }

  .section-header {
    margin-bottom: var(--space-16);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .section-subtitle {
    font-size: var(--text-lg);
  }

  .game-card {
    max-width: 240px;
  }

  .modern-games-carousel .swiper {
    padding: var(--space-6) 0 var(--space-12);
  }

  .modern-games-carousel .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.85);
    opacity: 0.6;
  }

  .play-btn {
    width: 50px;
    height: 50px;
    font-size: var(--text-lg);
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: var(--text-2xl);
  }

  .section-subtitle {
    font-size: var(--text-base);
  }

  .game-card {
    max-width: 220px;
  }

  .game-info h3 {
    font-size: var(--text-lg);
  }

  .game-platforms {
    gap: var(--space-1);
  }

  .platform-badge {
    padding: var(--space-1) var(--space-2);
    font-size: 10px;
  }
}

/* Modern Technology Section - 2025 */
.modern-tech-section {
  position: relative;
  padding: var(--space-20) 0;
  margin-top: var(--space-16);
  z-index: 10;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  overflow: hidden;
  color: var(--white);
}

/* Background Elements */
.tech-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.tech-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.1;
  animation: techParticleFloat 25s ease-in-out infinite;
}

.tech-particle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.tech-particle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 8s;
}

.tech-particle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 16s;
}

@keyframes techParticleFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-50px) rotate(90deg) scale(1.1);
  }

  50% {
    transform: translateY(-100px) rotate(180deg) scale(0.9);
  }

  75% {
    transform: translateY(-50px) rotate(270deg) scale(1.1);
  }
}

.tech-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* Tech Content */
.tech-content {
  position: relative;
  z-index: 10;
}

/* Tech About Grid */
.tech-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-20);
}

.tech-about-card {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.tech-about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.tech-about-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-2xl);
}

.tech-about-card:hover::before {
  opacity: 0.1;
}

.tech-about-card.full-width {
  grid-column: 1 / -1;
  text-align: center;
}

.card-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  display: block;
}

.tech-about-card h3 {
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-about-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* Technology Stack Showcase */
.tech-stack-showcase {
  position: relative;
}

.tech-stack-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-black);
  text-align: center;
  margin-bottom: var(--space-16);
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.tech-stack-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-gaming);
  border-radius: var(--radius-full);
}

/* Technology Categories */
.tech-category {
  margin-bottom: var(--space-16);
}

.category-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
  font-size: var(--text-3xl);
}

/* Technology Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-6);
  justify-items: center;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  justify-content: center;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.tech-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

.tech-item:hover::before {
  opacity: 0.2;
}

.tech-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.tech-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: all var(--transition-normal);
  filter: brightness(1.2);
  position: relative;
  z-index: 2;
}

.tech-item:hover .tech-icon {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.4);
}

.tech-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-gaming);
  border-radius: 50%;
  opacity: 0;
  filter: blur(20px);
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.tech-item:hover .tech-glow {
  opacity: 0.6;
  animation: glowPulse 2s ease-in-out infinite;
}

.tech-name {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

/* Tooltip */
.tech-item[data-tooltip] {
  position: relative;
}

.tech-item[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: var(--text-xs);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  z-index: 100;
}

.tech-item[data-tooltip]:hover::after {
  opacity: 1;
  bottom: -35px;
}

/* Responsive Technology Section */
@media (max-width: 1024px) {
  .modern-tech-section {
    padding: var(--space-20) 0;
  }

  .tech-about-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-16);
  }

  .tech-stack-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-12);
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-4);
  }

  .tech-item {
    padding: var(--space-4);
    min-height: 120px;
  }

  .tech-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .tech-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .modern-tech-section {
    padding: var(--space-20) 0;
  }

  .tech-about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
  }

  .tech-about-card {
    padding: var(--space-6);
  }

  .tech-stack-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-10);
  }

  .category-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
  }

  .tech-category {
    margin-bottom: var(--space-12);
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-3);
  }

  .tech-item {
    padding: var(--space-3);
    min-height: 100px;
  }

  .tech-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .tech-icon {
    width: 40px;
    height: 40px;
  }

  .tech-name {
    font-size: var(--text-xs);
  }
}

@media (max-width: 480px) {
  .tech-about-card {
    padding: var(--space-4);
  }

  .card-icon {
    font-size: var(--text-3xl);
  }

  .tech-about-card h3 {
    font-size: var(--text-lg);
  }

  .tech-stack-title {
    font-size: var(--text-xl);
  }

  .category-title {
    font-size: var(--text-lg);
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: var(--space-2);
  }

  .tech-item {
    padding: var(--space-2);
    min-height: 80px;
  }

  .tech-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .tech-icon {
    width: 30px;
    height: 30px;
  }

  .tech-name {
    font-size: 10px;
  }
}

/* 
Modern Career Section - 2025 */
.modern-career-section {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Background Elements */
.career-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.career-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.1;
  animation: careerShapeFloat 20s ease-in-out infinite;
}

.career-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.career-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 10%;
  animation-delay: 7s;
}

.career-shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 5%;
  animation-delay: 14s;
}

@keyframes careerShapeFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-30px) rotate(120deg) scale(1.1);
  }

  66% {
    transform: translateY(-60px) rotate(240deg) scale(0.9);
  }
}

.career-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 40px 60px, rgba(99, 102, 241, 0.3), transparent),
    radial-gradient(2px 2px at 120px 25px, rgba(59, 130, 246, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(245, 158, 11, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 150px;
  animation: particleDrift 25s linear infinite;
  opacity: 0.4;
}

@keyframes particleDrift {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  100% {
    transform: translateX(-200px) translateY(-150px);
  }
}

/* Career Content */
.career-content {
  position: relative;
  z-index: 10;
}

/* Career Badge */
.career-badge {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-6);
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  color: var(--white);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.badge-text {
  position: relative;
  z-index: 2;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }
}

/* Career Hero */
.career-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-20);
}

.career-hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-black);
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.hero-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* Career Stats */
.career-stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-4);
}

.career-stat {
  text-align: center;
}

.career-stat .stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--font-black);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.career-stat .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Career Hero Visual */
.career-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  max-width: 400px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  transition: transform var(--transition-slow);
}

.hero-image:hover {
  transform: scale(1.05);
}

.image-effects {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.effect-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: ringPulse 4s ease-in-out infinite;
}

.effect-ring-1 {
  width: 300px;
  height: 300px;
  animation-delay: 0s;
}

.effect-ring-2 {
  width: 350px;
  height: 350px;
  animation-delay: 1s;
}

.effect-ring-3 {
  width: 400px;
  height: 400px;
  animation-delay: 2s;
}

@keyframes ringPulse {

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

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

/* Career Highlights Grid */
.career-highlights-grid,
.career-benefits-grid,
.job-positions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-20);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.career-card {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.career-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.career-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-2xl);
}

.career-card:hover::before {
  opacity: 0.05;
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.card-icon {
  font-size: var(--text-4xl);
  line-height: 1;
}

.card-header h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--white);
  margin: 0;
}

.card-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.skill-list,
.benefit-list,
.growth-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.skill-list li,
.benefit-list li,
.growth-list li {
  position: relative;
  padding-left: var(--space-6);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-medium);
}

.skill-list li::before,
.benefit-list li::before,
.growth-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success-color);
  font-weight: var(--font-bold);
}

/* Career CTA Section */
.career-cta-section {
  display: flex;
  justify-content: center;
}

.cta-content {
  max-width: 800px;
  padding: var(--space-12);
  border-radius: var(--radius-3xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0.05;
  z-index: -1;
}

.cta-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-black);
  color: var(--white);
  margin-bottom: var(--space-6);
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.cta-highlight {
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--space-8);
}

/* Contact Methods */
.contact-methods {
  margin-bottom: var(--space-8);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-icon {
  font-size: var(--text-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-label {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-weight: var(--font-medium);
}

.contact-link {
  font-size: var(--text-lg);
  color: var(--primary-color);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--primary-dark);
}

/* CTA Actions */
.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.career-apply-btn {
  background: var(--gradient-gaming);
  border: none;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.career-apply-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.career-apply-btn:hover::before {
  left: 100%;
}

.career-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2xl), var(--shadow-glow-blue);
}

.btn span {
  margin-right: var(--space-2);
}

/* Responsive Career Section */
@media (max-width: 1024px) {
  .modern-career-section {
    padding: var(--space-20) 0;
  }

  .career-hero {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }

  .career-stats {
    justify-content: center;
  }

  .career-highlights-grid,
  .career-benefits-grid,
  .job-positions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-16);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .modern-career-section {
    padding: var(--space-20) 0;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .career-stats {
    gap: var(--space-6);
  }

  .career-highlights-grid,
  .career-benefits-grid,
  .job-positions-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .career-card {
    padding: var(--space-6);
  }

  .cta-content {
    padding: var(--space-8);
  }

  .cta-title {
    font-size: var(--text-3xl);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-2xl);
  }

  .career-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .card-header {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .career-card {
    padding: var(--space-4);
  }

  .cta-content {
    padding: var(--space-6);
  }

  .cta-title {
    font-size: var(--text-2xl);
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

/* 
Modern Contact Section - 2025 */
.modern-contact-section {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Background Elements */
.contact-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.1;
  animation: contactShapeFloat 25s ease-in-out infinite;
}

.contact-shape-1 {
  width: 250px;
  height: 250px;
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.contact-shape-2 {
  width: 180px;
  height: 180px;
  bottom: 25%;
  left: 15%;
  animation-delay: 12s;
}

@keyframes contactShapeFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-40px) rotate(90deg) scale(1.1);
  }

  50% {
    transform: translateY(-80px) rotate(180deg) scale(0.9);
  }

  75% {
    transform: translateY(-40px) rotate(270deg) scale(1.1);
  }
}

.contact-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridSlide 40s linear infinite;
  opacity: 0.3;
}

@keyframes gridSlide {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

/* Contact Content */
.contact-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-intro {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-intro h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: var(--space-4);
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

.contact-method:hover::before {
  opacity: 0.1;
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  color: var(--white);
  font-size: var(--text-xl);
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}

.method-content h4 {
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.method-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-1);
  line-height: 1.5;
}

.method-content p:last-child {
  margin-bottom: 0;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--accent-color);
}

.availability {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
  position: relative;
}

.form-container {
  padding: var(--space-10);
  border-radius: var(--radius-3xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0.05;
  z-index: -1;
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.form-header h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Modern Contact Form */
.modern-contact-form {
  position: relative;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-2);
  transition: color var(--transition-fast);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  color: var(--white);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-input:focus+.form-focus-line,
.form-select:focus+.form-focus-line,
.form-textarea:focus+.form-focus-line {
  transform: scaleX(1);
}

.form-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gaming);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  z-index: 3;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: var(--space-10);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form Validation */
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-group.error .form-label {
  color: var(--error-color);
}

.error-message {
  color: var(--error-color);
  font-size: var(--text-sm);
  margin-top: var(--space-2);
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
}

.form-group.error .error-message {
  opacity: 1;
  transform: translateY(0);
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.form-submit-btn {
  position: relative;
  min-width: 200px;
  background: var(--gradient-gaming);
  border: none;
  overflow: hidden;
}

.form-submit-btn .btn-loading {
  display: none;
}

.form-submit-btn.loading .btn-text {
  display: none;
}

.form-submit-btn.loading .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.form-submit-btn.loading .btn-icon {
  display: none;
}

.btn-icon {
  margin-left: var(--space-2);
  transition: transform var(--transition-fast);
}

.form-submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Form Messages */
.form-message {
  display: none;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: var(--font-medium);
  animation: messageSlideIn 0.3s ease-out;
}

.form-message.show {
  display: flex;
}

.success-message {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--success-color);
  color: var(--success-color);
}

.error-message-global {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid var(--error-color);
  color: var(--error-color);
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

/* Responsive Contact Section */
@media (max-width: 1024px) {
  .modern-contact-section {
    padding: var(--space-20) 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .form-container {
    padding: var(--space-8);
  }
}

@media (max-width: 768px) {
  .modern-contact-section {
    padding: var(--space-20) 0;
  }

  .contact-content {
    gap: var(--space-10);
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .form-container {
    padding: var(--space-6);
  }

  .contact-method {
    padding: var(--space-4);
  }

  .method-icon {
    width: 50px;
    height: 50px;
    font-size: var(--text-lg);
  }
}

@media (max-width: 480px) {
  .form-container {
    padding: var(--space-4);
  }

  .form-header h3 {
    font-size: var(--text-xl);
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .method-icon {
    align-self: center;
  }

  .form-submit-btn {
    width: 100%;
  }
}

/* Performance Optimizations & Animations */
/* Lazy Loading Images */
img {
  transition: opacity var(--transition-normal);
}

img[data-src] {
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

/* Scroll-based Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animations */
.tech-item,
.career-card,
.contact-method {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-item.animate-slide-up,
.career-card.animate-slide-up,
.contact-method.animate-slide-up {
  opacity: 1;
  transform: translateY(0);
}

/* Hardware Acceleration */
.floating-element,
.hero-shape,
.tech-particle,
.career-shape,
.contact-shape {
  will-change: transform;
  transform: translateZ(0);
}

/* Force Animation Override - Higher Specificity */
.modern-hero .hero-shape {
  animation: shapeFloat 15s ease-in-out infinite !important;
  animation-play-state: running !important;
}

.modern-hero .floating-element {
  animation: elementFloat 12s ease-in-out infinite !important;
  animation-play-state: running !important;
}

/* Smooth Scrolling Enhancement */
html {
  scroll-behavior: smooth;
}

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

  .animate-on-scroll,
  .tech-item,
  .career-card,
  .contact-method {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Loading States */
.loading-skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

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

/* Critical CSS for Above-the-Fold Content */
.modern-hero,
.modern-header {
  contain: layout style paint;
}

/* Optimize Repaints */
.btn,
.nav-link,
.mobile-nav-link {
  contain: layout;
}

/* GPU Acceleration for Animations */
.swiper-slide,
.game-card,
.tech-item,
.career-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Intersection Observer Fallback */
.no-js .animate-on-scroll,
.no-js .tech-item,
.no-js .career-card,
.no-js .contact-method {
  opacity: 1;
  transform: none;
}

/* Print Styles */
@media print {

  .modern-header,
  .scroll-indicator,
  .swiper-button-next,
  .swiper-button-prev,
  .floating-elements,
  .hero-shapes,
  .tech-bg-elements,
  .career-bg-elements,
  .contact-bg-elements {
    display: none !important;
  }

  .modern-hero,
  .modern-games-section,
  .modern-tech-section,
  .modern-career-section,
  .modern-contact-section {
    background: white !important;
    color: black !important;
    page-break-inside: avoid;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

  .glass,
  .glass-dark,
  .card-glass {
    background: var(--white);
    border: 2px solid var(--black);
  }

  .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--black);
  }
}

/* Modern Video Section - 2025 */
.video-one.cta-two {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Video Background Elements */
.video-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.video-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.1;
  animation: videoShapeFloat 20s ease-in-out infinite;
}

.video-shape-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.video-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 30%;
  right: 15%;
  animation-delay: 10s;
}

@keyframes videoShapeFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-30px) rotate(180deg) scale(1.1);
  }
}

.video-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 40px 60px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 120px 25px, rgba(99, 102, 241, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(59, 130, 246, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 150px;
  animation: particleDrift 25s linear infinite;
  opacity: 0.4;
}

.video-one__content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.video-one__content h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
}

.video-one__content h3 a {
  background: var(--gradient-gaming);
  color: var(--white);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: var(--font-semibold);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  box-shadow: var(--shadow-lg);
}

.video-one__content h3 a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  color: var(--white);
}

/* Vertical Video Layout */
.video-content-vertical {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  align-items: center;
  text-align: center;
}

.video-content {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Scroll Progress Indicator */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: calc(var(--z-fixed) + 1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scroll-progress-bar {
  height: 100%;
  background: var(--gradient-gaming);
  width: 0%;
  transition: width 0.1s ease-out;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.scroll-progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: progressShine 3s infinite;
}

.scroll-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.3),
    transparent
  );
  animation: progressShine 2s infinite reverse;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Enhanced scroll progress for better visibility */
.scroll-progress-bar:hover {
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}


/* Focus Management */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
}

.skip-link:focus {
  top: 6px;
}

/* Enhanced Interactive Elements */
.card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
  border-radius: var(--radius-2xl);
}

.career-card:hover .card-hover-effect {
  opacity: 0.05;
}

.btn-shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
  z-index: 1;
}

.career-apply-btn:hover .btn-shine-effect {
  left: 100%;
}

.cta-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stats .stat-item {
  text-align: center;
  flex: 1;
}

.cta-stats .stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  margin-bottom: var(--space-1);
}

.cta-stats .stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-medium);
}

/* Enhanced Animation Classes */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-in.animate-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-in {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-in.animate-slide-in {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Animation Delays */
[data-delay="0.1s"] {
  animation-delay: 0.1s;
}

[data-delay="0.2s"] {
  animation-delay: 0.2s;
}

[data-delay="0.3s"] {
  animation-delay: 0.3s;
}

[data-delay="0.4s"] {
  animation-delay: 0.4s;
}

[data-delay="0.5s"] {
  animation-delay: 0.5s;
}

[data-delay="0.6s"] {
  animation-delay: 0.6s;
}

/* Enhanced Contact Methods */
.contact-methods {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  min-width: 200px;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.contact-icon {
  font-size: var(--text-xl);
  color: var(--primary-color);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  font-weight: var(--font-semibold);
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--primary-color);
}

/* Performance Hints */
.modern-games-carousel,
.tech-stack-showcase,
.career-highlights-grid,
.career-benefits-grid,
.job-positions-grid,
.contact-content {
  contain: layout style;
}

/* Optimize Font Loading */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

/* Critical Resource Hints */
.preload-hint {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {

  .floating-element,
  .hero-shape,
  .tech-particle,
  .career-shape,
  .contact-shape {
    animation-duration: 20s;
  }

  .particles-container::before,
  .tech-grid-bg,
  .contact-grid-bg {
    animation-duration: 30s;
  }
}

/* Battery Optimization */
@media (prefers-reduced-motion: reduce) {

  .floating-element,
  .hero-shape,
  .tech-particle,
  .career-shape,
  .contact-shape,
  .particles-container::before,
  .tech-grid-bg,
  .contact-grid-bg {
    animation-duration: 60s;
    animation-iteration-count: 1;
  }
}

/* Network-aware Loading */
@media (prefers-reduced-data: reduce) {

  .particles-container::before,
  .tech-grid-bg,
  .contact-grid-bg,
  .career-particles {
    display: none;
  }

  .floating-element,
  .hero-shape,
  .tech-particle,
  .career-shape,
  .contact-shape {
    opacity: 0.3;
  }
}

/* Mo
dern About Section - 2025 */
.modern-about-section {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  overflow: hidden;
}

/* About Background Elements */
.about-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.1;
  animation: aboutShapeFloat 20s ease-in-out infinite;
}

.about-shape-1 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.about-shape-2 {
  width: 180px;
  height: 180px;
  bottom: 30%;
  right: 10%;
  animation-delay: 10s;
}

.about-shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 15%;
  animation-delay: 5s;
}

@keyframes aboutShapeFloat {

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

  50% {
    transform: translateY(-40px) rotate(180deg);
  }
}

.about-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridFloat 25s linear infinite;
}

.about-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 30px 50px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 80px 20px, rgba(99, 102, 241, 0.4), transparent),
    radial-gradient(1px 1px at 120px 70px, rgba(59, 130, 246, 0.3), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: particleMove 20s linear infinite;
  opacity: 0.5;
}

@keyframes gridFloat {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, 40px);
  }
}

/* About Content Grid */
.about-content-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-container {
  position: relative;
  text-align: center;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  transition: transform var(--transition-slow);
}

.about-image:hover {
  transform: scale(1.05);
}

.image-glow-effect {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--gradient-gaming);
  border-radius: var(--radius-3xl);
  opacity: 0.2;
  filter: blur(30px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

/* About Text Content */
.about-text-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* About Content Grid Layout */
.about-content-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

/* Enhanced About Section Redesign */
.about-redesign {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

/* Enhanced Background Elements */
.about-shape-4 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 25%;
  animation-delay: 15s;
}

.about-glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  animation: orbFloat 8s ease-in-out infinite;
}

.glow-orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.glow-orb-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 30%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
}

.glow-orb-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 10%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
}

@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.6;
  }
}

/* Enhanced Header Section */
.about-hero {
  text-align: center;
  margin-bottom: var(--space-12);
}

.about-header {
  max-width: 900px;
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--white);
  animation: badgeGlow 3s ease-in-out infinite;
}

.badge-icon {
  font-size: var(--text-base);
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
  }
}

/* Main Content Grid */
.about-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
}

/* Content Side */
.about-content-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-content-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  backdrop-filter: blur(20px);
  transition: all var(--transition-normal);
  overflow: hidden;
}

.about-content-card:hover {
  transform: translateY(-8px) translateX(5px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.card-icon {
  font-size: var(--text-2xl);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gaming);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
}

.card-header h3 {
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin: 0;
}

.card-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: var(--text-base);
}

.card-content p {
  margin: 0;
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left var(--transition-slow);
}

.about-content-card:hover .card-hover-effect {
  left: 100%;
}

/* Visual Side */
.about-visual-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  animation: imageFloat 6s ease-in-out infinite;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: all var(--transition-normal);
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  opacity: 0;
}

/* Floating Stats */
.floating-stats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.stat-bubble {
  position: absolute;
  text-align: center;
  animation: statFloat 4s ease-in-out infinite;
}

.stat-bubble-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.stat-bubble-2 {
  bottom: 30%;
  left: -15%;
  animation-delay: 1s;
}

.stat-bubble-3 {
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

.stat-number {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-medium);
}

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

/* Decorative Elements */
.image-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite;
}

.decoration-ring-1 {
  width: 120px;
  height: 120px;
  top: -10%;
  left: -10%;
  border-color: rgba(99, 102, 241, 0.3);
}

.decoration-ring-2 {
  width: 80px;
  height: 80px;
  bottom: -5%;
  right: -5%;
  border-color: rgba(236, 72, 153, 0.3);
  animation-direction: reverse;
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.decoration-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gradient-gaming);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.dot-2 {
  top: 15%;
  right: 10%;
  animation-delay: 0.5s;
}

.dot-3 {
  bottom: 25%;
  left: 8%;
  animation-delay: 1s;
}

.dot-4 {
  bottom: 20%;
  right: 15%;
  animation-delay: 1.5s;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* CTA Section */
.about-cta-section {
  margin-top: var(--space-16);
}

.cta-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-3xl);
  padding: var(--space-12);
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all var(--transition-normal);
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.cta-buttons .btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  color: var(--white);
}

.cta-buttons .btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.cta-buttons .btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

@keyframes imageFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Design for Enhanced About Section */
@media (max-width: 1024px) {
  .about-main-content {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
  
  .about-visual-side {
    order: -1;
  }
  
  .floating-stats {
    display: none;
  }
  
  .decoration-ring {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-redesign {
    gap: var(--space-16);
  }
  
  .about-main-content {
    gap: var(--space-12);
  }
  
  .about-content-side {
    gap: var(--space-4);
  }
  
  .about-content-card {
    padding: var(--space-6);
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    font-size: var(--text-xl);
  }
  
  .card-header h3 {
    font-size: var(--text-lg);
  }
  
  .cta-card {
    padding: var(--space-8);
  }
  
  .cta-title {
    font-size: var(--text-2xl);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .section-badge {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
  }
  
  .decoration-dots {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-content-card {
    padding: var(--space-4);
  }
  
  .card-header {
    gap: var(--space-3);
  }
  
  .card-icon {
    width: 35px;
    height: 35px;
    font-size: var(--text-lg);
  }
  
  .cta-card {
    padding: var(--space-6);
  }
  
  .cta-description {
    font-size: var(--text-base);
  }
}

.about-grid-item .about-image {
  animation: imageFloat 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.about-grid-item .about-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* About Content Section */
.about-content-section {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
}

.about-content-section .about-card {
  max-width: 900px;
  width: 100%;
}

/* Single About Card Layout */
.about-cards-single {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
}

.about-cards-single .about-card {
  max-width: 900px;
  width: 100%;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.about-section:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.about-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.about-section h4 {
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
}

.about-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-base);
  line-height: 1.6;
}

.about-card {
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-xl);
}

.about-card:hover::before {
  opacity: 0.05;
}

.about-card .card-icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
  display: block;
}

.about-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.about-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* About Stats */
.about-stats {
  display: flex;
  gap: var(--space-8);
  justify-content: space-between;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stats .stat-item {
  text-align: center;
  flex: 1;
}

.about-stats .stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--font-black);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.about-stats .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Modern Achievements Section - 2025 */
.modern-achievements-section {
  position: relative;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Achievements Background Elements */
.achievements-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.achievement-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.1;
  animation: achievementFloat 15s ease-in-out infinite;
}

.achievement-shape-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.achievement-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
  animation-delay: 7s;
}

@keyframes achievementFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-30px) rotate(120deg) scale(1.1);
  }

  66% {
    transform: translateY(-60px) rotate(240deg) scale(0.9);
  }
}

.achievement-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 30px 50px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 80px 20px, rgba(99, 102, 241, 0.4), transparent),
    radial-gradient(1px 1px at 120px 70px, rgba(59, 130, 246, 0.3), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: particleMove 20s linear infinite;
  opacity: 0.5;
}

@keyframes particleMove {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  100% {
    transform: translateX(-150px) translateY(-100px);
  }
}

/* Achievements Grid */
.achievements-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.achievement-card {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.achievement-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.achievement-card:hover::before {
  opacity: 0.1;
}

.achievement-icon {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.achievement-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.achievement-number .counter {
  font-size: var(--text-6xl);
  font-weight: var(--font-black);
  line-height: 1;
}

.achievement-number .plus {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
}

.achievement-label {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.achievement-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin: 0;
}

/* Responsive About & Achievements Sections */
@media (max-width: 1024px) {

  .modern-about-section,
  .modern-achievements-section {
    padding: var(--space-20) 0;
  }

  .about-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }

  .about-stats {
    gap: var(--space-6);
  }

  .achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {

  .modern-about-section,
  .modern-achievements-section {
    padding: var(--space-20) 0;
  }

  .about-content-grid {
    gap: var(--space-10);
  }

  .about-cards {
    gap: var(--space-4);
  }
  
  .about-content {
    gap: var(--space-6);
  }
  
  .about-cards-single .about-card {
    max-width: 100%;
  }
  
  .about-main-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    min-height: auto;
  }
  
  .about-text-card {
    padding: var(--space-8);
  }
  
  .about-image-wrapper {
    max-width: 100%;
    height: 300px;
  }
  
  .about-hero {
    margin-bottom: var(--space-6);
  }
  
  .about-content-grid {
    gap: var(--space-12);
  }
  
  .about-content-section .about-card {
    max-width: 100%;
  }
  
  .video-content-vertical {
    gap: var(--space-8);
  }

  .about-card {
    padding: var(--space-4);
  }

  .about-stats {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .achievement-card {
    padding: var(--space-6);
  }

  .achievement-number .counter {
    font-size: var(--text-5xl);
  }

  .achievement-number .plus {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 480px) {
  .about-card {
    padding: var(--space-4);
  }

  .about-card h3 {
    font-size: var(--text-lg);
  }

  .about-stats {
    padding: var(--space-4);
  }

  .achievement-card {
    padding: var(--space-4);
  }

  .achievement-icon {
    font-size: var(--text-4xl);
  }

  .achievement-number .counter {
    font-size: var(--text-4xl);
  }

  .achievement-number .plus {
    font-size: var(--text-2xl);
  }

  .achievement-label {
    font-size: var(--text-lg);
  }
}

/* Mo
dern Footer Section - 2025 */
.modern-footer {
  position: relative;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
  overflow: hidden;
}

/* Footer Background Elements */
.footer-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-gaming);
  opacity: 0.08;
  animation: footerShapeFloat 25s ease-in-out infinite;
}

.footer-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.footer-shape-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  animation-delay: 8s;
}

.footer-shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 16s;
}

@keyframes footerShapeFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-40px) rotate(90deg) scale(1.1);
  }

  50% {
    transform: translateY(-80px) rotate(180deg) scale(0.9);
  }

  75% {
    transform: translateY(-40px) rotate(270deg) scale(1.1);
  }
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 50px 80px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 120px 40px, rgba(99, 102, 241, 0.3), transparent),
    radial-gradient(1px 1px at 200px 120px, rgba(59, 130, 246, 0.2), transparent),
    radial-gradient(2px 2px at 300px 60px, rgba(245, 158, 11, 0.2), transparent);
  background-repeat: repeat;
  background-size: 400px 200px;
  animation: footerParticleMove 30s linear infinite;
  opacity: 0.4;
}

@keyframes footerParticleMove {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  100% {
    transform: translateX(-400px) translateY(-200px);
  }
}

.footer-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: footerGridMove 40s linear infinite;
  opacity: 0.3;
}

@keyframes footerGridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* Footer Main Content */
.footer-main {
  position: relative;
  z-index: 10;
  padding: var(--space-32) 0 var(--space-16);
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  align-items: start;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* Company Info Section */
.footer-about {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer-brand-name {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.contact-icon {
  width: 20px;
  color: var(--primary-color);
  font-size: var(--text-sm);
}

.contact-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--primary-color);
}

.contact-text {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Section Titles */
.footer-section-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--white);
  margin-bottom: var(--space-4);
  position: relative;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-gaming);
  border-radius: var(--radius-full);
}

/* Navigation Lists */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav-item {
  transition: transform var(--transition-fast);
}

.footer-nav-item:hover {
  transform: translateX(5px);
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  padding: var(--space-1) 0;
}

.footer-nav-link:hover {
  color: var(--primary-color);
}

.link-icon {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.footer-nav-link:hover .link-icon {
  transform: translateX(3px);
}

/* Social Section */
.footer-social-section {
  text-align: left;
}

.social-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.footer-social-links {
  display: flex;
  justify-content: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-size: var(--text-lg);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-xl);
}

.social-link:hover::before {
  opacity: 1;
}

/* Individual Social Platform Colors */
.social-link.facebook {
  color: #1877f2;
}

.social-link.facebook::before {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-link.facebook:hover {
  color: var(--white);
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.social-link.twitter {
  color: #1da1f2;
}

.social-link.twitter::before {
  background: linear-gradient(135deg, #1da1f2, #42a5f5);
}

.social-link.twitter:hover {
  color: var(--white);
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.social-link.instagram {
  color: #e4405f;
}

.social-link.instagram::before {
  background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.social-link.instagram:hover {
  color: var(--white);
  box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.social-link.linkedin {
  color: #0077b5;
}

.social-link.linkedin::before {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-link.linkedin:hover {
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 119, 181, 0.4);
}

.social-link.pinterest {
  color: #bd081c;
}

.social-link.pinterest::before {
  background: linear-gradient(135deg, #bd081c, #e60023);
}

.social-link.pinterest:hover {
  color: var(--white);
  box-shadow: 0 10px 30px rgba(189, 8, 28, 0.4);
}

.social-link.youtube {
  color: #ff0000;
}

.social-link.youtube::before {
  background: linear-gradient(135deg, #ff0000, #ff4444);
}

.social-link.youtube:hover {
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

/* Social Tooltips */
.social-tooltip {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.social-link:hover .social-tooltip {
  opacity: 1;
  bottom: -30px;
}

/* App Store Links */
.footer-app-links {
  margin-top: var(--space-6);
}

.app-links-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.app-badges {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.app-badge {
  display: block;
  transition: all var(--transition-normal);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.app-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.app-badge img {
  height: 50px;
  width: auto;
  display: block;
  transition: filter var(--transition-normal);
}

.app-badge:hover img {
  filter: brightness(1.1);
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-6) 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.copyright-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.made-with {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.heart-icon {
  color: #e74c3c;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

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

  50% {
    transform: scale(1.1);
  }
}

/* Back to Top Button */
.back-to-top-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.back-to-top-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-gaming);
  border: none;
  border-radius: var(--radius-xl);
  color: var(--white);
  font-size: var(--text-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-top-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-glow);
  background: var(--gradient-primary);
}

.back-to-top-btn:active {
  transform: translateY(-1px) scale(1.05);
}

/* Responsive Footer Design */
@media (max-width: 1200px) {
  .footer-content-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-10);
  }

  .footer-social-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: var(--space-8);
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: var(--space-24) 0 var(--space-12);
  }

  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .footer-about {
    max-width: none;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-contact-info {
    align-items: center;
  }

  .footer-nav-list {
    align-items: center;
  }

  .footer-social-links {
    gap: var(--space-3);
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .app-badges {
    gap: var(--space-3);
  }

  .app-badge img {
    height: 45px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: var(--space-20) 0 var(--space-10);
  }

  .footer-content-grid {
    gap: var(--space-6);
  }

  .footer-logo {
    flex-direction: column;
    gap: var(--space-2);
  }

  .footer-brand-name {
    font-size: var(--text-xl);
  }

  .footer-section-title {
    font-size: var(--text-lg);
  }

  .footer-social-links {
    gap: var(--space-2);
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

  .app-badges {
    flex-direction: column;
    align-items: center;
  }

  .app-badge img {
    height: 40px;
  }

  .back-to-top-btn {
    width: 45px;
    height: 45px;
    font-size: var(--text-base);
  }

  .back-to-top-container {
    bottom: var(--space-4);
    right: var(--space-4);
  }
  
  .scroll-progress-container {
    height: 3px;
  }
}

@media (max-width: 480px) {
  .scroll-progress-container {
    height: 2px;
  }
}/* =
=======================================
   MIGRATED ESSENTIAL STYLES FROM CUSTOM.CSS
======================================== */

/* Video Section Positioning Fix */
.video-one.cta-two {
  position: relative;
  z-index: 1;
}

/* Contact Form Enhancements */
.contact1-form {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 25px;
}

.contact1-form .wrap-input1 {
  width: 100%;
  margin-bottom: 15px;
}

.contact1-form .input1 {
  width: 100%;
  max-width: 100%;
}

.contact1-form .container-contact1-form-btn {
  width: 100%;
  text-align: center;
}

/* Contact Icons Styling */
.contact-one__infos-icon {
  width: 88px !important;
  height: 88px !important;
  min-width: 88px !important;
  min-height: 88px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background-image: linear-gradient(90deg, #6366f1 0%, #ec4899 100%) !important;
}

.contact-one__infos-icon i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  color: #fff !important;
  text-align: center !important;
  line-height: 1 !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Contact Info Styling */
.contact-one__infos-single {
  display: flex !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.1) !important;
  padding: 15px !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
  border-left: 4px solid var(--primary-color) !important;
  gap: 15px !important;
  backdrop-filter: blur(10px) !important;
}

.contact-one__infos-single:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

.contact-one__infos-content h3 {
  color: var(--white) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.contact-one__infos-content p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.contact-one__infos-content a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}

.contact-one__infos-content a:hover {
  color: var(--white) !important;
}

/* Footer Enhancements */
.footer-widget__links ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  padding-left: 25px !important;
}

.footer-widget__links ul li a::before {
  content: '▶' !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--primary-color) !important;
  font-size: 0.8rem !important;
  transition: all 0.3s ease !important;
  line-height: 1 !important;
}

.footer-widget__links ul li a:hover {
  color: var(--white) !important;
  transform: translateX(5px) !important;
}

.footer-widget__links ul li a:hover::before {
  transform: translateY(-50%) translateX(3px) !important;
}

/* Button Pulse Animation */
@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  }
}

/* Ensure proper z-index stacking */
section#career {
  position: relative;
  z-index: 10;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .contact-one__infos-single {
    padding: 12px !important;
    gap: 12px !important;
  }
  
  .contact-one__infos-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }
  
  .contact-one__infos-icon i {
    font-size: 18px !important;
  }
  
  .contact-one__infos-content h3 {
    font-size: 1rem !important;
  }
  
  .contact-one__infos-content p {
    font-size: 0.9rem !important;
  }
}