@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #060606;
  font-family: 'Inter', sans-serif; 
  color: white;
  overflow-x: hidden;
}

/* ===== FLOATING PILL NAVBAR - UPDATED ===== */
.pill-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1300px;
  z-index: 1000;
  border-radius: 60px;
  background: #0a0a0a; /* Solid black */
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.pill-header.scrolled {
  top: 10px;
  background: #000000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.3);
}

.pill-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px; /* Reduced padding */
}

/* Logo */
.pill-logo {
  flex: 0 0 auto;
}

.logo-img {
  height: 50px; /* Slightly smaller */
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(10, 10, 10, 0.5));
}

/* Navigation */
.pill-nav {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.pill-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: all 0.3s ease;
}

.pill-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #ffd700);
  transition: width 0.3s ease;
}

.pill-link:hover {
  color: #d4af37;
}

.pill-link:hover::before {
  width: 100%;
}

/* Right Side Actions */
.pill-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Pill Buttons */
.pill-btn {
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Download Button */
.download-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
}

.download-btn i {
  font-size: 14px;
}

.download-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Primary Button */
.primary-btn {
  background: linear-gradient(90deg, #d4af37, #ffd700);
  color: #000;
  border: none;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Hamburger */
.pill-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1002;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #ffd700);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: left;
}

.pill-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(2px, -2px);
  width: 110%;
}

.pill-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.pill-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 2px);
  width: 110%;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0a0a0a;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.mobile-nav-link:hover {
  color: #d4af37;
}

