/* ===== GHOSTFI WEBSITE - DARK CYBER THEME ===== */

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Colors - Modern Cyber Theme */
  --primary-bg: #0a0a0f;
  --secondary-bg: #12121a;
  --card-bg: #181a29;
  --glass-bg: rgba(15, 15, 25, 0.6);
  --glass-bg-dark: rgba(13, 13, 19, 0.4);
  --surface-bg: var(--secondary-bg);

  /* Accent Colors - Neon Cyber */
  --accent-primary: #00ff88;
  --accent-secondary: #ff0080;
  --accent-tertiary: #0088ff;
  --accent-warning: #ffaa00;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b8bcc8;
  --text-muted: #6b7280;
  --text-accent: var(--accent-primary);

  /* Status Colors */
  --success: #00ff88;
  --danger: #ff4757;
  --warning: #ffaa00;
  --info: #0088ff;

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 255, 136, 0.3);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-tertiary)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-primary)
  );
  --gradient-cyber: linear-gradient(
    135deg,
    #00ff88 0%,
    #0088ff 50%,
    #ff0080 100%
  );
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--primary-bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    135deg,
    var(--primary-bg) 0%,
    var(--secondary-bg) 50%,
    #16213e 100%
  );
}

.particles {
  display: none;
}

.matrix-rain {
  display: none;
}

.floating-coins {
  display: none;
}

.gradient-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.gradient-orbs::before,
.gradient-orbs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  animation: pulse 8s infinite ease-in-out;
}

