/* ==========================================
   CSS DESIGN SYSTEM & VARIABLES
   ========================================== */

:root {
  /* Colors */
  --color-primary: #6366f1;
  --color-primary-dark: #4f46e5;
  --color-secondary: #8b5cf6;
  --color-accent: #06b6d4;
  --color-success: #10b981;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-hero: linear-gradient(
    135deg,
    #1e1b4b 0%,
    #312e81 50%,
    #1e3a8a 100%
  );
  --gradient-card: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  --gradient-text: linear-gradient(
    135deg,
    #6366f1 0%,
    #8b5cf6 50%,
    #06b6d4 100%
  );

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Outfit", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #e5e7eb;
  background: var(--gradient-hero);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.fade-in {
  animation: fadeIn 0.8s var(--transition-normal) forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s var(--transition-normal) forwards;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--spacing-md) 0 var(--spacing-md);
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      #eee,
      rgba(0, 0, 0, 0)
    ),
    radial-gradient(2px 2px at 60px 70px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 50px 50px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 130px 80px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 10px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.3;
  animation: shimmer 60s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 50px; /* Space for price ticker */
}

.hero-logo {
  margin-bottom: var(--spacing-sm);
  animation: fadeIn 1s ease-out;
}

.hero-logo img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(99, 102, 241, 0.4));
  transition: transform var(--transition-normal);
}

.hero-logo img:hover {
  transform: scale(1.05) rotate(5deg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  color: #06b6d4;
}

.badge svg {
  color: #10b981;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.6;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.btn-hero {
  font-size: 0.95rem;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  min-width: 200px;
  min-height: 56px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2.5s ease-in-out infinite;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

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

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4), 0 0 0 0 rgba(99, 102, 241, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.6), 0 0 0 8px rgba(99, 102, 241, 0);
    transform: scale(1.02);
  }
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-glow);
  animation: none;
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 2px solid var(--glass-border);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  min-width: 280px;
  min-height: 64px;
}

/* ==========================================
   STICKY CTA BUTTON (Fixed at Bottom)
   ========================================== */

.sticky-cta-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(30, 27, 75, 0.98) 0%, rgba(30, 27, 75, 0.95) 85%, transparent 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUpFade 0.5s ease-out;
}

@keyframes slideUpFade {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.btn-sticky {
  box-shadow: 0 -4px 20px rgba(99, 102, 241, 0.4), 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
  width: 100%;
  max-width: 500px;
  font-size: 1rem;
}

.btn-sticky:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 -6px 30px rgba(99, 102, 241, 0.6), 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* ==========================================
   TRUST INDICATORS
   ========================================== */

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
  max-width: 600px;
  margin: 0 auto;
  padding-top: var(--spacing-lg);
}

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

.trust-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.trust-label {
  font-size: 1rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   SCROLL INDICATOR
   ========================================== */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s ease-in-out infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 1.5s ease-in-out infinite;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
  padding: var(--spacing-3xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

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

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  color: white;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: white;
}

.feature-description {
  color: #d1d5db;
  line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
  padding: var(--spacing-3xl) 0;
}

.cta-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl) var(--spacing-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-decorative-element {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -150px;
  right: -150px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: white;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.cta-note {
  margin-top: var(--spacing-md);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-xs);
}

.footer-tagline {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-link {
  color: #d1d5db;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #9ca3af;
  font-size: 0.875rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo {
    margin-bottom: var(--spacing-sm);
  }

  .hero-logo img {
    width: 140px;
    height: 140px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .badge {
    font-size: 0.8rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-sm);
  }

  .btn {
    width: 100%;
  }

  .trust-indicators {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
  }

  .trust-number {
    font-size: 3rem;
  }

  .trust-label {
    font-size: 1.2rem;
  }

  .features {
    padding: var(--spacing-2xl) 0 calc(var(--spacing-2xl) + 80px);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .feature-card {
    padding: var(--spacing-lg);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .scroll-indicator {
    display: none;
  }

  .sticky-cta-container {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .btn-sticky {
    font-size: 0.8rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {


  .hero-logo img {
    width: 160px;
    height: 160px;
  }

  .badge {
    font-size: 0.7rem;
    padding: 0.375rem 0.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .trust-number {
    font-size: 2rem;
  }

  .feature-card {
    padding: var(--spacing-md);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .cta-card {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .cta-section {
    padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 80px);
  }
}

@media (max-width: 360px) {
  .hero-logo img {
    width: 140px;
    height: 140px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

/* ==========================================
   TRADING CHART ANIMATIONS
   ========================================== */

/* Canvas Backgrounds */
.chart-canvas,
.grid-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.chart-canvas {
  opacity: 0.7;
  filter: drop-shadow(0 0 20px rgba(0, 168, 107, 0.3));
  animation: chartGlow 4s ease-in-out infinite;
}

@keyframes chartGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(0, 168, 107, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.4));
  }
}

.grid-canvas {
  opacity: 0.25;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 49px,
      rgba(255, 215, 0, 0.15) 49px,
      rgba(255, 215, 0, 0.15) 50px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 49px,
      rgba(255, 215, 0, 0.15) 49px,
      rgba(255, 215, 0, 0.15) 50px
    ),
    radial-gradient(
      ellipse at 30% 50%,
      rgba(0, 168, 107, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(107, 44, 145, 0.1) 0%,
      transparent 50%
    );
  animation: gridPulse 3s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.35;
  }
}

/* Particle Container */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: floatParticle 8s ease-in-out infinite;
  box-shadow: 0 0 20px currentColor;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-30px) translateX(15px) scale(1.2);
    opacity: 0.7;
  }
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.8), rgba(99, 102, 241, 0));
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty));
    opacity: 0;
  }
}

/* Price Ticker */
.price-ticker {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(99, 102, 241, 0.2);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  min-width: 200px;
}

.ticker-symbol {
  color: #9ca3af;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.ticker-price {
  font-size: 1.125rem;
  font-weight: 700;
}

.ticker-price.up {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.ticker-price.down {
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.ticker-change {
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.ticker-change.up {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.ticker-change.down {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Duplicate ticker items for seamless loop */
.ticker-track::after {
  content: '';
  display: block;
  width: 100%;
}

/* Neon Glow Effects */
@keyframes neonPulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px currentColor) 
            drop-shadow(0 0 10px currentColor);
  }
  50% {
    filter: drop-shadow(0 0 10px currentColor) 
            drop-shadow(0 0 20px currentColor)
            drop-shadow(0 0 30px currentColor);
  }
}

/* Candlestick Glow */
.candlestick-glow {
  animation: neonPulse 2s ease-in-out infinite;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .price-ticker {
    top: 0px;
    height: 40px;
  }
  
  .ticker-item {
    gap: 0.5rem;
    padding: 0 1rem;
    min-width: 150px;
  }
  
  .ticker-symbol {
    font-size: 0.75rem;
  }
  
  .ticker-price {
    font-size: 0.875rem;
  }
  
  .ticker-change {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
  
  .chart-canvas {
    opacity: 0.2;
  }
  
  .grid-canvas {
    opacity: 0.08;
  }
  
  .particle-container {
    display: none; /* Hide particles on mobile for performance */
  }
}

@media (max-width: 480px) {
  .price-ticker {
    height: 35px;
  }
  
  .ticker-item {
    min-width: 120px;
  }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}