.mobile-get-started {
  background: linear-gradient(90deg, #d4af37, #ffd700);
  color: #000;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.mobile-get-started:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Mobile Social Icons */
.mobile-social {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-social-icon:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 1100px) {
  .pill-btn span {
    display: none;
  }
  
  .download-btn i {
    font-size: 18px;
    margin: 0;
  }
  
  .download-btn {
    padding: 8px 12px;
  }
}

@media (max-width: 900px) {
  .pill-nav {
    display: none;
  }
  
  .pill-actions {
    display: none;
  }
  
  .pill-hamburger {
    display: flex;
  }
  
  .pill-container {
    padding: 8px 15px;
  }
  
  .pill-header {
    width: 95%;
    top: 15px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 40px;
  }
}

/* ===== UPGRADED HERO SECTION - VIDEO BACKGROUND ===== */
.hero-video {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Video Background */
.video-background {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 85%;
  height: 85%;
  z-index: 0;
  border-radius: 20px;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* 65% dark overlay */
  z-index: 1;
}

/* Hero Content */
.hero-content-video {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: white;
}

.hero-text-container {
  max-width: 600px;
  margin-top: 150px;
  margin-left: 80px;
}

/* Typewriter Container */
.typewriter-container {
  margin-bottom: 30px;
}

.typewriter-line {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: white;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  opacity: 0;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  border-right:none;
  animation: none; /* Will be controlled by JS */
}

/* Typing animation keyframes */
@keyframes typing {
  from { width: 0; opacity: 1; }
  to { width: 100%; opacity: 1; }
}

/* @keyframes blink-cursor {
  0%, 100% { border-color: #d4af37; }
  50% { border-color: transparent; }
} */

/* Active typing state */
.typewriter-line.typing {
  opacity: 1;
  animation: typing 1s steps(15, end) forwards;
}

/* Completed state */
.typewriter-line.completed {
  opacity: 1;
  width: 100%;
  border-right: 4px solid transparent;
}

/* Individual line adjustments */
#line1 { animation-delay: 0s; }
#line2 { animation-delay: 0s; } /* Will be triggered by JS */
#line3 { animation-delay: 0s; } /* Will be triggered by JS */

/* Buttons */
.hero-buttons-video {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-buttons-video.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Primary Button - UPDATED SELECTOR */
.hero-primary-btn {
  background: linear-gradient(90deg, #d4af37, #ffd700);
  border: none;
  padding: 20px 42px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 32px;
  color: #000;
  text-decoration: none;      /* Added for link */
  display: inline-block;       /* Added for link */
  transition: all 0.3s ease;
}

.hero-primary-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

/* Secondary Button - REMOVED (commented out) */
/* .secondary-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 14px 32px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: #d4af37;
  color: #000;
} */

/* Remove old particles if needed */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Responsive - Tablet (768px) */
@media (max-width: 768px) {
  .hero-content-video {
    padding: 0 20px;
  }
  
  .video-background {
    top: 2%;
    height: 60%;
    width: 96%;
    left: 2%;
    border-radius: 12px;
  }
  
  .hero-text-container {
    margin-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .typewriter-line {
    font-size: 48px;
  }
  
  .hero-buttons-video {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .primary-btn, .secondary-btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  
  .video-background {
    height: 40%;
    top: 10%;
    width: 94%;
    left: 3%;
  }
  
  .hero-text-container {
    transform: translateY(10px) !important;
  }

  .typewriter-container {
    transform: translateY(-200px) !important;  
    margin-left: -70px;
  }
  
  .typewriter-line {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 2px;
    text-align: left;
  }
  
  .hero-buttons-video {
    transform: translateY(-208px) !important;
    margin-left: -70px;
    gap: 8px;
  }
  
  .hero-primary-btn {
    padding: 8px 16px;
    font-size: 22px;
  }
}

/* SYNTHETIC INDICES TICKER */
.synthetic-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1000;
  padding: 8px 0;
  overflow: hidden;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: inline-flex;
  animation: scrollTicker 40s linear infinite;
  white-space: nowrap;
}

.ticker-content:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 25px;
  font-family: 'Segoe UI', monospace;
  font-size: 14px;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.ticker-symbol {
  color: #d4af37;
  font-weight: bold;
  margin-right: 10px;
}

.ticker-price {
  color: white;
  margin-right: 8px;
  font-weight: 500;
}

.ticker-change {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ticker-change.positive {
  color: #4caf50;
}

.ticker-change.negative {
  color: #f44336;
}

.ticker-arrow {
  font-size: 16px;
  line-height: 1;
}

.ticker-percent {
  font-size: 12px;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Optional: Add a gradient fade on edges */
.synthetic-ticker::before,
.synthetic-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 2;
  pointer-events: none;
}

.synthetic-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 1), transparent);
}

.synthetic-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(10, 10, 10, 1), transparent);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .ticker-item {
    padding: 0 15px;
    font-size: 12px;
  }
  
  .ticker-symbol {
    margin-right: 5px;
  }
  
  .ticker-price {
    margin-right: 4px;
  }
}


/* ===== HOW IT WORKS - HORIZONTAL CIRCLES ===== */
.how-it-works {
  padding: 120px 20px;
  background: #3733333c; /* Black 40% */
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-badge {
  color: #d4af37; /* Gold 20% */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 48px;
  color: white; /* White 40% */
  margin-bottom: 20px;
  line-height: 1.2;
}

.gold-text {
  color: #d4af37;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Horizontal Steps Container */
.steps-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
}

/* Circle Step */
.step-circle {
  flex: 1;
  min-width: 220px;
  text-align: center;
  position: relative;
  padding: 30px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-circle.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Circle Design */
.circle-outer {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-inner {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.step-circle:hover .circle-inner {
  border-color: #d4af37;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.step-icon {
  font-size: 48px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Circle Glow Effect */
.circle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: glowPulse 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.step-circle:hover .circle-glow {
  opacity: 1;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

/* Text Styles */
.circle-title {
  font-size: 22px;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.circle-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 10px;
}

.circle-stats {
  margin-top: 15px;
}

.stat-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Horizontal Connectors */
.circle-connector {
  position: relative;
  width: 60px;
  height: 2px;
  margin-bottom: 80px; /* Align with circles */
}

.connector-line-h {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  transition: width 1s ease;
}

.connector-dot-h {
  position: absolute;
  top: -4px;
  right: 0;
  width: 10px;
  height: 10px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 20px #d4af37;
  opacity: 0;
  transition: opacity 0.3s;
}

.step-circle.revealed + .circle-connector .connector-dot-h {
  opacity: 1;
}

/* Background Animation */
.steps-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0.1;
  animation: lineMove 8s linear infinite;
}

@keyframes lineMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 1000px) {
  .steps-horizontal {
    flex-direction: column;
    gap: 40px;
  }
  
  .step-circle {
    width: 100%;
    max-width: 350px;
  }
  
  .circle-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }
  
  .connector-line-h {
    width: 2px;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #d4af37, transparent);
  }
  
  .connector-dot-h {
    top: auto;
    bottom: 0;
    left: -4px;
    right: auto;
  }
  
  .section-title {
    font-size: 36px;
  }
}


/* ===== 3D GLOBE SECTION ===== */
.globe-section {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #060606;
  overflow: hidden;
}

.globe-container {
  position: absolute;
  top: 0;
  left: 0;
  
  width: 100%;
  height: 100%;
  z-index: 1;
}

.globe-content {
  position: absolute;
  bottom: 15%;
  left: 10%;
  z-index: 3;
  max-width: 500px;
}

.globe-badge {
  color: #d4af37;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.globe-title {
  font-size: 48px;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gold-text {
  color: #d4af37;
}

.globe-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 30px;
}

.floating-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatPill 3s ease-in-out infinite;
}

.stat-pill:nth-child(2) {
  animation-delay: 0.5s;
}

.stat-pill:nth-child(3) {
  animation-delay: 1s;
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  position: relative;
}

.stat-dot.live::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

.stat-text {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.globe-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0%, #060606 100%);
}

@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .globe-content {
    bottom: 10%;
    left: 5%;
    right: 5%;
  }
  
  .globe-title {
    font-size: 36px;
  }
  
  .floating-stats {
    flex-direction: column;
    gap: 10px;
  }
}

/* @media (max-width: 480px) {
  .globe-section {
    margin-top: -300px; 
  }
} */

/* ===== THE JMJ ADVANTAGE SECTION ===== */
.jmj-advantage-section {
  position: relative;
  min-height: 100vh;
  padding: 100px 20px;
  overflow: hidden;
  background: #060606;
}

/* Animated Background */
.jmj-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.jmj-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.jmj-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.jmj-particles::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1), transparent 40%);
  animation: particlesMove 15s ease-in-out infinite;
}

