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

html {
  overflow-x: hidden;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  background: #0a0e27;
  overflow-x: hidden;
}

/* Reserve space for fixed navbar to avoid overlap */
body { padding-top: 82px; }
@media (max-width: 968px) { body { padding-top: 72px; } }
@media (max-width: 480px) { body { padding-top: 64px; } }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0f1535 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(30deg, rgba(0, 150, 255, 0.1) 1px, transparent 1px),
    linear-gradient(120deg, rgba(0, 150, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 50px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffa500;
  text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #e0e0e0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* Trading View widget */
.tradingview-section {
  margin: 50px auto;
  max-width: 1000px;
  text-align: center;
}

.button {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.button.orange {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
}

.button.orange:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 6px 30px rgba(255, 165, 0, 0.6); */
}

.button:not(.orange) {
  background: transparent;
  color: #ffa500;
  border: 2px solid #ffa500;
}

.button:not(.orange):hover {
  background: rgba(255, 165, 0, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 50px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #ffa500;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #a0a0a0;
}

.hero-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.15) 0%, transparent 70%);
}

.hero-bg::before {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.hero-bg::after {
  width: 400px;
  height: 400px;
  bottom: -50px;
  right: 100px;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-logo-bg {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 180px;
  color: rgba(255, 165, 0, 0.08);
  pointer-events: none;
}

.hero-logo-bg span {
  font-size: 48px;
  font-weight: 700;
}

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

/* Ticker Bar */
.ticker-bar {
  background: rgba(10, 14, 39, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-top: 1px solid rgba(255, 165, 0, 0.2);
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.crypto-ticker {
  display: flex;
  gap: 50px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  padding: 0 50px;
}

.crypto-ticker::-webkit-scrollbar {
  display: none;
}

/* About Section */
.about-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-visual {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(0, 150, 255, 0.1) 100%);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.crypto-visual {
  position: relative;
  width: 100%;
  height: 300px;
}

.crypto-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(255, 165, 0, 0.5);
  z-index: 2;
}

.crypto-icon svg {
  width: 60px;
  height: 60px;
  color: #000;
}

.floating-elements {
  position: absolute;
  inset: 0;
}

.floating-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-radius: 15px;
  animation: floatElement 4s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 10%; right: 10%; animation-delay: 1s; }
.floating-element:nth-child(3) { bottom: 10%; left: 10%; animation-delay: 2s; }
.floating-element:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 3s; }

@keyframes floatElement {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

.about-content h2 {
  font-size: 42px;
  color: #ffa500;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 20px;
}

/* Investment Plans Section */
.plans-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 50px;
}

.plans-section h2 {
  font-size: 42px;
  color: #ffa500;
  text-align: center;
  margin-bottom: 60px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.plan {
  background: linear-gradient(135deg, rgba(20, 25, 60, 0.9) 0%, rgba(10, 14, 39, 0.9) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffa500, #ff8c00);
}

.plan.bronze::before { background: linear-gradient(90deg, #cd7f32, #b8860b); }
.plan.silver::before { background: linear-gradient(90deg, #c0c0c0, #a8a8a8); }
.plan.gold::before { background: linear-gradient(90deg, #ffd700, #ffa500); }

.plan:hover {
  transform: translateY(-10px);
  border-color: #ffa500;
  box-shadow: 0 20px 60px rgba(255, 165, 0, 0.3);
}

.plan h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffa500;
}

.plan-rate {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.plan-period,
.plan-min,
.plan-max,
.plan-once,
.plan-capital {
  font-size: 15px;
  color: #b0b0b0;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.plan-period::before,
.plan-min::before,
.plan-max::before,
.plan-once::before,
.plan-capital::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffa500;
  font-weight: 700;
}

.plan-affiliate {
  font-size: 16px;
  font-weight: 600;
  color: #ffa500;
  margin: 20px 0 10px;
}

.affiliate-levels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.affiliate-levels span {
  font-size: 14px;
  color: #b0b0b0;
  padding-left: 20px;
  position: relative;
}

.affiliate-levels span::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ffa500;
}

/* Why Choose Us Section */
.why-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 50px;
}

.why-section h2 {
  font-size: 42px;
  color: #ffa500;
  text-align: center;
  margin-bottom: 60px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-card {
  background: linear-gradient(135deg, rgba(20, 25, 60, 0.6) 0%, rgba(10, 14, 39, 0.6) 100%);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.why-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(20, 25, 60, 0.9) 0%, rgba(10, 14, 39, 0.9) 100%);
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
}

.why-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.why-card h3 {
  font-size: 22px;
  color: #ffa500;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #c0c0c0;
}

/* How It Works Section */
.how-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 50px;
}

.how-section h2 {
  font-size: 42px;
  color: #ffa500;
  text-align: center;
  margin-bottom: 60px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.how-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.how-step h3 {
  font-size: 24px;
  color: #ffa500;
  margin: 20px 0 15px;
}

.how-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #c0c0c0;
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 50px;
  overflow-x: hidden;
}

.testimonials-section h2 {
  font-size: 42px;
  color: #ffa500;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
  gap: 30px;
}

.testimonial {
  background: linear-gradient(135deg, rgba(20, 25, 60, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
  border-radius: 15px;
  padding: 35px;
  border-left: 4px solid #ffa500;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
}

.testimonial p {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffa500;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-info .name {
  font-size: 16px;
  font-weight: 600;
  color: #ffa500;
}

.user-info .role {
  font-size: 13px;
  color: #909090;
}

/* Loading Overlay */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0e27;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 165, 0, 0.2);
  border-top-color: #ffa500;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .hero-content {
    padding: 100px 40px 60px;
  }
  
  .hero-text h1 {
    font-size: 42px;
  }
  
  .hero-logo-bg {
    font-size: 140px;
  }
}

@media (max-width: 968px) {
  .hero-content {
    flex-direction: column;
    padding: 100px 30px 60px;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-text h1 {
    font-size: 36px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .hero-logo-bg {
    display: none;
  }
  
  .about-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }
  
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    padding: 0 30px;
  }
  
  .crypto-ticker {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .button {
    width: 100%;
    text-align: center;
  }
  
  .hero-stats {
    width: 100%;
  }
  
  .stat-value {
    font-size: 28px;
  }
  
  .about-content h2,
  .plans-section h2,
  .why-section h2,
  .how-section h2,
  .testimonials-section h2 {
    font-size: 32px;
  }
  
  .plans {
    grid-template-columns: 1fr;
  }
  
  .why-cards,
  .how-steps,
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .about-visual {
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 80px 20px 40px;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .hero-text p {
    font-size: 15px;
  }
  
  .about-section,
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    padding: 0 20px;
    margin: 60px auto;
  }
  
  .about-content h2,
  .plans-section h2,
  .why-section h2,
  .how-section h2,
  .testimonials-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .crypto-ticker {
    padding: 0 20px;
  }
  
  .plan {
    padding: 30px 20px;
  }
  
  .why-card,
  .testimonial {
    padding: 30px 20px;
  }
}

/* Additional Enhancements */

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

/* Selection Color */
::selection {
  background: #ffa500;
  color: #000;
}

::-moz-selection {
  background: #ffa500;
  color: #000;
}

/* Crypto Ticker Item Styling */
.crypto-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 165, 0, 0.05);
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.crypto-ticker-item .crypto-symbol {
  font-weight: 700;
  color: #ffa500;
}

.crypto-ticker-item .crypto-price {
  color: #ffffff;
}

.crypto-ticker-item .crypto-change {
  font-size: 12px;
}

.crypto-ticker-item .crypto-change.positive {
  color: #00ff88;
}

.crypto-ticker-item .crypto-change.negative {
  color: #ff4444;
}

/* Step Icon Placeholder */
.step-icon {
  width: 100px;
  height: 100px;
  margin: 20px auto;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(0, 150, 255, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-icon::before {
  content: '';
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  border-radius: 10px;
  opacity: 0.3;
}

/* Icon Specific Styles for Why Cards */
.icon.proven::before {
  content: '📊';
}

.icon.innovative::before {
  content: '💡';
}

.icon.transparent::before {
  content: '🔍';
}

.icon.tailored::before {
  content: '🎯';
}

.icon.customer::before {
  content: '💬';
}

.icon.secure::before {
  content: '🔒';
}

/* Parallax Effect for Hero Background */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg::before {
    animation: float 6s ease-in-out infinite, pulse 3s ease-in-out infinite;
  }
  
  .hero-bg::after {
    animation: float 8s ease-in-out infinite reverse, pulse 4s ease-in-out infinite;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.25; }
}

/* Card Shine Effect on Hover */
.plan::after,
.why-card::after,
.testimonial::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, transparent, rgba(255, 165, 0, 0.1), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s;
  pointer-events: none;
}

.plan:hover::after,
.why-card:hover::after,
.testimonial:hover::after {
  transform: rotate(45deg) translateY(100%);
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
  outline: 2px solid #ffa500;
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0e27;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
}

/* Skeleton Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(to right, rgba(255, 165, 0, 0.05) 0%, rgba(255, 165, 0, 0.15) 50%, rgba(255, 165, 0, 0.05) 100%);
  background-size: 1000px 100%;
}

/* Glowing Border Animation */
@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.2);
  }
  50% {
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
  }
}

.plan.featured {
  animation: borderGlow 2s ease-in-out infinite;
  border-color: #ffa500;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Z-index Management */
.hero-section { z-index: 1; }
.ticker-bar { z-index: 10; }
#loading-overlay { z-index: 9999; }

/* Print Styles */
@media print {
  .hero-bg,
  .hero-logo-bg,
  .ticker-bar,
  #loading-overlay,
  .button {
    display: none !important;
  }
  
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .hero-text h1,
  .about-content h2,
  .plans-section h2,
  .why-section h2,
  .how-section h2,
  .testimonials-section h2 {
    color: #000000;
  }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .button.orange {
    border: 2px solid #000;
  }
  
  .plan,
  .why-card,
  .testimonial {
    border: 2px solid #ffa500;
  }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
  /* Already dark by default */
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 24px;
  }
  
  .stat-value {
    font-size: 24px;
  }
  
  .about-content h2,
  .plans-section h2,
  .why-section h2,
  .how-section h2,
  .testimonials-section h2 {
    font-size: 24px;
  }
  
  .button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    padding: 60px 30px 40px;
  }
  
  .hero-text h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .hero-text p {
    margin-bottom: 20px;
  }
  
  .hero-buttons {
    margin-bottom: 30px;
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-content {
    padding: 100px 40px 60px;
  }
  
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1600px) {
  .hero-content,
  .about-section,
  .plans-section,
  .why-section,
  .how-section,
  .testimonials-section {
    max-width: 1600px;
  }
  
  .hero-text h1 {
    font-size: 64px;
  }
  
  .hero-logo-bg {
    font-size: 220px;
  }
}
/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
  z-index: 10000;
  transition: all 0.3s ease;
  /* Critical additions */
  transform: translateZ(0);
  will-change: transform;
  isolation: isolate;
}

.navbar.scrolled {
  padding: 15px 50px;
  background: rgba(10, 14, 39, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Logo */
.navbar .logo {
  font-size: 28px;
  font-weight: 700;
  color: #ffa500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.navbar .logo::before {
  content: '₿';
  font-size: 32px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rotateCoin 3s ease-in-out infinite;
}

@keyframes rotateCoin {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
}

.navbar .logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffa500, #ff8c00);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffa500;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #ffa500;
}

.nav-links a.active::after {
  width: 100%;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-actions .button {
  padding: 10px 24px;
  /* background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%); */
  /* color: #000; */
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.nav-actions .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 165, 0, 0.5);
}

.nav-actions .language {
  padding: 8px 16px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 165, 0, 0.5);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-actions .language::after {
  content: '🌐';
  font-size: 16px;
}

.nav-actions .language:hover {
  background: rgba(255, 165, 0, 0.1);
  border-color: #ffa500;
  color: #ffa500;
}


/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001; /* CHANGED FROM 1001 */
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 165, 0, 0.1);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffa500;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 165, 0, 0.2);
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  /* Critical additions */
  transform: translateZ(0);
  isolation: isolate;
}

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

