/* ===================================
   NETROO XCHEAT - Design System
   Premium Gaming Cheat Seller
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght:400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Colors - Dark Gaming Theme */
  --color-bg-primary: #000000;
  /* Pure Black Background */
  --color-bg-secondary: #050508;
  --color-bg-tertiary: #0a0a0f;

  /* Red and Aura Accents */
  --color-primary: #ff0044;
  --color-primary-glow: rgba(255, 0, 68, 0.5);
  --color-secondary: #ff006e;
  --color-secondary-glow: rgba(255, 0, 110, 0.5);
  --color-accent: #ff5588;
  --color-accent-glow: rgba(255, 85, 136, 0.5);

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #ffccdd;
  --color-text-muted: #9b6b7a;

  /* UI Elements */
  --color-border: rgba(255, 0, 68, 0.15);
  --color-border-bright: rgba(255, 0, 68, 0.4);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(0, 240, 255, 0.05) 0%, rgba(191, 0, 255, 0.05) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Typography */
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--color-primary-glow);
  --shadow-glow-secondary: 0 0 20px var(--color-secondary-glow);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* === RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 100px;
  /* Added empty space at the end */
}

/* Cinematic Vignette Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 100;
}

/* Animated Background Grid */
.grid-background {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 0, 68, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 68, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  animation: background-glitch 3s infinite;
}

/* Logo Background Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('logo.jpeg') no-repeat center center/contain;
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  animation: background-glitch 3s infinite;
}

@keyframes background-glitch {
  0% {
    opacity: 0.1;
    transform: translate(0, 0);
    filter: hue-rotate(0deg);
  }

  10% {
    opacity: 0.15;
    transform: translate(-2px, 2px);
    filter: hue-rotate(45deg);
  }

  20% {
    opacity: 0.08;
    transform: translate(2px, -2px);
    filter: brightness(1.2);
  }

  30% {
    opacity: 0.12;
    transform: translate(-3px, -1px);
    filter: hue-rotate(-45deg);
  }

  40% {
    opacity: 0.1;
    transform: translate(3px, 1px);
    filter: contrast(1.5);
  }

  50% {
    opacity: 0.14;
    transform: translate(-1px, 3px);
    filter: hue-rotate(90deg);
  }

  60% {
    opacity: 0.09;
    transform: translate(1px, -3px);
    filter: brightness(0.8);
  }

  70% {
    opacity: 0.11;
    transform: translate(-2px, -2px);
    filter: hue-rotate(-90deg);
  }

  80% {
    opacity: 0.13;
    transform: translate(2px, 2px);
    filter: saturate(2);
  }

  90% {
    opacity: 0.1;
    transform: translate(-4px, 0px);
    filter: hue-rotate(180deg);
  }

  100% {
    opacity: 0.1;
    transform: translate(0, 0);
    filter: hue-rotate(0deg);
  }
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* === LAYOUT === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}

section {
  padding: var(--spacing-section) 0;
  position: relative;
  overflow: hidden;
}

/* === HEADER & NAVIGATION === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: var(--shadow-md);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: var(--spacing-xs);
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-actions {
    gap: var(--spacing-xs);
  }
}

.nav-actions {
  gap: var(--spacing-xs);
}
}

/* Language Toggle Button */


.lang-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--color-primary-glow),
    0 0 40px var(--color-primary-glow),
    0 5px 30px rgba(0, 0, 0, 0.3);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--color-primary-glow);
}

.btn-prim.card:hover {
  transform: translateY(-10px);
  border-color: var(--color-border-bright);
  box-shadow: 0 0 20px var(--color-primary-glow),
    0 0 40px var(--color-primary-glow),
    0 5px 30px rgba(0, 0, 0, 0.3);
}

.discord-btn {
  background: linear-gradient(135deg, #5865F2, #4752C4);
  color: white;
}

.discord-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.5),
    0 0 40px rgba(88, 101, 242, 0.3),
    0 5px 30px rgba(0, 0, 0, 0.3);
}

.telegram-btn i,
.discord-btn i {
  font-size: 1.5rem;
  margin-right: 0.8rem;
}

/* Card Aura Glow */
.card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(30px);
}

.card:hover::before {
  opacity: 0.4;
}

/* Feature Cards */
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-glow);
}

.btn-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* === HERO SECTION === */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* === PARTICLE SYSTEM === */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: particleFloat var(--duration) linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) translateX(var(--drift)) scale(1);
    opacity: 0;
  }
}

.particle.glow {
  box-shadow: 0 0 20px var(--color-primary-glow),
    0 0 40px var(--color-primary-glow),
    0 0 60px var(--color-primary-glow);
}