@keyframes particlesMove {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.jmj-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent 70%);
  pointer-events: none;
}

/* Container */
.jmj-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.jmj-header {
  text-align: center;
  margin-bottom: 80px;
}

.jmj-title {
  font-size: 56px;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.jmj-subtitle {
  font-size: 24px;
  color: rgba(212, 175, 55, 0.9);
  font-weight: 300;
  letter-spacing: 2px;
}

.sparkle {
  font-size: 48px;
  animation: sparkleGlow 2s ease-in-out infinite;
  display: inline-block;
}

.sparkle:first-child { animation-delay: 0s; }
.sparkle:last-child { animation-delay: 1s; }

@keyframes sparkleGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 15px #d4af37); }
}

/* Services Container */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
/* Service Row - Base styles */
.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  margin-bottom: 80px;
}

.service-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Default: Animation on LEFT, Text on RIGHT */
.service-row .service-animation {
  order: 1;
}

.service-row .service-content {
  order: 2;
  text-align: left;
}

/* Reverse: Animation on RIGHT, Text on LEFT */
.service-row.reverse .service-animation {
  order: 2;
}

.service-row.reverse .service-content {
  order: 1;
  text-align: right;
}

/* Service Tickers */
.service-tickers {
  margin: 20px 0 15px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

.ticker-icon {
  color: #d4af37;
  font-size: 14px;
  animation: tickerPulse 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes tickerPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); text-shadow: 0 0 8px #d4af37; }
}

/* Alignment for left/right text */
.service-content.left .ticker-item {
  justify-content: flex-end;
  text-align: right;
}

.service-content.right .ticker-item {
  justify-content: flex-start;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .service-content.left .ticker-item,
  .service-content.right .ticker-item {
    justify-content: center;
    text-align: center;
  }
  
  .ticker-item {
    justify-content: center !important;
  }
}