.gradient-orbs::before {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.gradient-orbs::after {
  width: 400px;
  height: 400px;
  background: var(--gradient-secondary);
  bottom: 20%;
  right: 10%;
  animation-delay: 4s;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.version-badge {
  background: var(--gradient-primary);
  color: var(--primary-bg);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  margin-left: 0.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-primary);
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

.nav-link i {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }

  .nav-menu {
    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;
    align-items: center;
    padding: 2rem 0;
    transition: left 0.3s ease;
    z-index: 999;
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.active {
    left: 0;
    display: flex;
  }

  .nav-link {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    justify-content: center;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-accent);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.badge-logo {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.badge-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-primary);
}

.badge-pulse {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

.title-line {
  display: block;
}

.gradient-text {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-main-logo {
  width: 200px;
  height: 200px;
  border-radius: 40px;
  filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-main-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.8));
}

.hero-logo-container::before {
  display: none;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.highlight {
  color: var(--accent-primary);
  font-weight: 600;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.feature-pill:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.feature-pill i {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 0.25rem;
}

.stat-value i {
  width: 20px;
  height: 20px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-bg);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--glass-bg);
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-primary:hover .btn-glow {
  left: 100%;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-item i {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
}

.hero-community h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.community-links {
  display: flex;
  gap: 1rem;
}

.community-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.community-link:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--border-accent);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* ===== APP GALLERY CONTAINER ===== */
.app-gallery-container {
  width: 100%;
  max-width: 800px;
  position: relative;
  margin: 0 auto;
}

.app-gallery {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.95);
  filter: blur(2px);
}

.gallery-image.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Mobile optimizations for gallery */
@media (max-width: 768px) {
  .app-gallery-container {
    max-width: 100%;
    margin: 1rem 0;
  }

  .app-gallery {
    height: 280px;
    border-radius: 16px;
    margin: 0 auto;
  }

  .gallery-image {
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
  }

  .hero-main-logo {
    width: 160px;
    height: 160px;
    border-radius: 32px;
  }
}

@media (max-width: 480px) {
  .app-gallery-container {
    margin: 0.75rem 0;
    padding: 0 0.5rem;
  }

  .app-gallery {
    height: 200px;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
  }

  .gallery-image {
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
  }

  .hero-main-logo {
    width: 140px;
    height: 140px;
    border-radius: 28px;
  }

  .hero-community h4 {
    justify-content: center;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .app-gallery-container {
    margin: 0.5rem 0;
    padding: 0 0.25rem;
  }

  .app-gallery {
    height: 160px;
    border-radius: 6px;
  }

  .gallery-image {
    border-radius: 6px;
  }
  .hero-community h4 {
    justify-content: center;
  }
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.dashboard-logo {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent-primary);
  font-weight: 600;
}

.status-indicator {
  width: 8px;
  height: 8px;
  color: var(--accent-primary);
  animation: pulse 2s infinite;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.token-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.token-card:hover {
  background: rgba(0, 255, 136, 0.05);
  transform: translateY(-2px);
}

.token-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.token-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.token-score {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.score-high {
  background: rgba(0, 255, 136, 0.2);
  color: var(--accent-primary);
}

.score-medium {
  background: rgba(255, 170, 0, 0.2);
  color: var(--accent-warning);
}

.score-low {
  background: rgba(255, 71, 87, 0.2);
  color: var(--danger);
}

.token-price {
  font-weight: 700;
  font-size: 0.9rem;
}

.positive {
  color: var(--success);
}

.negative {
  color: var(--danger);
}

.dashboard-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ===== SECTIONS ===== */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-primary);
}

.section-title i {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent-primary);
}

/* ===== VALUE PROPOSITION ===== */
.value-prop {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.value-prop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.value-icon i {
  width: 40px;
  height: 40px;
  color: var(--primary-bg);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.value-card:hover .card-glow {
  opacity: 0.1;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-showcase.reverse {
  direction: rtl;
}

.feature-showcase.reverse > * {
  direction: ltr;
}

.feature-content {
  z-index: 2;
}

.feature-badge {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.feature-badge i {
  width: 30px;
  height: 30px;
  color: var(--primary-bg);
}

.feature-showcase h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.feature-item i {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== MODERN FEATURE SHOWCASE ===== */
.feature-showcase-modern {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-showcase-modern:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-showcase-modern.reverse .feature-content-grid {
  direction: rtl;
}

.feature-showcase-modern.reverse .feature-content-grid > * {
  direction: ltr;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-badge-modern {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}

.feature-badge-modern i {
  width: 35px;
  height: 35px;
  color: var(--primary-bg);
}

.feature-title-section h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-title-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

.feature-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-screenshot {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  cursor: zoom-in;
}

.feature-screenshot:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* ===== SCREENSHOT ZOOM MODAL ===== */
.screenshot-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 2rem;
  box-sizing: border-box;
}

.screenshot-modal.active {
  opacity: 1;
  visibility: visible;
}

.screenshot-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.screenshot-modal-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  object-fit: contain;
  transition: transform 0.3s ease;
}

.screenshot-modal-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  font-size: 1.2rem;
}

.screenshot-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.screenshot-zoom-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.screenshot-zoom-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  backdrop-filter: blur(20px);
  opacity: 0;
  animation: fadeInUp 0.5s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.screenshot-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.live-indicator-overlay {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border-accent);
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.8rem;
}

.status-indicator-overlay {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border-accent);
}

.status-active {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 0.8rem;
}

.chart-indicator-overlay {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.price-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.ticker-symbol {
  color: var(--text-secondary);
  font-weight: 500;
}

.ticker-price {
  color: var(--text-primary);
  font-weight: 700;
}

.ticker-change {
  font-weight: 600;
  font-size: 0.8rem;
}

.ticker-change.positive {
  color: var(--success);
}

.ticker-change.negative {
  color: var(--danger);
}

.feature-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Removed fake stats styling - using only real screenshots now */

/* ===== SCORING SYSTEM VISUAL ===== */
.scoring-system-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.scoring-components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.score-component-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.score-component-card:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.component-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-glow);
}

.component-icon i {
  width: 24px;
  height: 24px;
  color: var(--primary-bg);
}

.component-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.component-weight {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.scoring-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.score-display {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.score-circle {
  width: 100px;
  height: 100px;
  background: conic-gradient(
    var(--accent-primary) 87%,
    var(--border-color) 87%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.score-circle::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  background: var(--primary-bg);
  border-radius: 50%;
}

.score-number {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.score-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.score-info p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ===== PROTECTION PENALTIES SYSTEM ===== */
.protection-penalties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.penalties-column h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-accent);
}

.penalties-column h4 i {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

.penalty-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.penalty-item:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--border-accent);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.penalty-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.penalty-icon i {
  width: 20px;
  height: 20px;
  color: var(--primary-bg);
}

.penalty-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.penalty-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.protection-explanation {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.explanation-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 136, 255, 0.1);
  border: 1px solid rgba(0, 136, 255, 0.3);
  border-radius: 16px;
  max-width: 600px;
  backdrop-filter: blur(20px);
}

.explanation-card i {
  width: 24px;
  height: 24px;
  color: var(--accent-tertiary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.explanation-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.explanation-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Penalty System */
@media (max-width: 1024px) {
  .protection-penalties-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .penalties-column h4 {
    font-size: 1.1rem;
  }

  .penalty-item {
    padding: 1rem;
  }

  .penalty-icon {
    width: 36px;
    height: 36px;
  }

  .penalty-icon i {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .penalty-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  .penalty-content h5 {
    font-size: 0.95rem;
  }

  .penalty-content p {
    font-size: 0.85rem;
  }

  .explanation-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
  }

  .explanation-content h4 {
    font-size: 1rem;
  }

  .explanation-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .penalties-column h4 {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .penalty-item {
    padding: 0.75rem;
  }

  .penalty-icon {
    width: 32px;
    height: 32px;
  }

  .penalty-icon i {
    width: 16px;
    height: 16px;
  }

  .penalty-content h5 {
    font-size: 0.9rem;
  }

  .penalty-content p {
    font-size: 0.8rem;
  }

  .explanation-card {
    padding: 1rem;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .scoring-components-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .score-component-card {
    padding: 1rem;
  }

  .component-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }

  .component-icon i {
    width: 20px;
    height: 20px;
  }

  .component-info h4 {
    font-size: 0.9rem;
  }

  .component-weight {
    font-size: 1rem;
  }

  .score-display {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .score-circle {
    width: 80px;
    height: 80px;
  }

  .score-circle::before {
    width: 60px;
    height: 60px;
  }

  .score-number {
    font-size: 1.5rem;
  }

  .protection-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .protection-card {
    padding: 1rem;
  }

  .protection-icon-modern {
    width: 40px;
    height: 40px;
  }

  .protection-icon-modern i {
    width: 20px;
    height: 20px;
  }

  .protection-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .protection-stat {
    padding: 1rem;
  }

  .protection-stat .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .scoring-components-grid {
    grid-template-columns: 1fr;
  }

  .score-component-card {
    padding: 0.75rem;
  }

  .component-info h4 {
    font-size: 0.85rem;
  }

  .component-weight {
    font-size: 0.9rem;
  }

  .protection-card {
    padding: 0.75rem;
  }

  .protection-card h4 {
    font-size: 1rem;
  }

  .protection-card p {
    font-size: 0.85rem;
  }

  .protection-guarantee {
    padding: 1rem;
    font-size: 1rem;
  }
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  font-size: 1rem;
  color: var(--text-secondary);
}

.highlight-item:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--border-accent);
  transform: translateX(10px);
  color: var(--text-primary);
}

.highlight-item i {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* Responsive Design for Modern Features */
@media (max-width: 1200px) {
  .feature-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-showcase-modern.reverse .feature-content-grid {
    direction: ltr;
  }

  .feature-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .feature-showcase-modern {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .feature-badge-modern {
    width: 60px;
    height: 60px;
  }

  .feature-badge-modern i {
    width: 30px;
    height: 30px;
  }

  .feature-title-section h3 {
    font-size: 1.8rem;
  }

  .feature-title-section p {
    font-size: 1rem;
  }

  .feature-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .highlight-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .feature-showcase-modern {
    padding: 1rem;
  }

  .feature-header {
    gap: 0.75rem;
  }

  .feature-badge-modern {
    width: 50px;
    height: 50px;
  }

  .feature-badge-modern i {
    width: 24px;
    height: 24px;
  }

  .feature-title-section h3 {
    font-size: 1.5rem;
  }

  .feature-title-section p {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .highlight-item {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .highlight-item i {
    width: 16px;
    height: 16px;
  }
}

/* ===== FEATURE VISUALS ===== */
.radar-demo {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.radar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.radar-status {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.radar-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radar-token {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  animation: slideInLeft 0.5s ease-out;
}

.radar-token:hover {
  background: rgba(0, 255, 136, 0.05);
  transform: translateX(10px);
  border-color: var(--border-accent);
}

.token-symbol {
  font-weight: 600;
  font-size: 0.9rem;
}

.token-change {
  font-weight: 700;
  font-size: 0.9rem;
}

.scoring-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.score-circle {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-primary) 87%,
    var(--border-color) 87%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  /* animation: rotate 10s linear infinite; - DISABLED SPINNING */
}

.score-circle::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: var(--primary-bg);
  border-radius: 50%;
}

.score-value {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.score-label {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: -0.5rem;
}

.score-breakdown-visual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breakdown-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.scoring-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.score-component {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.score-component:hover {
  background: rgba(0, 255, 136, 0.05);
  border-color: var(--border-accent);
  transform: translateX(5px);
}

.component-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  font-weight: 500;
}

.component-weight {
  font-weight: 700;
  color: var(--accent-primary);
  min-width: 40px;
}

.component-bar {
  flex: 1;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.component-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: width 2s ease-out;
  animation: fillBar 2s ease-out;
}

.penalty-system {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  margin-top: 1rem;
}

.penalty-system h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.protection-families {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.protection-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.protection-item:hover {
  background: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.3);
  transform: translateY(-2px);
}

.protection-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.protection-icon i {
  width: 20px;
  height: 20px;
  color: var(--primary-bg);
}

.protection-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

.penalty-summary {
  text-align: center;
  padding: 0.75rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  color: var(--accent-primary);
  font-size: 0.9rem;
}

.trading-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.trading-modes-full-width {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.trading-mode {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.trading-mode:hover {
  background: rgba(0, 255, 136, 0.05);
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mode-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mode-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mode-icon i {
  width: 20px;
  height: 20px;
  color: var(--primary-bg);
}

.mode-tag {
  background: rgba(0, 255, 136, 0.2);
  color: var(--accent-primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  margin-left: auto;
}

.mode-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mode-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.mode-feature i {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.trading-guarantee {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  color: var(--accent-primary);
  font-weight: 700;
  backdrop-filter: blur(20px);
}

.trading-interface {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
}

.interface-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.interface-status {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.interface-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trade-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.trade-item:hover {
  background: rgba(0, 255, 136, 0.05);
  transform: translateY(-2px);
}

.trade-symbol {
  font-weight: 600;
  font-size: 0.9rem;
}

.trade-action {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.trade-action.buy {
  background: rgba(0, 255, 136, 0.2);
  color: var(--accent-primary);
}

.trade-action.sell {
  background: rgba(255, 170, 0, 0.2);
  color: var(--accent-warning);
}

.trade-action.monitor {
  background: rgba(0, 136, 255, 0.2);
  color: var(--accent-tertiary);
}

.trade-amount {
  font-weight: 600;
  font-size: 0.9rem;
}

.trade-status.success {
  color: var(--success);
}

.trade-status.pending {
  color: var(--accent-warning);
  animation: pulse 2s infinite;
}

/* ===== AI AGENT SUPERPOWERS SECTION ===== */
.ai-superpowers {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
}

.ai-superpowers::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  z-index: 2;
}

.ai-superpowers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(0, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 0, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.ai-superpowers .container {
  position: relative;
  z-index: 1;
}

.ai-superpowers h2 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 80px;
  background: linear-gradient(135deg, #00ffff, #ff00ff, #ffff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ai-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

/* AI Features Section */
.ai-features-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 255, 255, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.4);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  color: #00ffff;
  backdrop-filter: blur(20px);
  width: fit-content;
  animation: pulse 3s ease-in-out infinite;
}

.ai-capabilities h3 {
  font-size: 2rem;
  color: #00ffff;
  margin-bottom: 30px;
  font-weight: 600;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.capability-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.capability-card:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.capability-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00ffff, #0080ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.capability-icon i {
  width: 20px;
  height: 20px;
  color: white;
}

.capability-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.capability-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ai-example-showcase h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: #0080ff;
  margin-bottom: 20px;
}

.example-card {
  background: linear-gradient(
    135deg,
    rgba(0, 100, 255, 0.1),
    rgba(0, 255, 255, 0.1)
  );
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(20px);
}

.example-quote {
  font-style: italic;
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.example-results {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.result-metric {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* AI Engines Section */
.ai-engines-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ai-engines-section h3 {
  font-size: 1.8rem;
  color: #00ffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.ai-engines-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.ai-engine-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.ai-engine-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

.engine-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.engine-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.engine-icon.gemini {
  background: linear-gradient(135deg, #4285f4, #34a853);
}

.engine-icon.openai {
  background: linear-gradient(135deg, #00d4aa, #00a693);
}

.engine-icon.claude {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.engine-icon i {
  width: 24px;
  height: 24px;
  color: white;
}

.engine-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.engine-status {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.engine-status:not(.coming-soon) {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
}

.engine-status.coming-soon {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
}

.ai-engine-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* AI Brain Visual */
.ai-brain-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.ai-brain-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brain-core {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffff, #0080ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  animation: brainPulse 3s ease-in-out infinite;
}

.brain-core i {
  width: 40px;
  height: 40px;
  color: white;
}

.brain-rings {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.brain-ring {
  position: absolute;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  animation: brainRing 4s linear infinite;
}

.brain-ring.ring-1 {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  animation-delay: 0s;
}

.brain-ring.ring-2 {
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  animation-delay: 1.3s;
}

.brain-ring.ring-3 {
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  animation-delay: 2.6s;
}

.brain-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle.particle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle.particle-2 {
  top: 30%;
  right: 25%;
  animation-delay: 1s;
}

.particle.particle-3 {
  bottom: 25%;
  left: 30%;
  animation-delay: 2s;
}

.particle.particle-4 {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.ai-insights-live {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 300px;
}

.insight-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 10px;
  color: #e0e0e0;
  font-size: 0.9rem;
  backdrop-filter: blur(20px);
  animation: insightFade 4s ease-in-out infinite;
}

.insight-notification:nth-child(1) {
  animation-delay: 0s;
}
.insight-notification:nth-child(2) {
  animation-delay: 1.3s;
}
.insight-notification:nth-child(3) {
  animation-delay: 2.6s;
}

.insight-notification i {
  width: 16px;
  height: 16px;
  color: #00ffff;
  flex-shrink: 0;
}

/* AI Animations */
@keyframes brainPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes brainRing {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg) scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 1;
  }
}

@keyframes insightFade {
  0%,
  80%,
  100% {
    opacity: 0.7;
    transform: translateX(0);
  }
  20%,
  60% {
    opacity: 1;
    transform: translateX(5px);
  }
}

/* Responsive Design for AI Section */
@media (max-width: 1200px) {
  .ai-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ai-superpowers h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .ai-superpowers h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .ai-brain-visual {
    width: 150px;
    height: 150px;
  }

  .brain-core {
    width: 60px;
    height: 60px;
  }

  .brain-core i {
    width: 30px;
    height: 30px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-reverse {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

@keyframes matrix {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fillBar {
  0% {
    width: 0%;
  }
  100% {
    width: var(--target-width, 100%);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (max-width: 1400px) {
  .hero-container,
  .feature-showcase,
  .ai-content-grid {
    max-width: 1200px;
  }
}

/* Desktop/Tablet */
@media (max-width: 1200px) {
  .hero-container,
  .feature-showcase,
  .ai-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-showcase.reverse {
    direction: ltr;
  }

  .ai-superpowers h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
  }

  .trading-modes {
    grid-template-columns: 1fr;
  }

  .security-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vs-divider {
    order: 2;
    padding: 1rem 0;
  }

  .download-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-container {
    padding: 1rem;
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .community-links {
    flex-direction: column;
    align-items: center;
  }

  .hero-main-logo {
    width: 100px;
    height: 100px;
  }

  /* Sections */
  .section-title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  /* Features */
  .features {
    padding: 80px 0;
  }

  .feature-showcase {
    gap: 2rem;
  }

  .feature-showcase h3 {
    font-size: 1.5rem;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  /* AI Section */
  .ai-superpowers {
    padding: 80px 0;
  }

  .ai-superpowers h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .ai-content-grid {
    gap: 40px;
  }

  .ai-brain-visual {
    width: 150px;
    height: 150px;
  }

  .brain-core {
    width: 60px;
    height: 60px;
  }

  .brain-core i {
    width: 30px;
    height: 30px;
  }

  /* Download Section */
  .download-grid-main {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .start-steps {
    grid-template-columns: 1fr 1fr;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  /* Base */
  .container {
    padding: 0 1rem;
  }

  /* Navigation */
  .nav-container {
    padding: 0.75rem 1rem;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .logo-image {
    width: 32px;
    height: 32px;
  }

  /* Security Section - Simple single column on mobile */
  .security-section {
    padding: 60px 0;
    overflow-x: hidden;
  }

  .security-section .section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    text-align: center;
    line-height: 1.2;
  }

  .security-section .section-title i {
    width: 1.5rem;
    height: 1.5rem;
  }

  .security-comparison {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .vs-divider {
    display: none !important;
  }

  .security-column {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
  }

  .security-column h3 {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .security-column h3 i {
    width: 1.5rem;
    height: 1.5rem;
  }

  .security-list {
    gap: 0.75rem;
  }

  .security-item {
    padding: 1rem;
    font-size: 0.85rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-radius: 12px;
    margin-bottom: 0.75rem;
  }

  .security-item i {
    width: 18px;
    height: 18px;
    margin-bottom: 0.25rem;
  }

  .security-item span {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
  }

  .security-guarantee {
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 16px;
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-accent);
  }

  .guarantee-content h3 {
    font-size: 1.1rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .guarantee-content h3 i {
    width: 1.5rem;
    height: 1.5rem;
  }

  .flow-comparison {
    gap: 1.5rem;
  }

  .flow-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
  }

  .flow-item h4 {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .flow-item h4 i {
    width: 1.2rem;
    height: 1.2rem;
  }

  .flow-steps {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .flow-steps span {
    padding: 0.75rem;
    text-align: center;
    word-wrap: break-word;
    max-width: 100%;
    font-size: 0.85rem;
    background: var(--glass-bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
  }

  .flow-steps i {
    color: var(--accent-primary);
    margin: 0.5rem 0;
  }

  /* Footer - FORCE Single column on mobile */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
    text-align: center;
    grid-template-columns: none !important;
  }

  .footer-brand {
    order: 1;
    margin-bottom: 1rem;
  }

  .footer-links {
    order: 2;
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
    grid-template-columns: none !important;
  }

  .footer-section {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-section a {
    font-size: 0.95rem;
    text-align: center;
    display: block;
    margin: 0.5rem 0;
  }

  .partner-item {
    margin: 0 auto 0.5rem;
    max-width: 250px;
    display: flex;
    justify-content: center;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .footer-bottom p {
    font-size: 0.9rem;
    text-align: center;
  }

  /* Mobile Navigation Menu */
  .nav-menu {
    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;
    align-items: center;
    padding: 2rem 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Hero Section */
  .hero {
    padding: 80px 0 40px;
  }

  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    order: 1;
    display: flex;
    flex-direction: column;
  }

  /* Reorder hero content elements on mobile */
  .hero-badge {
    order: 1;
  }

  .hero-logo-container {
    order: 2;
  }

  .hero-title {
    order: 3;
  }

  .hero-subtitle {
    order: 4;
  }

  .hero-visual {
    order: 0;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-features {
    order: 6;
  }

  .hero-stats {
    order: 7;
  }

  .hero-actions {
    order: 8;
  }

  .hero-trust {
    order: 9;
  }

  .hero-community {
    order: 10;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    justify-content: center;
    gap: 0.75rem;
  }

  .feature-pill {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .hero-actions {
    gap: 0.75rem;
    width: 100%;
    flex-direction: column;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
    width: 100%;
  }

  .hero-trust {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
  }

  .trust-item {
    font-size: 0.85rem;
  }

  .hero-main-logo {
    width: 80px;
    height: 80px;
  }

  .app-gallery-container {
    max-width: 100%;
  }

  .app-gallery {
    height: 200px;
  }

  /* Sections */
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: 2rem;
  }

  .section-title i {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Value Proposition */
  .value-prop {
    padding: 60px 0;
  }

  .value-card {
    padding: 1.25rem;
    text-align: center;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
  }

  .value-icon i {
    width: 30px;
    height: 30px;
  }

  .value-card h3 {
    font-size: 1.25rem;
  }

  /* Features */
  .features {
    padding: 60px 0;
  }

  .feature-showcase {
    gap: 1.5rem;
  }

  .feature-badge {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
  }

  .feature-badge i {
    width: 24px;
    height: 24px;
  }

  .feature-showcase h3 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .feature-list {
    gap: 0.75rem;
  }

  .feature-item {
    font-size: 0.95rem;
  }

  .radar-demo,
  .scoring-visual,
  .trading-interface {
    max-width: 100%;
    padding: 1rem;
  }

  .trading-modes {
    gap: 1rem;
  }

  .trading-mode {
    padding: 1rem;
  }

  .mode-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .mode-tag {
    align-self: flex-end;
  }

  /* AI Section */
  .ai-superpowers {
    padding: 60px 0;
  }

  .ai-superpowers h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: 30px;
  }

  .ai-content-grid {
    gap: 30px;
  }

  .ai-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .ai-capabilities h3,
  .ai-engines-section h3 {
    font-size: 1.25rem;
  }

  .capability-card {
    padding: 1rem;
  }

  .capability-icon {
    width: 32px;
    height: 32px;
  }

  .capability-content h4 {
    font-size: 1rem;
  }

  .capability-content p {
    font-size: 0.85rem;
  }

  .ai-engine-card {
    padding: 1rem;
  }

  .engine-icon {
    width: 40px;
    height: 40px;
  }

  .engine-info h4 {
    font-size: 1rem;
  }

  .ai-brain-visual {
    width: 120px;
    height: 120px;
  }

  .brain-core {
    width: 50px;
    height: 50px;
  }

  .brain-core i {
    width: 24px;
    height: 24px;
  }

  .ai-insights-live {
    max-width: 100%;
  }

  .insight-notification {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  /* Security Section */
  .security-section {
    padding: 60px 0;
  }

  .security-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vs-divider {
    order: 2;
    font-size: 1.5rem;
    padding: 1rem 0;
    text-align: center;
  }

  .security-column h3 {
    font-size: 1.25rem;
    text-align: center;
    justify-content: center;
  }

  .security-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .security-guarantee {
    padding: 1.5rem;
  }

  .guarantee-content h3 {
    font-size: 1.25rem;
  }

  .flow-steps {
    flex-direction: column;
    gap: 0.5rem;
  }

  .flow-steps span {
    padding: 0.5rem;
    text-align: center;
  }

  /* Download Section */
  .download-section {
    padding: 60px 0;
  }

  .download-details {
    gap: 1.5rem;
  }

  .requirements h3,
  .installation-sizes h3 {
    font-size: 1.25rem;
  }

  .download-grid-main {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .download-button {
    padding: 1rem;
  }

  .download-icon {
    width: 40px;
    height: 40px;
  }

  .download-platform {
    font-size: 0.9rem;
  }

  .download-size {
    font-size: 0.8rem;
  }

  .start-steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .start-step {
    padding: 0.75rem;
  }

  .download-features-footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .download-trust {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  /* FAQ Section */
  .faq-section {
    padding: 60px 0;
  }

  .faq-item {
    margin-bottom: 0.75rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question span:nth-child(2) {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-logo-img {
    width: 40px;
    height: 40px;
  }

  .footer-logo .logo-text {
    font-size: 1.5rem;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .award-item {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

/* ===== AI VISUAL ===== */
.ai-brain {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
}

.brain-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.brain-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-bg);
}

.brain-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.brain-connections {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.connection {
  position: absolute;
  width: 4px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.6;
  animation: pulse 3s infinite;
  animation-delay: var(--delay);
}

.connection:nth-child(1) {
  top: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}

.connection:nth-child(2) {
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
}

.connection:nth-child(3) {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

.connection:nth-child(4) {
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(270deg);
}

.ai-insights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  backdrop-filter: blur(20px);
  animation: slideInLeft 0.5s ease-out;
}

.insight-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-tertiary);
  flex-shrink: 0;
}

/* ===== TOKENOMICS SECTION ===== */
.tokenomics-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.03) 0%,
    rgba(255, 170, 0, 0.03) 50%,
    rgba(255, 0, 128, 0.03) 100%
  );
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
  position: relative;
}

/* ===== TOKENOMICS CHART SECTION ===== */
.tokenomics-chart-section {
  margin-bottom: 4rem;
  text-align: center;
}

.tokenomics-chart-section h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent-primary);
}

.tokenomics-chart-section h3 i {
  width: 2rem;
  height: 2rem;
  color: var(--accent-primary);
}

.chart-container {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.tokenomics-chart {
  border-radius: 16px;
  background: var(--primary-bg);
  transition: all 0.3s ease;
}

.tokenomics-chart:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.tokenomics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.tokenomics-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.tokenomics-description {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.tokenomics-content {
  max-width: 1200px;
  margin: 0 auto;
}

.token-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  padding: 3rem;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.token-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.token-logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.token-logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.token-glow {
  display: none;
}

.token-info {
  text-align: center;
}

.token-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.token-symbol {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.tokenomics-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}

.token-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.tokenomics-card {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tokenomics-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.tokenomics-card.highlight {
  border-color: var(--border-accent);
  background: rgba(0, 255, 136, 0.05);
  grid-column: span 3;
}

.tokenomics-card.highlight:hover {
  background: rgba(0, 255, 136, 0.08);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.tokenomics-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-glow);
}

.tokenomics-icon i {
  width: 30px;
  height: 30px;
  color: var(--primary-bg);
}

.tokenomics-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.tokenomics-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-primary);
  display: block;
}

.utility-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.utility-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.utility-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.tokenomics-card:hover .card-glow {
  opacity: 0.1;
}

/* Responsive Design for Tokenomics */
@media (max-width: 1200px) {
  .token-header {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .tokenomics-stats {
    gap: 2rem;
  }

  .tokenomics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .tokenomics-card.highlight {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .tokenomics-section {
    padding: 80px 0;
  }

  .tokenomics-intro {
    margin-bottom: 3rem;
  }

  .tokenomics-description {
    font-size: 1.1rem;
  }

  .token-header {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .token-logo {
    width: 80px;
    height: 80px;
  }

  .token-glow {
    width: 100px;
    height: 100px;
  }

  .token-info h3 {
    font-size: 1.4rem;
  }

  .token-symbol {
    font-size: 1.8rem;
  }

  .tokenomics-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tokenomics-card.highlight {
    grid-column: span 1;
  }

  .tokenomics-card {
    padding: 2rem;
  }

  .tokenomics-icon {
    width: 50px;
    height: 50px;
  }

  .tokenomics-icon i {
    width: 24px;
    height: 24px;
  }

  .tokenomics-details h4 {
    font-size: 1.1rem;
  }

  .tokenomics-value {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .tokenomics-section {
    padding: 60px 0;
  }

  .tokenomics-intro {
    margin-bottom: 2rem;
  }

  .tokenomics-description {
    font-size: 1rem;
  }

  .token-header {
    padding: 1rem;
  }

  .token-logo {
    width: 70px;
    height: 70px;
  }

  .token-glow {
    width: 90px;
    height: 90px;
  }

  .token-info h3 {
    font-size: 1.2rem;
  }

  .token-symbol {
    font-size: 1.6rem;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .tokenomics-card {
    padding: 1.5rem;
  }

  .tokenomics-icon {
    width: 45px;
    height: 45px;
  }

  .tokenomics-icon i {
    width: 22px;
    height: 22px;
  }

  .tokenomics-details h4 {
    font-size: 1rem;
  }

  .tokenomics-value {
    font-size: 0.95rem;
  }

  .utility-item {
    font-size: 0.9rem;
  }
}

/* ===== SECURITY SECTION ===== */
.security-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.05) 0%,
    rgba(255, 0, 128, 0.05) 100%
  );
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
  position: relative;
  overflow-x: hidden;
}

.security-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.security-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.security-column h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.security-item.good {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--text-secondary);
}

.security-item.good:hover {
  background: rgba(0, 255, 136, 0.15);
  transform: translateX(10px);
}

.security-item.good i {
  color: var(--success);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.security-item.bad {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  color: var(--text-secondary);
}

.security-item.bad:hover {
  background: rgba(255, 71, 87, 0.15);
  transform: translateX(-10px);
}

.security-item.bad i {
  color: var(--danger);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-secondary);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 2rem 0;
}

.security-guarantee {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 2rem;
}

.guarantee-content h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent-primary);
  text-align: center;
  justify-content: center;
}

.flow-comparison {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flow-item h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.flow-item.good h4 {
  color: var(--success);
}

.flow-item.bad h4 {
  color: var(--danger);
}

.flow-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-steps span {
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 500;
  backdrop-filter: blur(20px);
}

.flow-steps i {
  color: var(--text-muted);
  width: 16px;
  height: 16px;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 136, 255, 0.05) 0%,
    rgba(0, 255, 136, 0.05) 100%
  );
}

.download-details {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.requirements {
  max-width: 600px;
  width: 100%;
}

.requirements h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.requirement-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.requirement-card:hover {
  background: rgba(0, 136, 255, 0.1);
  border-color: rgba(0, 136, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.requirement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.requirement-card:hover::before {
  opacity: 0.05;
}

.req-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 2;
}

.req-icon i {
  width: 30px;
  height: 30px;
  color: var(--primary-bg);
}

.req-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-bg);
}

.requirement-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.requirement-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.download-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gradient-primary);
  color: var(--primary-bg);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.download-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  filter: brightness(1.1);
}

.download-link i {
  width: 16px;
  height: 16px;
  color: var(--primary-bg);
}

.download-buttons {
  text-align: center;
  margin-bottom: 4rem;
}

.download-buttons h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.download-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.download-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass-bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.download-button:hover {
  background: rgba(0, 136, 255, 0.1);
  border-color: rgba(0, 136, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.download-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-icon i {
  width: 24px;
  height: 24px;
  color: var(--primary-bg);
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.download-platform {
  font-weight: 600;
  font-size: 1rem;
}

.download-size {
  display: none;
}

.download-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.download-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.download-trust .trust-item i {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
}

.quick-start {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
}

.quick-start h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent-primary);
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.start-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.start-step:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-bg);
  flex-shrink: 0;
}

.step-text {
  font-weight: 500;
  color: var(--text-secondary);
}

.download-features-footer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.download-features-footer span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.download-features-footer span i {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 128, 0.05) 0%,
    rgba(0, 255, 136, 0.05) 100%
  );
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 255, 136, 0.05);
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon i {
  width: 20px;
  height: 20px;
  color: var(--primary-bg);
}

.faq-question span:nth-child(2) {
  flex: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent-primary);
  color: var(--primary-bg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideInLeft 0.3s ease-out;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.4));
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-top: 0.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-section h4 i {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.footer-section a:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
}

.award-item {
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.award-item:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--border-accent);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom i {
  width: 16px;
  height: 16px;
  color: var(--accent-secondary);
  animation: pulse 2s infinite;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--border-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* ===== SELECTION STYLING ===== */
::selection {
  background: rgba(0, 255, 136, 0.3);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(0, 255, 136, 0.3);
  color: var(--text-primary);
}

/* ===== LEGAL MODAL ===== */
.legal-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
}

.legal-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-modal-content {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn 0.3s ease-out;
}

.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.legal-modal-close {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.legal-modal-close:hover {
  background: var(--accent-primary);
  color: var(--primary-bg);
  transform: scale(1.1);
}

.legal-modal-close i {
  width: 20px;
  height: 20px;
}

.legal-modal-body {
  padding: 2rem;
  max-height: 70vh;
  overflow-y: auto;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-modal-body h4 {
  color: var(--accent-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.legal-modal-body h4:first-child {
  margin-top: 0;
}

.legal-modal-body p {
  margin-bottom: 1rem;
}

.legal-modal-body ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-modal-body li {
  margin-bottom: 0.5rem;
}

@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== PARTNERS SECTION ===== */
.partner-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 200px;
}

.partner-item:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.partner-logo {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  flex-shrink: 0;
  object-fit: contain;
}

.partner-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.partner-link:hover {
  color: var(--accent-primary);
}

/* Responsive Design for Legal Modal */
@media (max-width: 768px) {
  .legal-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .legal-modal-header {
    padding: 1rem 1.5rem;
  }

  .legal-modal-header h3 {
    font-size: 1.25rem;
  }

  .legal-modal-body {
    padding: 1.5rem;
    max-height: 75vh;
  }

  .legal-modal-body h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .legal-modal-content {
    width: 98%;
    max-height: 98vh;
  }

  .legal-modal-header {
    padding: 0.75rem 1rem;
  }

  .legal-modal-header h3 {
    font-size: 1.1rem;
  }

  .legal-modal-body {
    padding: 1rem;
    max-height: 80vh;
  }

  .legal-modal-body h4 {
    font-size: 1rem;
  }

  .partner-item {
    padding: 0.5rem;
  }

  .partner-logo {
    width: 20px;
    height: 20px;
  }
}