/* === AURA EFFECTS === */
@keyframes auraGlow {

  0%,
  100% {
    box-shadow: 0 0 20px var(--color-primary-glow),
      0 0 40px var(--color-primary-glow),
      0 0 60px var(--color-primary-glow);
  }

  50% {
    box-shadow: 0 0 30px var(--color-secondary-glow),
      0 0 60px var(--color-secondary-glow),
      0 0 90px var(--color-secondary-glow);
  }
}

.aura-pulse {
  animation: auraGlow 3s ease-in-out infinite;
}

/* Pulsing background aura - Enhanced for "Electric" Lighting */
@keyframes auraPulse {

  0%,
  100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(60px) contrast(1.2);
  }

  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.15);
    filter: blur(80px) contrast(1.5);
  }
}

/* Lightning Flash Effect - Enhanced */
@keyframes lightningFlash {

  0%,
  95%,
  98%,
  100% {
    opacity: 0;
  }

  96%,
  99% {
    opacity: 0.2;
  }
}

/* Red Thunder Animation */
@keyframes thunderRed {

  0%,
  80%,
  84%,
  88%,
  92%,
  100% {
    opacity: 0;
    transform: scale(1);
    filter: blur(20px);
  }

  82%,
  90% {
    opacity: 0.15;
    transform: scale(1.1);
    filter: blur(40px) brightness(1.5);
  }
}

/* Blue Thunder Animation */
@keyframes thunderBlue {

  0%,
  75%,
  79%,
  83%,
  87%,
  91%,
  100% {
    opacity: 0;
    transform: scale(1);
    filter: blur(20px);
  }

  77%,
  85%,
  89% {
    opacity: 0.15;
    transform: scale(1.1);
    filter: blur(40px) brightness(1.5);
  }
}

.thunder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Behind content, above grid */
  opacity: 0;
}

.thunder-red {
  background: radial-gradient(circle at 20% 30%, rgba(255, 0, 68, 0.4) 0%, transparent 60%);
  animation: thunderRed 9s infinite;
}

.thunder-blue {
  background: radial-gradient(circle at 80% 70%, rgba(0, 110, 255, 0.4) 0%, transparent 60%);
  animation: thunderBlue 13s infinite;
}

.section-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-primary) 0%, var(--color-primary-glow) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: auraPulse 5s ease-in-out infinite;
  filter: blur(60px);
}

/* Lightning Layer */
.section-aura::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #fff 0%, transparent 70%);
  opacity: 0;
  animation: lightningFlash 8s infinite;
  pointer-events: none;
}

/* Aura variations for different sections */
#hero .section-aura {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--color-primary) 0%, var(--color-secondary) 20%, var(--color-primary-glow) 50%, transparent 75%);
}

#features .section-aura {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-secondary) 0%, var(--color-primary) 30%, var(--color-secondary-glow) 60%, transparent 75%);
  animation-delay: -1s;
}

#how-to-order .section-aura {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--color-accent) 0%, var(--color-primary) 30%, var(--color-accent-glow) 60%, transparent 75%);
  animation-delay: -2.5s;
}

#contact .section-aura {
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, var(--color-primary) 0%, var(--color-accent) 40%, var(--color-primary-glow) 70%, transparent 75%);
  animation-delay: -4s;
}

/* === SECTIONS === */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title {
  margin-bottom: var(--spacing-md);
  text-shadow: 0 0 40px var(--color-primary-glow);
  position: relative;
}

/* === GLITCH EFFECT === */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-primary);
  /* Match background to cover the original text */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--color-primary);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
  background: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: var(--gradient-primary);
}

.glitch::after {
  left: -2px;
  text-shadow: 2px 0 var(--color-secondary);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
  background: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: var(--gradient-primary);
}