/* Support JS 'open' class (toggleMobileNav) */
.mobile-nav.open { right: 0; }

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

.mobile-nav ul li {
  margin-bottom: 10px;
}

.mobile-nav ul li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #ffa500, #ff8c00);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  background: rgba(255, 165, 0, 0.1);
  color: #ffa500;
  padding-left: 30px;
}

.mobile-nav ul li a:hover::before,
.mobile-nav ul li a.active::before {
  transform: scaleY(1);
}

.mobile-nav .nav-actions {
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 165, 0, 0.2);
}

.mobile-nav .nav-actions .button,
.mobile-nav .nav-actions .language {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
  /* Critical addition */
  transform: translateZ(0);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }
  
  .nav-links {
    gap: 30px;
  }
  
  .nav-links a {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  .navbar {
    padding: 18px 30px;
  }
  
  .nav-links,
  .nav-actions {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .navbar .logo {
    font-size: 24px;
  }
  
  .navbar .logo::before {
    font-size: 28px;
  }
  
  .mobile-nav {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px 15px;
  }
  
  .navbar .logo {
    font-size: 22px;
  }
  
  .mobile-nav {
    width: 100%;
    right: -100%;
  }
  
  .mobile-nav.active {
    right: 0;
  }
}

/* Scrollbar for Mobile Nav */
.mobile-nav::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav::-webkit-scrollbar-track {
  background: rgba(255, 165, 0, 0.05);
}

.mobile-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 165, 0, 0.3);
  border-radius: 3px;
}