/* Animation Side */
.service-animation {
  flex: 1;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Content Side */
.service-content {
  flex: 1;
  padding: 40px;
}

.service-title {
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Stats alignment based on parent */
.service-row .service-stats {
  justify-content: flex-start;
}

.service-row.reverse .service-stats {
  justify-content: flex-end;
}

.stat-pill {
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    gap: 30px;
  }
  
  .service-row .service-animation,
  .service-row.reverse .service-animation,
  .service-row .service-content,
  .service-row.reverse .service-content {
    order: 0;
    width: 100%;
    text-align: center;
  }
  
  .service-row .service-stats,
  .service-row.reverse .service-stats {
    justify-content: center;
  }
  
  .service-animation {
    width: 100%;
    height: 250px;
  }
}

/* ===== RESULTS GALLERY - HORIZONTAL SCROLL ===== */
.results-horizontal {
  padding: 40px 20px 60px;
  background: #060606;
  overflow: hidden;
  position: relative;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headline - minimal spacing */
.results-headline {
  text-align: center;
  font-size: 32px;
  color: white;
  margin-bottom: 30px; /* Minimal space */
  font-weight: 600;
  line-height: 1.3;
}

.gold-text {
  color: #d4af37;
}

/* Carousel */
.results-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
}

.results-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Result Card */
.result-card {
  flex: 0 0 calc(33.333% - 17px); /* 3 cards visible, accounting for gap */
  min-width: 280px;
  border-radius: 16px;
  height: 380px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  background: #0a0a0a;
  opacity: 0; /* Start invisible for fly-in animation */
  transform: translateY(-50px); /* Start above for fly-in */
  animation: flyInFromTop 0.8s forwards;
}

/* Stagger the animation */
.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }
.result-card:nth-child(3) { animation-delay: 0.3s; }
.result-card:nth-child(4) { animation-delay: 0.4s; }
.result-card:nth-child(5) { animation-delay: 0.5s; }
.result-card:nth-child(6) { animation-delay: 0.6s; }
.result-card:nth-child(7) { animation-delay: 0.7s; }
.result-card:nth-child(8) { animation-delay: 0.8s; }
.result-card:nth-child(9) { animation-delay: 0.9s; }

@keyframes flyInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-card:hover {
  transform: scale(1.05);
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  z-index: 10;
}

.result-img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
  padding: 10px;
}

.result-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 30px 15px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover .result-overlay {
  opacity: 1;
}

.result-profit {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #d4af37;
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
}



/* Navigation Arrows */
.results-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #d4af37;
  font-size: 24px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.results-arrow:hover {
  background: #d4af37;
  color: black;
  border-color: #d4af37;
  transform: translateY(-50%) scale(1.1);
}

.results-arrow.prev {
  left: 10px;
}

.results-arrow.next {
  right: 10px;
}

/* Dots */
.results-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.result-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.result-dot.active {
  background: #d4af37;
  transform: scale(1.3);
  box-shadow: 0 0 10px #d4af37;
}