@keyframes glitch-anim-1 {
  0% {
    clip-path: inset(20% 0 30% 0);
  }

  20% {
    clip-path: inset(60% 0 10% 0);
  }

  40% {
    clip-path: inset(40% 0 50% 0);
  }

  60% {
    clip-path: inset(80% 0 5% 0);
  }

  80% {
    clip-path: inset(10% 0 70% 0);
  }

  100% {
    clip-path: inset(30% 0 20% 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip-path: inset(15% 0 35% 0);
  }

  20% {
    clip-path: inset(55% 0 15% 0);
  }

  40% {
    clip-path: inset(45% 0 45% 0);
  }

  60% {
    clip-path: inset(75% 0 10% 0);
  }

  80% {
    clip-path: inset(5% 0 75% 0);
  }

  100% {
    clip-path: inset(35% 0 15% 0);
  }
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* === CARDS === */
.card {
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
  pointer-events: none;
}

.card:hover {
  border-color: var(--color-border-bright);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card:hover::before {
  opacity: 0.05;
}

/* === GRID LAYOUTS === */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* === FEATURES SECTION === */
.feature-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  filter: drop-shadow(0 0 10px var(--color-primary-glow));
}

.feature-card h3 {
  color: var(--color-primary);
}

/* === PRODUCTS SECTION === */
.product-card {
  text-align: center;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  border: 2px solid var(--color-border);
  transition: var(--transition-normal);
}

.product-card:hover .product-image {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px var(--color-primary-glow);
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.product-price {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--color-accent);
  margin: var(--spacing-md) 0;
}

.product-features {
  list-style: none;
  margin: var(--spacing-md) 0;
  text-align: left;
}

.product-features li {
  padding: var(--spacing-xs) 0;
  color: var(--color-text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* === PRICING SECTION === */
.pricing-card {
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(255, 0, 68, 0.2);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 0 30px var(--color-primary-glow);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--gradient-primary);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-title {
  font-size: 1.5rem;
  margin-top: var(--spacing-sm);
  color: var(--color-text-primary);
}

.pricing-price {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  margin: var(--spacing-dark) 0;
  text-shadow: 0 0 20px var(--color-primary-glow);
}

.pricing-features {
  list-style: none;
  margin: var(--spacing-md) 0;
  padding: 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: var(--spacing-xs) 0;
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* === HOW TO ORDER SECTION === */
.steps {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
}

.step {
  text-align: center;
  max-width: 300px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-glow);
}

.step h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

/* === FAQ SECTION === */
.faq-item {
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-border-bright);
}

.faq-question {
  padding: var(--spacing-md);
  background: var(--gradient-card);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  transition: var(--transition-fast);
  color: var(--color-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background: var(--color-bg-secondary);
}

.faq-answer-content {
  padding: var(--spacing-md);
  color: var(--color-text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* === CONTACT SECTION === */
#contact {
  text-align: center;
  background: var(--gradient-hero);
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition-normal);
}

.contact-btn i {
  font-size: 1.5rem;
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%);
  color: white;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
}

.telegram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--color-primary-glow),
    0 0 40px var(--color-primary-glow),
    0 5px 30px rgba(0, 0, 0, 0.3);
}

/* === FOOTER === */
footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 1.3rem;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-xl) 0;
    transition: var(--transition-normal);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Language Toggle Button */
  .lang-toggle {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--color-primary);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .lang-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--color-primary-glow),
      0 0 40px var(--color-primary-glow),
      0 5px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-secondary);
  }

  /* RTL Support */
  html[dir="rtl"] {
    text-align: right;
  }

  html[dir="rtl"] .nav-links {
    direction: rtl;
  }

  html[dir="rtl"] .btn-group {
    direction: rtl;
  }

  html[dir="rtl"] .product-features li::before,
  html[dir="rtl"] .footer-links li {
    right: 0;
    left: auto;
  }

  html[dir="rtl"] .product-features li {
    padding-right: 1.5rem;
    padding-left: 0;
  }

  html[dir="rtl"] .footer-content {
    direction: rtl;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-1 {
  margin-top: var(--spacing-sm);
}

.mt-2 {
  margin-top: var(--spacing-md);
}

.mt-3 {
  margin-top: var(--spacing-lg);
}

.mb-1 {
  margin-bottom: var(--spacing-sm);
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mb-3 {
  margin-bottom: var(--spacing-lg);
}

/* === MUSIC CONTROL === */
.music-toggle {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.music-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--color-primary-glow), 0 0 10px var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.music-toggle i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .music-toggle {
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}
}

/* === LOADING SCREEN === */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050508;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  /* CRT Scanline Effect */
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06)),
    /* Cyber Grid */
    repeating-linear-gradient(0deg, transparent 0, transparent 49px, rgba(255, 0, 68, 0.1) 50px),
    repeating-linear-gradient(90deg, transparent 0, transparent 49px, rgba(255, 0, 68, 0.1) 50px),
    #050508;
  background-size: 100% 2px, 3px 100%, 100px 100px, 100px 100px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 0 0, 0 0, 0 100px, 100px 0;
  }
}

/* === Loading Screen REMOVED === */

#main-site-content {
  opacity: 1;
  display: block;
}

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {

  /* Mobile Navigation */
  .menu-toggle {
    display: flex;
    /* Ensure it is visible */
  }

  /* Grid Stacking */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    /* Force single column */
  }

  /* Aura Resizing */
  .section-aura,
  #hero::before {
    width: 100% !important;
    height: 100% !important;
    max-width: 300px;
    max-height: 300px;
  }

  /* Pricing Card Spacing */
  .pricing-card.popular {
    transform: scale(1);
    margin: 1rem 0;
  }

  .pricing-card.popular:hover {
    transform: scale(1.02);
  }

  /* Steps Stacking */
  .steps {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-buttons {
    flex-direction: column;
    width: 100%;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}