/* Premium Landing Page - Complete Responsive Styles */

/* === BASE STYLES === */
.premium-trading-platform {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0b0f;
  overflow-x: hidden;
}

/* === PRELOADER STYLES === */
.advanced-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0b0f 0%, #1a1b23 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.preloader-content {
  text-align: center;
  max-width: 400px;
  width: 100%;
  padding: 2rem;
}

.trading-logo-container {
  position: relative;
  margin-bottom: 2rem;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.logo-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border: 2px solid transparent;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.ring-1 { width: 100px; height: 100px; margin: -50px 0 0 -50px; }
.ring-2 { width: 120px; height: 120px; margin: -60px 0 0 -60px; animation-delay: -0.5s; }
.ring-3 { width: 140px; height: 140px; margin: -70px 0 0 -70px; animation-delay: -1s; }

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

.loading-progress {
  margin-bottom: 2rem;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #8892b0;
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.platform-stats-loading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #8892b0;
}

/* === PARTICLE BACKGROUND === */
.particles-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* === MARKET TICKER === */
.market-ticker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(10, 11, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  z-index: 1000;
  overflow: hidden;
}

.ticker-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-content {
  display: flex;
  animation: scroll-left 60s linear infinite;
  gap: 2rem;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.8rem;
}

.symbol {
  font-weight: 600;
  color: #ffffff;
}

.price.up { color: #4ade80; }
.price.down { color: #f87171; }
.change.up { color: #4ade80; }
.change.down { color: #f87171; }

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

/* === NAVIGATION === */
.premium-navbar {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  background: rgba(10, 11, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: rgba(10, 11, 15, 0.98);
  border-bottom: 1px solid rgba(102, 126, 234, 0.3);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.navbar-brand-section {
  display: flex;
  align-items: center;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #8892b0;
}

.navbar-navigation {
  display: flex;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8892b0;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.market-indicator {
  font-size: 0.8rem;
}

.market-status.online {
  color: #4ade80;
}

.market-status i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.auth-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid #667eea;
  color: #667eea;
}

.btn-outline-primary:hover {
  background: #667eea;
  color: #ffffff;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.theme-toggle {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  color: #667eea;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: rgba(102, 126, 234, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #667eea;
  transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.glass-bg {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  backdrop-filter: blur(20px);
}

.animated-gradient-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  opacity: 0.1;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

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

.element-2 {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

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

.hero-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.glass-card-2 {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  position: relative;
}

.badge-icon {
  color: #4ade80;
}

.badge-pulse {
  position: absolute;
  right: 0.5rem;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: 'Orbitron', monospace;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dynamic-words {
  position: relative;
  height: 1.2em;
  overflow: hidden;
  margin-top: 0.5rem;
}

.word {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
  background: linear-gradient(135deg, #4ade80, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.word.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #8892b0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.animated-shine {
  position: relative;
  overflow: hidden;
}

.animated-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-hero-secondary {
  background: transparent;
  border: 2px solid rgba(102, 126, 234, 0.5);
  color: #667eea;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero-secondary:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.feature-title {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
  display: block;
}

.feature-desc {
  color: #8892b0;
  font-size: 0.9rem;
  display: block;
}

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

.trust-text {
  color: #8892b0;
  margin-bottom: 1rem;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-logo {
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trust-logo:hover {
  opacity: 1;
}

/* === DASHBOARD PREVIEW === */
.dashboard-preview {
  padding: 2rem;
}

.dashboard-container {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.dashboard-3d {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.dashboard-3d:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.live-indicator {
  font-size: 0.8rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dashboard-btn {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #667eea;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dashboard-btn:hover {
  background: rgba(102, 126, 234, 0.2);
}

.market-overview {
  margin-bottom: 1.5rem;
}

.market-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.market-card {
  flex: 1;
  min-width: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.market-glow {
  position: relative;
}

.market-glow::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.market-glow:hover::before {
  opacity: 0.3;
}

.market-info {
  margin-bottom: 0.5rem;
}

.market-symbol {
  font-weight: 600;
  color: #ffffff;
  display: block;
  font-size: 0.9rem;
}

.market-name {
  color: #8892b0;
  font-size: 0.8rem;
  display: block;
}

.market-price {
  margin-bottom: 0.5rem;
}

.price {
  font-weight: 600;
  color: #ffffff;
  display: block;
  font-size: 1rem;
}

.change {
  font-size: 0.8rem;
  font-weight: 500;
}

.change.positive { color: #4ade80; }
.change.negative { color: #f87171; }

.market-chart {
  height: 40px;
}

.main-chart-container {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.chart-controls {
  display: flex;
  gap: 0.5rem;
}

.chart-btn {
  background: transparent;
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #8892b0;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chart-btn.active,
.chart-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  border-color: #667eea;
}

.chart-indicators {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #8892b0;
}

.chart-canvas-container {
  height: 200px;
  position: relative;
}

.trading-panel {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 1rem;
}

.panel-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #8892b0;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  border-color: #667eea;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  color: #8892b0;
  font-weight: 500;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.5rem;
  color: #ffffff;
  font-size: 0.9rem;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.btn-trade-buy {
  background: linear-gradient(135deg, #4ade80, #22d3ee);
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-trade-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.btn-trade-sell {
  background: linear-gradient(135deg, #f87171, #fb7185);
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* === SECTION STYLES === */
.market-section,
.features-section,
.stats-section,
.cta-section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #667eea;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #8892b0;
  line-height: 1.6;
}

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  opacity: 0.2;
  transform: scale(1.5);
  z-index: 1;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feature-description {
  color: #8892b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-stats {
  display: flex;
  gap: 1rem;
}

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

.stat-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #8892b0;
}

.feature-highlights {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.highlight {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  color: #667eea;
}

.feature-ai-demo {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
}

.ai-suggestion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4ade80;
  font-size: 0.9rem;
}

.app-badges {
  display: flex;
  gap: 0.5rem;
}

.app-badge {
  height: 40px;
}

.security-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #4ade80;
}

.support-channels {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #8892b0;
  font-size: 0.8rem;
}

.channel i {
  font-size: 1.2rem;
  color: #667eea;
}

/* === STATS SECTION === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.animated-border {
  position: relative;
}

.animated-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
  background-size: 300% 300%;
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  animation: gradientShift 6s ease infinite;
  transition: opacity 0.3s ease;
}

.animated-border:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.stat-content {
  color: #ffffff;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-prefix,
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-label {
  color: #8892b0;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-top: 1px solid rgba(102, 126, 234, 0.2);
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.parallax-cta {
  position: relative;
  background-attachment: fixed;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #8892b0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-cta-secondary {
  background: transparent;
  border: 2px solid rgba(102, 126, 234, 0.5);
  color: #667eea;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta-secondary:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4ade80;
  font-size: 0.9rem;
}

.cta-feature i {
  color: #4ade80;
}

/* === FOOTER === */
.premium-footer {
  background: rgba(10, 11, 15, 0.95);
  border-top: 1px solid rgba(102, 126, 234, 0.2);
  padding: 3rem 0 1rem;
  position: relative;
}

.animated-gradient-border {
  position: relative;
}

.animated-gradient-border::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
}

.footer-content {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.footer-description {
  color: #8892b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.animated-social .social-link {
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s ease;
}

.animated-social .social-link:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 2;
}

.link-group {
  flex: 1;
  min-width: 150px;
}

.link-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

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

.links-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #8892b0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #667eea;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #8892b0;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badge {
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-badge:hover {
  opacity: 1;
}

/* === MODAL STYLES === */
.premium-modal {
  background: rgba(10, 11, 15, 0.95);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

.modal-title-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
}

.btn-close {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  opacity: 1;
}

.modal-body {
  padding: 1.5rem;
}

.premium-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-container {
  position: relative;
}

.premium-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.premium-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.premium-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #8892b0;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.premium-input:focus + .premium-label,
.premium-input:not(:placeholder-shown) + .premium-label {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.8rem;
  color: #667eea;
  background: rgba(10, 11, 15, 1);
  padding: 0 0.5rem;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #8892b0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #667eea;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.premium-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #8892b0;
}

.premium-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.premium-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #667eea;
  border-color: #667eea;
}

.checkmark i {
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-checkbox input[type="checkbox"]:checked + .checkmark i {
  opacity: 1;
}

.forgot-password {
  color: #667eea;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #764ba2;
}

.btn-login-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-login-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-loader {
  display: none;
}

.modal-footer-text {
  text-align: center;
  margin-top: 1rem;
  color: #8892b0;
}

.register-link {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.register-link:hover {
  color: #764ba2;
}

.demo-modal {
  background: rgba(10, 11, 15, 0.95);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* === MARKET TABLE === */
.market-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.category-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  color: #8892b0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
  color: #667eea;
}

.market-table-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.market-table-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 300px;
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8892b0;
  z-index: 2;
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  color: #ffffff;
  font-size: 0.9rem;
}

.search-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.table-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  color: #667eea;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.action-btn:hover {
  background: rgba(102, 126, 234, 0.2);
}

.market-data-table {
  width: 100%;
  border-collapse: collapse;
}

.market-data-table th,
.market-data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.market-data-table th {
  background: rgba(255, 255, 255, 0.02);
  color: #8892b0;
  font-weight: 600;
  font-size: 0.9rem;
}

.market-data-table td {
  color: #ffffff;
}

.symbol-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.crypto-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
}

.price-cell {
  font-weight: 600;
}

.change-cell.positive {
  color: #4ade80;
}

.change-cell.negative {
  color: #f87171;
}

.action-cell {
  text-align: center;
}

.trade-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.trade-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* === RESPONSIVE BREAKPOINTS === */

@media (max-width: 1200px) {
  .hero-section .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }
  .dashboard-preview {
    margin-top: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-section .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }
  .dashboard-preview {
    margin-top: 2rem;
    max-width: 100%;
  }
  .hero-content {
    padding: 2rem 1rem;
  }
  .dashboard-container {
    padding: 1.5rem 1rem;
  }
  .market-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .main-chart-container {
    min-width: 0;
    width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* === MOBILE STYLES === */
  
  /* Typography */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  /* Container padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Navigation */
  .navbar-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .navbar-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .navbar-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .auth-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
    width: 100%;
  }
  
  /* Hero Section */
  .hero-section {
    padding-top: 150px;
    min-height: auto;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }
  
  .hero-features {
    gap: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .trust-logos {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  /* Dashboard Preview */
  .dashboard-preview {
    padding: 1rem;
  }
  
  .dashboard-3d {
    transform: none;
  }
  
  .dashboard-container {
    padding: 1rem;
  }
  
  .market-cards {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .market-card {
    min-width: auto;
  }
  
  .chart-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .chart-controls {
    width: 100%;
    justify-content: space-between;
  }
  
  .chart-indicators {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .panel-tabs {
    margin-bottom: 0.75rem;
  }
  
  /* Market Section */
  .market-categories {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .category-btn {
    width: 100%;
    justify-content: center;
  }
  
  .table-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .search-box {
    max-width: none;
  }
  
  .table-actions {
    justify-content: center;
  }
  
  .market-table-container {
    overflow-x: auto;
  }
  
  .market-data-table {
    min-width: 600px;
  }
  
  .market-data-table th,
  .market-data-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  
  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .security-badges,
  .support-channels {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* CTA Section */
  .cta-content {
    padding: 1rem;
  }
  
  .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-brand {
    min-width: auto;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .link-group {
    min-width: auto;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-badges {
    justify-content: center;
  }
  
  /* Modal Adjustments */
  .modal-dialog {
    margin: 1rem;
  }
  
  .premium-modal {
    border-radius: 16px;
  }
  
  .modal-header,
  .modal-body {
    padding: 1rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  /* Market Ticker */
  .market-ticker {
    height: 35px;
  }
  
  .ticker-item {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
  
  /* Preloader Adjustments */
  .preloader-content {
    padding: 1rem;
  }
  
  .platform-stats-loading {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .stat-item {
    flex: none;
  }
}

@media (max-width: 480px) {
  /* === EXTRA SMALL MOBILE === */
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .hero-content {
    padding: 1.5rem 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .dashboard-container {
    padding: 0.75rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .chart-canvas-container {
    height: 150px;
  }
  
  .market-data-table {
    min-width: 500px;
  }
  
  .brand-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .brand-text {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* === TABLET STYLES === */
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dashboard-3d {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
  }
  
  .market-cards {
    flex-wrap: wrap;
  }
  
  .market-card {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
  }
  
  .footer-links {
    gap: 1.5rem;
  }
  
  .link-group {
    min-width: calc(50% - 0.75rem);
  }
}

/* === LANDSCAPE MOBILE === */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding-top: 120px;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .dashboard-preview {
    margin-top: 1rem;
  }
}

/* === HIGH DPI DISPLAYS === */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .brand-logo,
  .footer-logo,
  .trust-logo,
  .app-badge,
  .footer-badge {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .floating-element {
    animation: none;
  }
  
  .animated-gradient-border {
    animation: none;
  }
  
  .ring {
    animation: none;
  }
}

/* === DARK MODE ADJUSTMENTS === */
@media (prefers-color-scheme: light) {
  .premium-trading-platform {
    color: #1a1b23;
    background: #f8fafc;
  }
  
  .hero-background {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  }
  
  .glass-card,
  .glass-card-2 {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .premium-navbar {
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .market-ticker {
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* === PRINT STYLES === */
@media print {
  .advanced-preloader,
  .particles-background,
  .market-ticker,
  .premium-navbar,
  .mobile-menu-toggle,
  .floating-elements,
  .animated-gradient-border,
  .btn,
  .social-links {
    display: none !important;
  }
  
  .hero-section,
  .market-section,
  .features-section,
  .stats-section,
  .cta-section,
  .premium-footer {
    page-break-inside: avoid;
  }
  
  body {
    color: #000 !important;
    background: #fff !important;
  }
}