/* Responsive */
@media (max-width: 900px) {
  .result-card {
    flex: 0 0 calc(50% - 13px); /* 2 cards on tablet */
    min-width: 240px;
    height: 320px; 
  }
  
  .results-headline {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .result-card {
    flex: 0 0 85%; /* 1 card on mobile */
    height: 280px;
    min-width: 0;
  }
  
  .results-headline {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .results-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ===== TESTIMONIAL WALL - DOUBLE SCROLLING ===== */
.testimonial-section {
  padding: 30px 0;
  background: #060606;
  position: relative;
  overflow: hidden;
  padding-bottom: 15px;
}

.testimonial-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 0 10px;
}

.testimonial-badge {
  color: #d4af37;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 15px;
}

.testimonial-title {
  font-size: 48px;
  color: white;
  margin-bottom: 15px;
}

.gold-text {
  color: #d4af37;
}

.testimonial-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

/* Testimonial Rows */
.testimonial-row {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.track-right-to-left {
  animation: scrollRightToLeft 40s linear infinite;
}

.track-left-to-right {
  animation: scrollLeftToRight 40s linear infinite;
}

/* Pause on hover */
.testimonial-row:hover .testimonial-track {
  animation-play-state: paused;
}

/* Testimonial Card */
.testimonial-card {
  width: 350px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #d4af37, transparent, #d4af37);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: transparent;
}

.testimonial-card:hover::before {
  opacity: 0.3;
  animation: borderRotate 2s linear infinite;
}

/* @keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} */

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-text {
  color: black;
  font-weight: bold;
  font-size: 18px;
  z-index: 2;
}

.avatar-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #d4af37, transparent);
  border-radius: 50%;
  animation: avatarPulse 2s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.client-info h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 5px;
}

.client-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #d4af37;
  font-size: 14px;
}

.profit-badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.profit-badge.positive {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trade-pair {
  color: #d4af37;
  font-size: 12px;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.trade-time {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

/* Scroll Animations */
@keyframes scrollRightToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollLeftToRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Gradient fades for edges */
.testimonial-fade-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(90deg, #060606, transparent);
  z-index: 3;
  pointer-events: none;
}

.testimonial-fade-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(-90deg, #060606, transparent);
  z-index: 3;
  pointer-events: none;
}

/* Floating animation for cards */
.testimonial-card {
  animation: cardFloat 3s ease-in-out infinite;
}

.testimonial-card:nth-child(even) {
  animation-delay: 1.5s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 36px;
  }
  
  .testimonial-card {
    width: 280px;
  }
  
  .testimonial-fade-left,
  .testimonial-fade-right {
    width: 50px;
  }
}

/* ===== DERIV BROKER SECTION ===== */
.deriv-section {
  padding: 80px 20px;
  background: #060606;
  position: relative;
}

.deriv-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Headline */
.deriv-headline {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.deriv-headline-white {
  color: white;
  display: block;
}

.deriv-headline-gold {
  color: #d4af37;
  display: block;
}

/* Image Container */
.deriv-link {
  display: block;
  width: 90%;
  margin: 0 auto;
  text-decoration: none;
  cursor: pointer;
}

.deriv-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.deriv-image-wrapper:hover {
  transform: scale(1.02);
}

.deriv-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
}

/* Optional hint text */
.deriv-hint {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 900px) {
  .deriv-headline {
    font-size: 32px;
  }
  
  .deriv-link {
    width: 95%;
  }
}

@media (max-width: 600px) {
  .deriv-headline {
    font-size: 24px;
  }
  
  .deriv-headline-white,
  .deriv-headline-gold {
    display: inline;
  }
  
  .deriv-headline-white::after {
    content: " ";
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 60px 20px; /* Reduced padding */
  background: #060606;
  position: relative;
  margin-top: 70px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Title - minimal padding */
.faq-title {
  text-align: center;
  color: white;
  font-size: 36px;
  margin-bottom: 40px; /* Reduced from typical 60-80px */
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 15px;
  display: inline-block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: table;
}

/* FAQ Grid */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ Item */
.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item:hover {
  transform: scale(1.01);
  border-color: #d4af37;
}

.faq-item.active {
  border-color: #d4af37;
}

/* Question */
.faq-question {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  user-select: none;
}

.faq-number {
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
  min-width: 35px;
}

.faq-question h3 {
  flex: 1;
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.faq-icon {
  color: #d4af37;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  padding: 0 25px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-top: 0 solid rgba(212, 175, 55, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding: 0 25px 20px 75px; /* Left padding aligns with text */
  border-top-width: 1px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Contact Button */
.faq-contact {
  text-align: center;
  margin-top: 50px;
}

.faq-contact-button {
  display: inline-block;
  background: transparent;
  color: #d4af37;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border: 1px solid #d4af37;
  border-radius: 40px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.faq-contact-button:hover {
  transform: scale(1.05);
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-contact-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-number {
    font-size: 12px;
    min-width: 30px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 15px 50px;
  }
}

/* ===== DOWNLOAD APP SECTION - UPDATED ===== */
.download-section {
  padding: 60px 20px;
  background: #060606;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05), transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(212, 175, 55, 0.05), transparent 50%);
  pointer-events: none;
}

.download-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Left side - Content */
.download-content.left {
  flex: 1;
  order: 1;
}

/* Right side - Phone Mockup */
.download-mockup.right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  order: 2;
}

.mockup-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.3), transparent 70%);
  filter: blur(30px);
  z-index: 1;
  opacity: 0.5;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* Content styles */
.download-title {
  font-size: 42px;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.gold-text {
  color: #d4af37;
}

.download-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 450px;
}

/* Features */
.download-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 30px;
}

.download-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.download-features .feature-icon {
  font-size: 18px;
  color: #d4af37;
  min-width: 24px;
}

/* Button Group */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

/* Action Buttons */
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

/* Google Play Button */
.google-btn {
  background: transparent;
  padding: 0;
  max-width: 160px;
}

.google-btn:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.google-play-logo {
  width: 100%;
  height: auto;
  display: block;
}

/* Web Button */
.web-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid #d4af37;
  color: #d4af37;
}

.web-btn i {
  font-size: 16px;
}

.web-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Telegram Button */
.telegram-btn {
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid #0088cc;
  color: #0088cc;
}

.telegram-btn i {
  font-size: 16px;
}

.telegram-btn:hover {
  background: #0088cc;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

/* Download Note */
.download-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .download-container {
    flex-direction: column;
    text-align: center;
  }
  
  .download-content.left,
  .download-mockup.right {
    order: 0;
    width: 100%;
  }
  
  .download-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .download-features {
    justify-content: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .button-group {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .download-title {
    font-size: 32px;
  }
  
  .download-features {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .action-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .google-btn {
    max-width: 200px;
  }
}

/* ===== FOOTER SECTION - ORIGINAL LAYOUT UPDATED ===== */
.footer-section {
  background: #0a0a0a;
  padding: 50px 20px 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  margin-bottom: 40px; /* Space for ticker */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Footer Grid - 4 Columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Logo Column */
.logo-col {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  max-width: 120px;
  height: auto;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #d4af37;
  transform: translateX(5px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Compliance Card - Compact White Background */
.compliance-card {
  background: white;
  border-radius: 30px;
  padding: 10px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 30px auto;
  width: auto;
  max-width: fit-content;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
   display: flex;
  margin-left: auto;
  margin-right: auto;
}

.compliance-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.compliance-text {
  display: flex;
  flex-direction: column;
}

.compliance-title {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.compliance-badge {
  color: #d4af37;
  font-size: 12px;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.copyright {
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #d4af37;
}

.separator {
  color: rgba(212, 175, 55, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .logo-col {
    grid-column: span 2;
    justify-content: center;
  }
  
  .footer-logo {
    max-width: 100px;
  }
  
  .compliance-card {
    padding: 8px 20px;
  }
  
  .compliance-logo {
    height: 25px;
  }
  
  .compliance-title {
    font-size: 13px;
  }
  
  .compliance-badge {
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .logo-col {
    grid-column: span 1;
  }
  
  .footer-col {
    align-items: center;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .compliance-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    width: 100%;
  }
  
  .compliance-text {
    align-items: center;
  }
}

@media (max-width: 400px) {
  .compliance-card {
    padding: 10px;
  }
  
  .compliance-logo {
    height: 20px;
  }
  
  .compliance-title {
    font-size: 12px;
  }
  
  .compliance-badge {
    font-size: 10px;
  }
}

/* ===== ABOUT SECTION - FRESH BUILD ===== */
.about-section {
  padding: 60px 20px;
  background: #060606;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headline */
.about-headline {
  text-align: center;
  color: #d4af37;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  letter-spacing: 1px;
}

.about-headline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #d4af37;
  opacity: 0.5;
}

/* Content Layout */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left side - Image */
.about-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

/* Image hover effect */
.about-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 40px rgba(212, 175, 55, 0.3);
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.3), transparent 70%);
  filter: blur(20px);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image-wrapper:hover .image-glow {
  opacity: 1;
}

/* Right side - Text box */
.about-text-box {
  flex: 1;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-text-box.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Text box hover effect */
.about-text-box:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  transform: translateX(0) translateY(-5px);
}

.about-paragraph {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

.about-quote {
  color: #d4af37;
  font-style: italic;
  border-left: 3px solid #d4af37;
  padding-left: 20px;
  font-weight: 500;
}

/* ===== PILLARS SECTION - FRESH BUILD ===== */
.pillars-section {
  padding: 60px 20px 80px;
  background: #060606;
  position: relative;
}

.pillars-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.pillars-header {
  text-align: center;
  margin-bottom: 50px;
}

.pillars-title {
  font-size: 42px;
  color: white;
  margin-bottom: 10px;
}

.gold-text {
  color: #d4af37;
}

.pillars-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
}

/* Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Pillar Card */
.pillar-card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.9s ease;
  opacity: 0;
  transform: translateY(30px);
}

/* Entrance animations - staggered */
.pillar-card:nth-child(1) { transition-delay: 0.1s; }
.pillar-card:nth-child(2) { transition-delay: 0.2s; }
.pillar-card:nth-child(3) { transition-delay: 0.3s; }
.pillar-card:nth-child(4) { transition-delay: 0.4s; }

.pillar-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect */
.pillar-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #d4af37;
  box-shadow: 0 20px 30px rgba(212, 175, 55, 0.25);
  background: rgba(20, 20, 20, 0.95);
}

/* Icon Container */
.pillar-icon-container {
  margin-bottom: 15px;
}

.pillar-icon {
  font-size: 48px;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Icon animations on hover */
.pillar-card:hover .pillar-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #d4af37);
}

/* Individual icon rotations (subtle) */
.account-icon { animation: none; }
.signals-icon { animation: none; }
.mentorship-icon { animation: none; }
.pool-icon { animation: none; }

/* Add subtle animation on hover */
.pillar-card:hover .account-icon {
  animation: rotate 4s linear infinite;
}

.pillar-card:hover .signals-icon {
  animation: pulse 2s ease-in-out infinite;
}

.pillar-card:hover .mentorship-icon {
  animation: float 3s ease-in-out infinite;
}

.pillar-card:hover .pool-icon {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Title */
.pillar-title {
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-title {
  color: #ffd700;
}

/* Description */
.pillar-details {
  margin-top: 10px;
}

.pillar-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.pillar-card:hover .pillar-description {
  color: white;
}

/* Glow effect */
.pillar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.3), transparent 70%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

.pillar-card:hover .pillar-glow {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-image-wrapper,
  .about-text-box {
    width: 100%;
    max-width: 500px;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillars-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .about-headline {
    font-size: 28px;
  }
  
  .about-text-box {
    padding: 25px;
  }
  
  .about-paragraph {
    font-size: 14px;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .pillar-card {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .pillars-title {
    font-size: 28px;
  }
}
 
/* ===== GOLD STATS SECTION WITH FLOATING PARTICLES ===== */
.stats-section {
  padding: 50px 20px;
  background: #c29b1c; /* Rich gold background */
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  overflow: hidden; /* Keeps particles contained */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Floating Particles Container */
.stats-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* So clicks pass through to buttons */
}

/* Individual Particles */
.stats-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6); /* Light gold/white particles */
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Particle Animations */
@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(20px) rotate(180deg);
    opacity: 0;
  }
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2; /* Above particles */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

 .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgb(0, 0, 0);
  z-index: 5;
}


.stat-number {
  font-size: 60px;
  font-weight: 900;
  color: #1a1a1a; /* Dark text */
  line-height: 1.2;
  margin-bottom: 8px;
  font-family: 'Segoe UI', monospace;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}

/* Dark + symbols */
#stat1::after {
  content: '+';
  font-size: 36px;
  color: #1a1a1a;
  margin-left: 2px;
}

#stat2::after {
  content:'+';
  font-size: 32px;
  color: #1a1a1a;
  margin-left: 4px;
  font-weight: 600;
}


#stat3::after {
  content: 'K+';
  font-size: 32px;
  color: #1a1a1a;
  margin-left: 4px;
  font-weight: 600;
}

.stat-label {
  color: #333333; /* Dark gray */
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section {
    padding: 40px 15px;
    min-height: 200px;
  }
  
  .stat-number {
    font-size: 42px;
  }
  
  #stat1::after {
    font-size: 28px;
  }
  
  #stat2::after,
  #stat3::after {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 12px;
  }
}

/* ===== LEGAL PAGES STYLING ===== */
.legal-page {
  padding: 120px 20px 80px;
  background: #060606;
  min-height: 100vh;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 50px;
}

.legal-container h1 {
  color: #d4af37;
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 600;
}

.last-updated {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 40px;
  font-style: italic;
}

.legal-content h2 {
  color: white;
  font-size: 24px;
  margin: 30px 0 15px;
  font-weight: 500;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  margin: 10px 0 20px 20px;
}

.legal-content li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: #d4af37;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.legal-content a:hover {
  border-bottom-color: #d4af37;
}

.legal-content strong {
  color: #d4af37;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-container {
    padding: 30px 20px;
  }
  
  .legal-container h1 {
    font-size: 32px;
  }
  
  .legal-content h2 {
    font-size: 20px;
  }
  
  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .legal-container {
    padding: 20px 15px;
  }
  
  .legal-container h1 {
    font-size: 28px;
  }
}

/* Risk Disclosure Specific Styling */
.risk-warning-banner {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #d4af37;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
}

.warning-title {
  color: #d4af37;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.risk-acknowledgment-box {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid #d4af37;
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
  text-align: center;
}

.acknowledgment-title {
  color: #d4af37;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.legal-content h3 {
  color: white;
  font-size: 20px;
  margin: 25px 0 10px;
  font-weight: 500;
}