.mobile-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 165, 0, 0.5);
}

/* Animation for Mobile Nav Items */
.mobile-nav.active ul li,
.mobile-nav.open ul li {
  animation: slideInRight 0.3s ease forwards;
  opacity: 0;
}

.mobile-nav.active ul li:nth-child(1), .mobile-nav.open ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav.active ul li:nth-child(2), .mobile-nav.open ul li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav.active ul li:nth-child(3), .mobile-nav.open ul li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav.active ul li:nth-child(4), .mobile-nav.open ul li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav.active ul li:nth-child(5), .mobile-nav.open ul li:nth-child(5) { animation-delay: 0.3s; }

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

/* Focus States for Accessibility */
.nav-links a:focus,
.mobile-nav ul li a:focus,
.nav-actions .button:focus,
.nav-actions .language:focus,
.hamburger:focus {
  outline: 2px solid #ffa500;
  outline-offset: 2px;
}

/* Active Link Indicator */
.nav-links li a.active::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #ffa500;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
}

/* Navbar on Scroll Animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar {
  animation: slideDown 0.5s ease;
}

/* Prevent body scroll when mobile nav is open */
body.mobile-nav-open {
  overflow: hidden;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .navbar {
    border-bottom: 2px solid #ffa500;
  }
  
  .nav-links a,
  .mobile-nav ul li a {
    border: 1px solid transparent;
  }
  
  .nav-links a:focus,
  .mobile-nav ul li a:focus {
    border-color: #ffa500;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .mobile-nav,
  .nav-links a::after,
  .hamburger span,
  .mobile-nav ul li {
    animation: none !important;
    transition: none !important;
  }
}
/* Footer Section */
.footer-section {
  position: relative;
  background: linear-gradient(180deg, #0a0e27 0%, #060811 100%);
  border-top: 2px solid rgba(255, 165, 0, 0.2);
  padding: 60px 50px 30px;
  margin-top: 100px;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(30deg, rgba(255, 165, 0, 0.03) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 165, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.footer-section::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Footer Content */
.footer-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 165, 0, 0.15);
  z-index: 2;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c0c0c0;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-contact span::before {
  content: '';
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-contact span:first-child::before {
  content: '✉';
  color: #ffa500;
}

.footer-contact span:last-child::before {
  content: '📞';
  color: #ffa500;
}

.footer-contact span:hover {
  transform: translateX(5px);
}

.footer-contact span:hover::before {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #ffa500;
}

/* Footer Logo */
.footer-logo {
  font-size: 36px;
  font-weight: 700;
  color: #ffa500;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo::before {
  content: '₿';
  font-size: 42px;
  background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

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

/* Footer Links */
.footer-links {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  z-index: 2;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffa500, #ff8c00);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffa500;
  background: rgba(255, 165, 0, 0.05);
}

.footer-links a:hover::before {
  width: 80%;
}

/* Footer Copyright */
.footer-copyright {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  color: #808080;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 165, 0, 0.1);
  z-index: 2;
}

.footer-copyright::before {
  content: '©';
  display: inline-block;
  margin-right: 5px;
  color: #ffa500;
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .footer-section {
    padding: 50px 30px 25px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
  }
  
  .footer-contact {
    order: 2;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    order: 1;
    font-size: 32px;
  }
  
  .footer-logo::before {
    font-size: 38px;
  }
  
  .footer-links {
    gap: 30px;
    padding: 25px 0;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 20px 20px;
    margin-top: 80px;
  }
  
  .footer-contact {
    width: 100%;
  }
  
  .footer-contact span {
    font-size: 14px;
    justify-content: center;
  }
  
  .footer-logo {
    font-size: 28px;
  }
  
  .footer-logo::before {
    font-size: 34px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
  }
  
  .footer-links a {
    font-size: 14px;
  }
  
  .footer-copyright {
    font-size: 13px;
    padding-top: 15px;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 35px 15px 15px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-contact span {
    font-size: 13px;
    flex-direction: column;
    text-align: center;
  }
  
  .footer-contact span::before {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .footer-logo {
    font-size: 24px;
  }
  
  .footer-logo::before {
    font-size: 30px;
  }
  
  .footer-links {
    gap: 15px;
    padding: 18px 0;
  }
  
  .footer-links a {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .footer-copyright {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Hover Effect for Footer Section */
@media (hover: hover) {
  .footer-contact span,
  .footer-links a {
    cursor: pointer;
  }
}

/* Accessibility */
.footer-contact a:focus,
.footer-links a:focus {
  outline: 2px solid #ffa500;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Print Styles */
@media print {
  .footer-section::before,
  .footer-section::after {
    display: none;
  }
  
  .footer-section {
    background: #ffffff;
    border-top: 2px solid #000000;
  }
  
  .footer-logo,
  .footer-contact a,
  .footer-links a {
    color: #000000;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .footer-section {
    border-top: 3px solid #ffa500;
  }
  
  .footer-contact a,
  .footer-links a {
    border: 1px solid transparent;
  }
  
  .footer-contact a:focus,
  .footer-links a:focus {
    border-color: #ffa500;
  }
}

/* Additional Enhancement: Social Icons Section (Optional) */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffa500;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.footer-social a:hover {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
  border-color: #ffa500;
}

@media (max-width: 480px) {
  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
/* Crypto Ticker Bar Styles */
.ticker-bar {
  width: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-bar::before {
  left: 0;
  background: linear-gradient(to right, #1a1a2e, transparent);
}

.ticker-bar::after {
  right: 0;
  background: linear-gradient(to left, #16213e, transparent);
}

#crypto-ticker {
  display: flex;
  width: fit-content;
  animation: scroll-infinite 60s linear infinite;
  will-change: transform;
}

#crypto-ticker.loading {
  animation: none;
  justify-content: center;
  width: 100%;
}

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

/* Individual Crypto Coin Card */
.crypto-coin {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  margin: 0 10px;
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.crypto-coin:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Coin Icon */
.coin-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coin-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Coin Info */
.coin-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 80px;
}

.coin-symbol {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.coin-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Coin Price */
.coin-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
  margin-left: auto;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.change.positive {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.change.negative {
  color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

.change-icon {
  font-size: 10px;
}

/* Loading State */
.crypto-coin.loading {
  justify-content: center;
  min-width: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Error State */
.crypto-coin.error {
  background: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ticker-bar {
    padding: 15px 0;
  }
  
  .crypto-coin {
    min-width: 240px;
    padding: 10px 16px;
    margin: 0 8px;
  }
  
  .coin-icon {
    width: 36px;
    height: 36px;
  }
  
  .coin-symbol {
    font-size: 14px;
  }
  
  .coin-name {
    font-size: 11px;
  }
  
  .price {
    font-size: 14px;
  }
  
  .change {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .crypto-coin {
    min-width: 200px;
    padding: 8px 12px;
    margin: 0 6px;
  }
  
  .coin-icon {
    width: 32px;
    height: 32px;
  }
  
  .coin-info {
    min-width: 60px;
  }
  
  .coin-symbol {
    font-size: 13px;
  }
  
  .coin-name {
    font-size: 10px;
  }
  
  .price {
    font-size: 13px;
  }
  
  .change {
    font-size: 11px;
    padding: 2px 6px;
  }
}

/* Pause animation on hover for better UX */
.ticker-bar:hover #crypto-ticker {
  animation-play-state: paused;
}

/* Smooth animation performance */
#crypto-ticker {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  perspective: 1000px;
}

.footer-section {
  position: relative;
  background: linear-gradient(180deg, #0a0e27 0%, #060811 100%);
  border-top: 2px solid rgba(255, 165, 0, 0.2);
  padding: 60px 50px 30px;
  margin-top: 100px;
  overflow: visible !important;
  isolation: auto;
  transform: none;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(30deg, rgba(255, 165, 0, 0.03) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 165, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}