/* ===== INDEX PAGE ENHANCED STYLES ====== */
/* Professional Crypto Project - Mobile First Design */

/* ===== VARIABLES & GLOBALS ===== */
:root {
  --hero-gradient: linear-gradient(135deg, 
    var(--dark-bg) 0%, 
    #1a120b 30%, 
    #2a1f14 50%, 
    #1a120b 70%, 
    var(--dark-bg) 100%);
    --rebel-red: #d74d4d; /* Your mascot red */
  --gold-gradient: linear-gradient(45deg, var(--rebel-gold), #ffd700);
  --red-gradient: linear-gradient(45deg, var(--rebel-red), #ff4757);
  --purple-gradient: linear-gradient(45deg, var(--rebel-purple), #9d4edd);
  --blue-gradient: linear-gradient(45deg, var(--rebel-blue), #4cc9f0);
  
  /* Animation durations */
  --animation-fast: 0.3s;
  --animation-medium: 0.5s;
  --animation-slow: 0.8s;
  --animation-very-slow: 1.2s;
  
  /* Shadows */
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(212, 167, 106, 0.4);
}

/* ===== LOADER STYLES ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--animation-medium) ease, visibility var(--animation-medium) ease;
}

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

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(212, 167, 106, 0.2);
  border-top-color: var(--rebel-gold);
  border-radius: 50%;
  margin: 0 auto 2rem;
  animation: spin 1s linear infinite;
}

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

.loader-text {
  height: 40px;
  position: relative;
  overflow: hidden;
}

.text-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--rebel-gold);
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0;
  animation: text-slide 5s infinite;
}

.text-item:nth-child(1) { animation-delay: 0s; }
.text-item:nth-child(2) { animation-delay: 1s; }
.text-item:nth-child(3) { animation-delay: 2s; }
.text-item:nth-child(4) { animation-delay: 3s; }
.text-item:nth-child(5) { animation-delay: 4s; }

@keyframes text-slide {
  0%, 20% { opacity: 0; transform: translateY(20px); }
  10%, 15% { opacity: 1; transform: translateY(0); }
  30% { opacity: 0; transform: translateY(-20px); }
}

.loader-progress {
  margin-top: 2rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  animation: progress-load 3s ease-in-out forwards;
}

@keyframes progress-load {
  to { width: 100%; }
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ===== HERO SECTION ENHANCEMENTS ===== */
.page-hero--main {
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
  padding: 4rem 0 2rem;
}
/* Quick Stats Bar */
.quick-stats-bar {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .page-hero--main {
    padding: 6rem 0 3rem;
  }
}
/* ===== FIX HERO SECTION WIDTH ===== */

/* Ensure all sections use the same container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Fix hero section container */
.page-hero--main .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden; /* Prevent horizontal scroll */
}

/* Ensure hero content doesn't overflow */
.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* Fix visual container width */
.visual-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

/* Fix chain visualization width on mobile */
.chain-visualization {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Ensure nodes don't overflow */
.chain-node {
  width: 100%;
  max-width: 200px;
  min-width: auto;
  box-sizing: border-box;
}

/* Fix bridge animation width */
.bridge-animation {
  width: auto;
  min-width: 50px;
  max-width: 150px;
  padding: 0 0.5rem;
}

/* Quick stats bar fix */
.quick-stats-bar {
  width: calc(100% - 2rem);
  margin: 2rem auto 0;
  max-width: 1200px;
  box-sizing: border-box;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  /* Fix container padding */
  .container {
    padding: 0 1rem;
  }
  
  /* Fix hero section overflow */
  .page-hero--main {
    overflow: hidden;
    width: 100%;
  }
  
  /* Stack chain visualization vertically */
  .chain-visualization {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
  }
  
  /* Make nodes full width but with max width */
  .chain-node {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  /* Adjust bridge animation for vertical layout */
  .bridge-animation {
    padding: 1rem 0;
    width: 3px;
    height: 50px;
  }
  
  .bridge-line {
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, var(--rebel-gold), var(--rebel-blue));
  }
  
  .bridge-tokens {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Fix floating logo size on mobile */
  .floating-logo {
    width: 180px;
    height: 180px;
  }
  
  .logo-glow {
    width: 220px;
    height: 220px;
  }
  
  /* Fix metrics grid on mobile */
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .metric-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Fix buttons on mobile */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Fix trust badges */
  .hero-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .trust-badge {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  /* Fix quick stats bar */
  .quick-stats-bar {
    width: calc(100% - 2rem);
    margin: 1.5rem auto 0;
    padding: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Small mobile fixes */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
    padding: 0 0.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  .chain-node {
    max-width: 100%;
    padding: 1rem;
  }
  
  .token-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .quick-stats-bar {
    padding: 0.75rem;
    margin: 1rem auto 0;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-title {
    font-size: 0.7rem;
  }
}

/* Desktop width fixes */
@media (min-width: 769px) and (max-width: 1199px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .chain-visualization {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Prevent horizontal scroll globally */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
}


.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 167, 106, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(215, 77, 77, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
  }
}

.hero-text {
  text-align: center;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-text {
    text-align: left;
  }
}

.hero-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 167, 106, 0.2);
  color: var(--rebel-gold);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(212, 167, 106, 0.3);
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title .title-line {
  display: block;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

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

.hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.1rem;
  }
}
.hero-sub-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--rebel-gold);
}

@media (min-width: 992px) {
  .hero-sub-description {
    margin-left: 0;
    margin-right: 0;
    font-size: 1rem;
  }
}

.highlight-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Metrics Grid */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: transform var(--animation-fast) ease, 
              border-color var(--animation-fast) ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 167, 106, 0.3);
}

.metric-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 167, 106, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--rebel-gold);
  flex-shrink: 0;
}

.metric-info {
  flex: 1;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-cta {
  min-width: 200px;
}

.primary-glow {
  background: var(--gold-gradient);
  color: #333;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.primary-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gold-gradient);
  border-radius: 12px;
  z-index: -1;
  animation: glow 2s linear infinite;
  opacity: 0.7;
}

@keyframes glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

.gold-glow {
  background: var(--gold-gradient);
  color: #333;
  position: relative;
  z-index: 1;
}

.gold-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gold-gradient);
  border-radius: 12px;
  z-index: -1;
  animation: gold-glow 2s linear infinite;
  opacity: 0.7;
}

@keyframes gold-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-trust-badges {
    justify-content: flex-start;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--animation-fast) ease;
}

.trust-badge:hover {
  transform: translateY(-2px);
  border-color: var(--rebel-gold);
}

.trust-badge i {
  color: var(--rebel-gold);
}

/* Visual Container */
.visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.floating-logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  position: relative;
  /* Add extra padding top to accommodate upward movement */
  padding-top: 0; /* Space for upward float */
  margin-bottom: 30px; /* Extra space below for glow */
}

@media (min-width: 768px) {
  .floating-logo {
    width: 250px;
    height: 250px;
    margin-bottom: 40px;
  }
}


/* Adjust logo 3d positioning - fixed */
.logo-3d {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(212, 167, 106, 0.5));
  animation: float 3s ease-in-out infinite;
  transform-style: preserve-3d;
  position: relative;
}

/* ===== ANIMATION FIXES ===== */

/* Ensure animations work */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotateY(0deg); 
  }
  50% { 
    transform: translateY(-10px) rotateY(5deg);
  }
}

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

@keyframes move-right {
  0% { transform: translateX(-30px); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(30px); opacity: 0; }
}

@keyframes text-slide {
  0%, 20% { opacity: 0; transform: translateY(20px); }
  10%, 15% { opacity: 1; transform: translateY(0); }
  30% { opacity: 0; transform: translateY(-20px); }
}

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

@keyframes progress-load {
  to { width: 100%; }
}

@keyframes glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

@keyframes gold-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes achievement-pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 4px 15px rgba(215, 77, 77, 0.3);
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 0 6px 20px rgba(215, 77, 77, 0.4);
  }
}

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

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

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

@keyframes pulse-ring {
  0% { 
    width: 100%; 
    height: 100%; 
    opacity: 1;
  }
  100% { 
    width: 150%; 
    height: 150%; 
    opacity: 0;
  }
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-40px) translateX(var(--tx, 20px));
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fix logo glow positioning - NO CUTTING */
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%; /* Slightly larger than container */
  height: 110%; /* Slightly larger than container */
  background: radial-gradient(
    circle at center,
    rgba(212, 167, 106, 0.4) 0%,
    rgba(212, 167, 106, 0.2) 30%,
    transparent 70%
  );
  z-index: -1;
  border-radius: 50%;
  /* Remove the top adjustment that was causing the cut */
  top: 50%;
  /* Ensure it doesn't get cut by overflow */
  pointer-events: none;
  box-shadow: 0 0 60px rgba(212, 167, 106, 0.3);
}

@media (min-width: 768px) {
  .logo-glow {
    width: 120%;
    height: 120%;
    box-shadow: 0 0 80px rgba(212, 167, 106, 0.4);
  }
}
/* Ensure visual container doesn't cut the glow */
.visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  /* Allow glow to overflow naturally */
  overflow: visible;
  padding: 10px 0; /* Add vertical padding for glow */
}

/* Ensure hero section allows overflow for glow effects */
.page-hero--main {
  position: relative;
  overflow: visible; /* Changed from hidden to visible */
}

.page-hero--main .container {
  overflow: visible; /* Allow glow effects to show */
}
/* Chain Visualization */
.chain-visualization {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .chain-visualization {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .chain-visualization {
    gap: 2rem;
  }
}

.chain-node {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 150px;
  width: 100%;
  max-width: 200px;
  box-shadow: var(--shadow-light);
  backdrop-filter: blur(10px);
  transition: transform var(--animation-medium) ease;
}

.chain-node:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.node-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 167, 106, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rebel-gold);
  margin: 0 auto 1rem;
  border: 2px solid rgba(212, 167, 106, 0.4);
}

.solana-node .node-icon {
  background: rgba(212, 167, 106, 0.25); /* Gold instead of blue */
  border-color: rgba(212, 167, 106, 0.4); /* Gold border */
  color: var(--rebel-gold); /* Gold icon color */
}

.node-label {
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .node-label {
    font-size: 1.2rem;
  }
}

.node-tokens {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.token-badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--animation-fast) ease;
}

.token-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}
.chain-node.base-node .token-badge {
  background: rgba(215, 77, 77, 0.2); /* Red background */
  color: var(--rebel-red); /* Red text */
  border-color: rgba(215, 77, 77, 0.3); /* Red border */
}
.token-badge.nft {
  background: rgba(255, 215, 0, 0.2);
  color: var(--rebel-gold);
  border-color: rgba(255, 215, 0, 0.3);
}

.token-badge.reward {
  background: rgba(212, 167, 106, 0.2); /* Gold/Yellow background */
  color: var(--rebel-gold); /* Gold text */
  border-color: rgba(212, 167, 106, 0.3); /* Gold border */
}
.chain-node.solana-node .token-badge.reward {
  background: rgba(212, 167, 106, 0.25); /* Slightly stronger gold */
  color: var(--rebel-gold);
  border-color: rgba(212, 167, 106, 0.4);
  font-weight: 700;
}
/* Bridge Animation */
.bridge-animation {
  position: relative;
  padding: 1rem 0;
  width: 100%;
}

@media (min-width: 768px) {
  .bridge-animation {
    width: auto;
    padding: 0 1.5rem;
  }
}

.bridge-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rebel-red), var(--rebel-gold), var(--rebel-red));
  position: relative;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .bridge-line {
    width: 100px;
    height: 3px;
  }
}

@media (min-width: 1200px) {
  .bridge-line {
    width: 150px;
  }
}

.bridge-tokens {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.moving-coin {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, var(--rebel-red), var(--rebel-gold));
  border-radius: 50%;
  animation: move-right 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(212, 167, 106, 0.5);
}

@keyframes move-right {
  0% { transform: translateX(-30px); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(30px); opacity: 0; }
}

@media (min-width: 768px) {
  .moving-coin {
    width: 25px;
    height: 25px;
  }
  
  @keyframes move-right {
    0% { transform: translateX(-40px); opacity: 0; }
    50% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(40px); opacity: 0; }
  }
}

/* Reward Flow */
.reward-flow {
  text-align: center;
  margin-top: 1rem;
}

.flow-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flow-animation {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.flow-dot {
  width: 10px;
  height: 10px;
  background: var(--rebel-gold);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(212, 167, 106, 0.5);
}

.flow-dot.delay-1 { animation-delay: 0.2s; }
.flow-dot.delay-2 { animation-delay: 0.4s; }

/* ===== TICKER LABELS ===== */
.main-logo-container,
.token-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.ticker-label {
  text-align: center;
  margin-top: 1rem;
}

.ticker-symbol {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.rebelinux-ticker .ticker-symbol {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(215, 77, 77, 0.3);
}

.ticker-name {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Logo Styling - BOTH SAME SIZE */
.main-logo-container .floating-logo,
.token-logo-container .floating-logo {
  width: 180px;  /* Same size for both */
  height: 180px; /* Same size for both */
  margin: 0 auto;
}

/* Make sure logo images fill containers properly */
.main-logo-container .logo-3d,
.token-logo-container .token-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Keep the floating animation for both */
.token-logo-container .token-logo-img {
  filter: drop-shadow(0 0 15px rgba(215, 77, 77, 0.5)); /* Changed to red */
  animation: float 3s ease-in-out infinite;
}

/* Glow effects */
.rebelinux-glow {
  background: radial-gradient(
    circle at center,
        rgba(215, 77, 77, 0.4) 0%, /* Changed to red */
    rgba(215, 77, 77, 0.2) 30%, /* Changed to red */
    transparent 70%
  );
    box-shadow: 0 0 60px rgba(215, 77, 77, 0.3); /* Added red shadow */
}

.main-logo-container .logo-glow {
  background: radial-gradient(
    circle at center,
    rgba(212, 167, 106, 0.4) 0%,
    rgba(212, 167, 106, 0.2) 30%,
    transparent 70%
  );
}
/* Optional red pulse effect for $rebelinux logo */
.rebelinux-logo {
  position: relative;
}

.rebelinux-logo::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--rebel-red);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-red 2s ease-in-out infinite;
  pointer-events: none;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .ticker-symbol {
    font-size: 1.5rem;
  }
  
  .main-logo-container .floating-logo,
  .token-logo-container .floating-logo {
    width: 150px;
    height: 150px;
  }
  
  .main-logo-container,
  .token-logo-container {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-logo-container .floating-logo,
  .token-logo-container .floating-logo {
    width: 120px;
    height: 120px;
  }
  
  /* Hide pulse effect on very small screens */
  .rebelinux-logo::before {
    display: none;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ticker-symbol {
    font-size: 1.5rem;
  }
  
  .main-logo-container .floating-logo,
  .token-logo-container .floating-logo {
    width: 150px;
    height: 150px;
  }
  
  .main-logo-container,
  .token-logo-container {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-logo-container .floating-logo,
  .token-logo-container .floating-logo {
    width: 120px;
    height: 120px;
  }
}



}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}

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

.stat-title {
  font-size: 0.75rem;
  color: var(--rebel-gold) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .stat-title {
    font-size: 0.875rem;
  }
}
/* ===== COLORED STATS ===== */
.stat-item.red-stat .stat-number {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--rebel-red); /* Fallback */
}

.stat-item.yellow-stat .stat-number {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--rebel-gold); /* Fallback */
}

/* Add subtle hover effects */
.stat-item.red-stat:hover .stat-number {
  text-shadow: 0 0 10px rgba(215, 77, 77, 0.3);
}

.stat-item.yellow-stat:hover .stat-number {
  text-shadow: 0 0 10px rgba(212, 167, 106, 0.3);
}

/* Update stat titles to match colors */
.stat-item.red-stat .stat-title {
  color: var(--rebel-red) !important;
  opacity: 0.9;
}

.stat-item.yellow-stat .stat-title {
  color: var(--rebel-gold) !important;
  opacity: 0.9;
}
/* Optional: If you want the text to have the gradient too */
.stat-item.yellow-stat .stat-title {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--rebel-gold); /* Fallback */
}

.stat-item.red-stat .stat-title {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--rebel-red); /* Fallback */
}
/* Optional: Add background color on hover */
.stat-item.red-stat:hover {
  background: rgba(215, 77, 77, 0.05);
}

.stat-item.yellow-stat:hover {
  background: rgba(212, 167, 106, 0.05);
}

/* ===== ACHIEVEMENT BADGES ===== */
.hero-achievement {
  margin: 1.5rem 0 2rem;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-achievement {
    text-align: left;
    margin: 1.5rem 0 2rem;
  }
}

.achievement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, var(--rebel-red), #e74c3c); /* Changed to red */
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid rgba(215, 77, 77, 0.3); /* Changed to red */
  box-shadow: 0 4px 15px rgba(215, 77, 77, 0.3); /* Changed to red */
  animation: achievement-pulse 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
  transition: transform var(--animation-fast) ease;
}

.achievement-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(215, 77, 77, 0.4); /* Changed to red */
}

@keyframes achievement-pulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 4px 15px rgba(215, 77, 77, 0.3); /* Changed to red */
  }
  50% { 
    transform: scale(1.02); 
    box-shadow: 0 6px 20px rgba(215, 77, 77, 0.4); /* Changed to red */
  }
}


/* Token Achievement Badge */
.token-achievement {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(45deg, rgba(215, 77, 77, 0.1), rgba(231, 76, 60, 0.1)); /* Red */
  color: var(--rebel-red); /* Red text */
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(215, 77, 77, 0.2); /* Red border */
  transition: all var(--animation-fast) ease;
}

.token-achievement:hover {
  background: linear-gradient(45deg, rgba(215, 77, 77, 0.15), rgba(231, 76, 60, 0.15));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 77, 77, 0.15);
}
.token-achievement i {
  font-size: 1rem;
  color: var(--rebel-red); /* Red icon */
}
/* $rebelinux Token Achievement (Purple) */
.token-achievement {
  background: linear-gradient(45deg, rgba(157, 78, 221, 0.1), rgba(123, 44, 191, 0.1));
  color: var(--rebel-purple);
  border: 1px solid rgba(157, 78, 221, 0.2);
}

.token-achievement i {
  font-size: 1rem;
  color: var(--rebel-purple);
}


/* $REBL Token Achievement (Gold/Blue) */
.rebl-achievement {
  background: linear-gradient(45deg, rgba(212, 167, 106, 0.1), rgba(0, 170, 255, 0.1));
  color: var(--rebel-gold);
  border: 1px solid rgba(212, 167, 106, 0.3);
}

.rebl-achievement:hover {
  background: linear-gradient(45deg, rgba(212, 167, 106, 0.15), rgba(0, 170, 255, 0.15));
  box-shadow: 0 4px 12px rgba(212, 167, 106, 0.15);
}

.rebl-achievement i {
  color: var(--rebel-blue);
}

.token-achievement:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 78, 221, 0.15);
}
/* ===== VALUE PROPOSITION SECTION ===== */
.value-proposition {
  padding: 4rem 0;
  background: white;
}
/* ===== VALUE PROPOSITION SECTION ===== */
.value-proposition {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 768px) {
  .value-proposition {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-header h2 {
  font-size: 1.75rem;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header h2 i {
  color: var(--rebel-gold);
}

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

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.1rem;
  }
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .value-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: #f8f9ff;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all var(--animation-medium) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(212, 167, 106, 0.2);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.gradient-purple {
  background: var(--purple-gradient);
}

.gradient-red {
  background: var(--red-gradient);
}

.gradient-gold {
  background: var(--gold-gradient);
}

.gradient-blue {
  background: var(--blue-gradient);
}

.value-content {
  flex: 1;
}

.value-content h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 1rem;
}

.value-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.value-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #555;
  font-size: 0.95rem;
}

.value-features li i {
  color: var(--rebel-gold);
  margin-top: 0.25rem;
}

/* ===== TOKEN ECOSYSTEM SECTION ===== */
.token-ecosystem {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1f14 100%);
}

@media (min-width: 768px) {
  .token-ecosystem {
    padding: 6rem 0;
  }
}

.token-ecosystem .section-header h2,
.token-ecosystem .section-subtitle {
  color: white;
}

.ecosystem-visual {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .ecosystem-visual {
    margin-bottom: 4rem;
  }
}

.ecosystem-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 992px) {
  .ecosystem-flow {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }
}

.chain-platform {
  flex: 1;
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .chain-platform {
    padding: 2rem;
  }
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.platform-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 167, 106, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--rebel-gold);
  flex-shrink: 0;
}

.solana-platform .platform-icon {
  background: rgba(0, 170, 255, 0.2);
  color: var(--rebel-blue);
}

.platform-info h3 {
  color: white;
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
}

.platform-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.token-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .token-card {
    padding: 2rem;
  }
}

.token-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.token-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.token-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.token-info {
  flex: 1;
}

.token-info h4 {
  color: white;
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .token-info h4 {
    font-size: 1.3rem;
  }
}

.token-type {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.token-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4CAF50;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.token-status i {
  font-size: 0.7rem;
}

.token-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-item:first-child {
  padding-top: 0;
}

.detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--rebel-gold);
  flex-shrink: 0;
}

.detail-text {
  flex: 1;
  min-width: 0;
}

.detail-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.detail-value.highlight {
  color: var(--rebel-gold);
}

.contract-address {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.contract-address code {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all var(--animation-fast) ease;
  color: rgba(255, 255, 255, 0.9);
}

.contract-address code.expanded {
  white-space: normal;
  word-break: break-all;
  font-size: 0.75rem;
}

.copy-actions {
  display: flex;
  gap: 0.25rem;
}

.copy-btn, .view-btn, .wallet-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--animation-fast) ease;
  font-size: 0.9rem;
}

.copy-btn:hover {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.view-btn:hover {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
}

.wallet-btn:hover {
  background: rgba(212, 167, 106, 0.2);
  color: var(--rebel-gold);
}

.token-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .token-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.action-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all var(--animation-fast) ease;
  font-size: 0.9rem;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .action-btn {
    font-size: 0.95rem;
  }
}

.action-btn.primary {
  background: var(--rebel-gold);
  color: white;
}

.action-btn.secondary {
  background: var(--rebel-blue);
  color: white;
}

.action-btn.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.action-btn.wallet-action {
  background: rgba(212, 167, 106, 0.2);
  color: var(--rebel-gold);
  border: 1px solid rgba(212, 167, 106, 0.3);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.action-btn.primary:hover {
  background: #e6b65f;
}

.action-btn.secondary:hover {
  background: #0097d8;
}

.action-btn.outline:hover {
  border-color: var(--rebel-gold);
  background: rgba(212, 167, 106, 0.1);
}

.action-btn.wallet-action:hover {
  background: var(--rebel-gold);
  color: white;
}

.nft-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.nft-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.nft-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rebel-gold);
  flex-shrink: 0;
}

.nft-info h4 {
  color: white;
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
}

.nft-type {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.nft-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nft-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.nft-status i {
  color: var(--rebel-gold);
}

.nft-status strong {
  color: var(--rebel-gold);
  font-weight: 700;
}

.bridge-animation {
  position: relative;
  padding: 2rem 0;
  width: 100%;
}

@media (min-width: 992px) {
  .bridge-animation {
    padding: 0 1.5rem;
    width: auto;
  }
}

.bridge-animation .bridge-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rebel-gold), var(--rebel-blue), var(--rebel-gold));
  position: relative;
}

@media (min-width: 992px) {
  .bridge-animation .bridge-line {
    width: 100px;
    height: 3px;
  }
}

.bridge-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.bridge-content i {
  color: var(--rebel-gold);
  font-size: 1.2rem;
}

.bridge-label {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}
/* ===== ZORA BRIDGE STYLING ===== */
.bridge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem; /* Reduced gap */
  padding: 0.5rem 1rem; /* Reduced padding */
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px; /* Slightly smaller radius */
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  min-width: auto; /* Allow it to shrink */
  max-width: 200px; /* Set a max width */
}

.zora-logo-above {
  margin-bottom: 0.125rem; /* Reduced margin */
}

.zora-logo-top {
  width: 24px; /* Smaller logo */
  height: 24px;
  border-radius: 6px;
  background: white;
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.bridge-text-group {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Reduced gap */
  padding: 0.25rem 0.5rem; /* Added inner padding */
}

.bridge-icon {
  color: var(--rebel-gold);
  font-size: 1rem; /* Smaller icon */
}

.bridge-label {
  color: white;
  font-weight: 600;
  font-size: 0.8rem; /* Smaller text */
  white-space: nowrap;
}

/* Remove the connecting line to save space */
/* .zora-logo-above::after { display: none; } */

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

@media (min-width: 768px) {
  .summary-card {
    padding: 3rem;
  }
}

.summary-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .summary-header {
    margin-bottom: 3rem;
  }
}

.summary-header h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .summary-header h4 {
    font-size: 1.8rem;
  }
}

.summary-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .summary-subtitle {
    font-size: 1.1rem;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: var(--rebel-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
  }
  
  .process-step:last-child .step-number::after {
    display: none;
  }
}

.step-content h5 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bonus-info {
  background: linear-gradient(135deg, rgba(212, 167, 106, 0.1), rgba(215, 77, 77, 0.1));
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(212, 167, 106, 0.2);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.bonus-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--rebel-gold), var(--rebel-red));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.bonus-content h5 {
  color: white;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.bonus-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== LIVE STATISTICS SECTION ===== */
.live-statistics {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 768px) {
  .live-statistics {
    padding: 6rem 0;
  }
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

.stat-card {
  background: #f8f9ff;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #e0e0e0;
  transition: all var(--animation-medium) ease;
}

@media (min-width: 768px) {
  .stat-card {
    padding: 2rem;
  }
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--rebel-gold);
}

.stat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.stat-title {
  color: #333;
  font-weight: 600;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .stat-title {
    font-size: 1.1rem;
  }
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 0.25rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-unit {
  color: var(--rebel-gold);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .stat-unit {
    font-size: 1.1rem;
  }
}

.stat-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

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

/* ===== COMPARISON SECTION ===== */
.comparison-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

@media (min-width: 768px) {
  .comparison-section {
    padding: 6rem 0;
  }
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
  }
}

.comparison-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all var(--animation-medium) ease;
}

.comparison-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.comparison-header {
  background: var(--gold-gradient);
  color: white;
  padding: 1.5rem 2rem;
  position: relative;
}

.comparison-card:nth-child(2) .comparison-header {
  background: linear-gradient(45deg, #666, #999);
}

.comparison-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .comparison-header h3 {
    font-size: 1.8rem;
  }
}

.comparison-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  color: var(--rebel-gold);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
}

.comparison-badge.best {
  background: var(--rebel-gold);
  color: #333;
}

.comparison-features {
  list-style: none;
  padding: 2rem;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item i.fa-check-circle {
  color: #4CAF50;
}

.feature-item.negative i.fa-times-circle {
  color: #f44336;
}

.feature-item span {
  color: #333;
  font-size: 1rem;
  line-height: 1.4;
}

.comparison-cta {
  padding: 0 2rem 2rem;
}

.comparison-cta .cta-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* ===== QUICK START SECTION ===== */
.quick-start {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 768px) {
  .quick-start {
    padding: 6rem 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

.step-card {
  background: #f8f9ff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--animation-medium) ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transition: all var(--animation-medium) ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(212, 167, 106, 0.2);
}

.step-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 3rem;
  color: var(--rebel-gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rebel-gold);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: gap var(--animation-fast) ease;
}

.step-link:hover {
  gap: 0.75rem;
}

/* ===== DUAL LOGO SECTION ===== */
.dual-logo-section {
  padding: 4rem 0;
  background: white;
}

@media (min-width: 768px) {
  .dual-logo-section {
    padding: 6rem 0;
  }
}

.logo-comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-comparison-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .logo-comparison-cards {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.logo-card {
  width: 100%;
  max-width: 400px;
  background: #f8f9ff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--animation-medium) ease;
}

.logo-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.logo-card.original:hover {
  border-color: rgba(0, 170, 255, 0.3);
}

.logo-card.updated:hover {
  border-color: rgba(212, 167, 106, 0.3);
}

.logo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-badge {
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-badge.on-chain {
  background: rgba(0, 170, 255, 0.2);
  color: var(--rebel-blue);
  border: 1px solid rgba(0, 170, 255, 0.3);
}

.logo-badge.off-chain {
  background: rgba(212, 167, 106, 0.2);
  color: var(--rebel-gold);
  border: 1px solid rgba(212, 167, 106, 0.3);
}

.logo-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #666;
}

.logo-visual {
  padding: 2rem;
  text-align: center;
  background: white;
}

.logo-image-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .logo-image-container {
    width: 200px;
    height: 200px;
  }
}

.logo-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.logo-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .logo-glow-effect {
    width: 220px;
    height: 220px;
  }
}

.logo-card.updated .logo-glow-effect {
  background: radial-gradient(circle, rgba(212, 167, 106, 0.1) 0%, transparent 70%);
}

.logo-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.25rem;
}

.logo-card.original .logo-label {
  color: var(--rebel-blue);
}

.logo-card.updated .logo-label {
  color: var(--rebel-gold);
}

.logo-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
  font-weight: 500;
}

.logo-details {
  padding: 1.5rem;
  background: #f8f9ff;
}

.ecosystem-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ecosystem-feature:last-child {
  margin-bottom: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--rebel-blue);
  flex-shrink: 0;
  box-shadow: var(--shadow-light);
}

.logo-card.updated .feature-icon {
  color: var(--rebel-gold);
}

.feature-content h4 {
  color: #333;
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}

.feature-content p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.platform-tag {
  background: white;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all var(--animation-fast) ease;
}

.platform-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* Logo Bridge */
.logo-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 150px;
  padding: 1rem;
}

@media (min-width: 992px) {
  .logo-bridge {
    flex-direction: column;
  }
}

.bridge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--rebel-blue), var(--rebel-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  animation: pulse 2s ease-in-out infinite;
}

.bridge-text {
  text-align: center;
}

.bridge-text h3 {
  color: #333;
  margin: 0 0 0.25rem 0;
  font-size: 1.3rem;
}

.bridge-text p {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 0.75rem 0;
}

.bridge-quote {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(212, 167, 106, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--rebel-gold);
  font-style: italic;
  color: #555;
  font-size: 0.9rem;
}

.bridge-quote i {
  color: var(--rebel-gold);
  font-size: 0.8rem;
}

/* Process Flow */
.process-flow {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem 0;
  border: 2px solid rgba(0, 170, 255, 0.1);
}

@media (min-width: 768px) {
  .process-flow {
    margin: 3rem 0;
  }
}

.process-flow h3 {
  color: #333;
  text-align: center;
  margin: 0 0 2rem 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

@media (min-width: 768px) {
  .flow-steps {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }
}

.flow-step {
  flex: 1;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid rgba(0, 170, 255, 0.2);
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--rebel-blue), var(--rebel-gold));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step-content h4 {
  color: #333;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.step-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
}

.flow-link {
  color: var(--rebel-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.flow-link:hover {
  text-decoration: underline;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  color: var(--rebel-gold);
  font-size: 1.5rem;
}
/* ===== FIX WHITE FLOW LINK TEXT ===== */
.flow-link {
  color: var(--rebel-gold) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  display: inline-block !important;
  margin-top: 0.5rem !important;
  font-size: 0.9rem !important;
  transition: all var(--animation-fast) ease !important;
  padding: 0.5rem 1rem !important;
  background: rgba(212, 167, 106, 0.1) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(212, 167, 106, 0.3) !important;
}

.flow-link:hover,
.flow-link:focus,
.flow-link:active {
  color: var(--rebel-gold) !important;
  background: rgba(212, 167, 106, 0.2) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(212, 167, 106, 0.15) !important;
}
@media (min-width: 768px) {
  .flow-arrow {
    transform: rotate(0);
  }
}

/* Ecosystem Features Grid */
.ecosystem-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .ecosystem-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .ecosystem-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--animation-medium) ease;
  box-shadow: var(--shadow-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--rebel-gold);
  box-shadow: var(--shadow-medium);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  color: white;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h4 {
  color: #333;
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
}

.feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  flex: 1;
}

.feature-card a {
  color: var(--rebel-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-card a:hover {
  text-decoration: underline;
}

/* Ecosystem Overview */
.ecosystem-overview {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ecosystem-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .ecosystem-badge {
    font-size: 1.1rem;
  }
}

.ecosystem-intro h3 {
  color: #333;
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ecosystem-intro h3 {
    font-size: 1.8rem;
  }
}

.ecosystem-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ecosystem-description {
    font-size: 1.1rem;
  }
}

/* Contract & Governance */
.contract-governance {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .contract-governance {
    margin-top: 4rem;
  }
}

.governance-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: linear-gradient(135deg, var(--dark-bg), #2a1f14);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(212, 167, 106, 0.2);
}

@media (min-width: 992px) {
  .governance-info {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.governance-icon {
  width: 70px;
  height: 70px;
  background: var(--rebel-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .governance-icon {
    margin: 0;
  }
}

.governance-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 992px) {
  .governance-content {
    text-align: left;
  }
}

.governance-content h3 {
  color: white;
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .governance-content h3 {
    justify-content: flex-start;
  }
}

.governance-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.governance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.governance-list li {
  color: white;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  text-align: left;
}

.governance-list li i {
  color: var(--rebel-gold);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.learn-more-box {
  background: rgba(156, 39, 176, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(156, 39, 176, 0.2);
  border-left: 4px solid var(--rebel-purple);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .learn-more-box {
    flex-direction: row;
    text-align: left;
  }
}

.learn-icon {
  width: 50px;
  height: 50px;
  background: var(--rebel-purple);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.learn-content {
  flex: 1;
}

.learn-content h4 {
  color: white;
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
}

.learn-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.learn-content strong {
  color: var(--rebel-gold);
}

.learn-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .learn-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--animation-fast) ease;
}

.learn-link:hover {
  background: var(--rebel-purple);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
}

.contract-emphasis {
  background: rgba(76, 175, 80, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(76, 175, 80, 0.2);
  text-align: center;
}

.contract-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contract-header i {
  font-size: 2rem;
  color: #4CAF50;
}

.contract-header h4 {
  color: #333;
  margin: 0;
  font-size: 1.5rem;
}

.contract-code {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contract-code {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.contract-code code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: #333;
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  word-break: break-all;
}

@media (min-width: 768px) {
  .contract-code code {
    font-size: 1rem;
    text-align: left;
    word-break: normal;
  }
}

.copy-contract-btn {
  background: var(--rebel-gold);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--animation-fast) ease;
  white-space: nowrap;
  justify-content: center;
}

.copy-contract-btn:hover {
  background: #e6b65f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 167, 106, 0.3);
}

.contract-note {
  color: #666;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contract-note i {
  color: #f44336;
}

.contract-note strong {
  color: #333;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #2a1f14 100%);
}

@media (min-width: 768px) {
  .final-cta {
    padding: 6rem 0;
  }
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.cta-content {
  text-align: center;
}

@media (min-width: 992px) {
  .cta-content {
    text-align: left;
  }
}

.cta-content h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .cta-subtitle {
    font-size: 1.3rem;
  }
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .feature {
    justify-content: flex-start;
  }
}

.feature i {
  color: var(--rebel-gold);
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

@media (min-width: 576px) {
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.cta-button.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-width: 200px;
}

@media (min-width: 768px) {
  .cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
  }
}

.security-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 992px) {
  .security-badges {
    justify-content: flex-start;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
  color: var(--rebel-gold);
}

.cta-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.visual-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.cta-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(212, 167, 106, 0.5));
  animation: pulse-cta 2s ease-in-out infinite;
}

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

.pulse-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border: 2px solid rgba(212, 167, 106, 0.3);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% { 
    width: 100%; 
    height: 100%; 
    opacity: 1;
  }
  100% { 
    width: 150%; 
    height: 150%; 
    opacity: 0;
  }
}

.token-flow {
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.flow-item {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.flow-item.reward {
  color: var(--rebel-gold);
}

.token-flow i {
  color: var(--rebel-gold);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gold-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--animation-medium) ease;
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .floating-logo {
    width: 150px;
    height: 150px;
  }
  
  .logo-glow {
    width: 200px;
    height: 200px;
  }
  
  .node-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .token-logo {
    width: 50px;
    height: 50px;
  }
  
  .detail-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .detail-value {
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  
  .chain-visualization {
    flex-direction: column;
  }

   .floating-logo, 
  .bridge-animation,
  .logo-3d,
  .token-logo-img {
    animation-duration: 2s !important;
  }
  
  .bridge-animation {
    padding: 1rem 0;
  }
  
  .bridge-line {
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, var(--rebel-gold), var(--rebel-blue));
  }
  
  .bridge-content {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    padding: 1rem 0;
  }
  
  .logo-card-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .contract-header {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-metrics {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust-badges {
    justify-content: center;
  }
  
  .ecosystem-flow {
    flex-direction: column;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .step-number::after {
    top: 100%;
    left: 50%;
    width: 2px;
    height: 30px;
    transform: translateX(-50%);
  }
  
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .security-badges {
    justify-content: center;
  }
  
  .governance-info {
    flex-direction: column;
    text-align: center;
  }
  
  .governance-icon {
    margin: 0 auto;
  }
  
  .governance-content h3 {
    justify-content: center;
  }
}

/* ===== ANIMATION UTILITIES ===== */
.fade-in {
  animation: fadeIn var(--animation-medium) ease forwards;
}

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

.slide-in-left {
  animation: slideInLeft var(--animation-medium) ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight var(--animation-medium) ease forwards;
}

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

.scale-in {
  animation: scaleIn var(--animation-medium) ease forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .page-hero--main,
  .token-ecosystem,
  .final-cta {
    background: white !important;
    color: black !important;
  }
  
  .hero-background-pattern,
  .hero-particles,
  .visual-container,
  .floating-logo,
  .bridge-animation,
  .reward-flow,
  .back-to-top {
    display: none !important;
  }
  
  .hero-title,
  .hero-subtitle,
  .section-header h2,
  .section-subtitle,
  .metric-value,
  .stat-number,
  .detail-value,
  .logo-label,
  .governance-content h3 {
    color: black !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
  }
  
  .cta-button,
  .action-btn,
  .copy-btn,
  .view-btn,
  .wallet-btn {
    border: 1px solid black !important;
    background: white !important;
    color: black !important;
  }
}
/* ===== MOBILE OPTIMIZATION FOR TOKEN ECOSYSTEM ===== */
@media (max-width: 768px) {
  /* Fix token ecosystem flow layout */
  .ecosystem-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .chain-platform {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Stack platform header vertically on mobile */
  .platform-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .platform-icon {
    margin: 0 auto;
  }
  
  /* Adjust token cards for mobile */
  .token-card {
    padding: 1rem;
  }
  
  .token-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .token-logo {
    margin: 0 auto;
  }
  
  .token-status {
    justify-content: center;
  }
  
  /* Stack token details vertically */
  .token-details {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .detail-item {
    padding: 0.5rem 0;
  }
  
  /* Contract address mobile optimization */
  .contract-address {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .contract-address code {
    font-size: 0.75rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    word-break: break-all;
  }
  
  .copy-actions {
    justify-content: center;
  }
  
  /* Stack token actions vertically */
  .token-actions {
    flex-direction: column;
  }
  
  .action-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Bridge animation for mobile */
  .bridge-animation {
    padding: 1rem 0;
    margin: 1rem auto;
    order: 2; /* Place bridge between platforms */
  }
  
  .bridge-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, var(--rebel-red), var(--rebel-gold));
    margin: 0 auto;
  }
  
  .bridge-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0.5rem auto;
    width: fit-content;
    padding: 0.5rem;
  }
  
  /* NFT card adjustments */
  .nft-card {
    margin-top: 1rem;
  }
  
  .nft-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .nft-icon {
    margin: 0 auto;
  }
  
  /* Process steps vertical layout */
  .process-steps {
    gap: 1.5rem;
  }
  
  .process-step {
    text-align: center;
  }
  
  /* Remove connecting lines on mobile */
  .step-number::after {
    display: none;
  }
  
  /* Bonus info vertical layout */
  .bonus-info {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .bonus-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  /* Extra small screen optimizations */
  .chain-platform {
    padding: 0.75rem;
  }
  
  .token-card {
    padding: 0.75rem;
  }
  
  .token-details {
    padding: 0.75rem;
  }
  
  .detail-item {
    font-size: 0.9rem;
  }
  
  .contract-address {
    padding: 0.75rem;
  }
  
  .contract-address code {
    font-size: 0.7rem;
  }
  
  .action-btn {
    font-size: 0.85rem;
    padding: 0.75rem;
  }
  
  .nft-details p {
    font-size: 0.85rem;
  }
  
  .bonus-content h5 {
    font-size: 1rem;
  }
  
  .bonus-content p {
    font-size: 0.85rem;
  }
}

/* Touch-friendly buttons for mobile */
@media (hover: none) and (pointer: coarse) {
  .action-btn, .copy-btn, .view-btn, .wallet-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .copy-btn, .view-btn, .wallet-btn {
    width: 44px;
    height: 44px;
  }
  
  /* Increase tap targets */
  .contract-address code {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Add mobile-specific animations */
@media (max-width: 768px) {
  .chain-platform {
    animation: slideInUpMobile 0.5s ease-out;
  }
  
  @keyframes slideInUpMobile {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Mobile-first bridge design */
@media (max-width: 768px) {
  .bridge-animation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
  }
  
  .bridge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 167, 106, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .bridge-content img {
    width: 32px;
    height: 32px;
    background: white;
    padding: 4px;
    border-radius: 8px;
  }
  
  .bridge-content i {
    color: var(--rebel-gold);
    font-size: 1.2rem;
  }
  
  .bridge-content span {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
  }
  
  .bridge-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }
  
  .bridge-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--rebel-gold);
    border-radius: 50%;
    animation: particle-float 2s ease-in-out infinite;
  }
  
  @keyframes particle-float {
    0%, 100% {
      transform: translateY(0) translateX(0);
      opacity: 0;
    }
    50% {
      opacity: 0.7;
    }
    100% {
      transform: translateY(-40px) translateX(var(--tx, 20px));
    }
  }
}
/* Ensure stats section doesn't overflow */
@media (max-width: 767px) {
  .live-statistics .container {
    overflow: visible;
  }
  
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
  }
  
  .stat-card {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  .stats-action .cta-button {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ===== FIX WHITE TEXT LINKS IN FEATURE CARDS ===== */
.ecosystem-features .feature-card a {
  color: var(--rebel-gold) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  display: inline-block !important;
  padding: 0.5rem 1rem !important;
  background: rgba(212, 167, 106, 0.1) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(212, 167, 106, 0.3) !important;
  margin-top: 0.5rem !important;
  transition: all var(--animation-fast) ease !important;
}

.ecosystem-features .feature-card a:hover,
.ecosystem-features .feature-card a:focus {
  color: var(--rebel-gold) !important;
  background: rgba(212, 167, 106, 0.2) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(212, 167, 106, 0.15) !important;
}

/* Also fix any other potential white links in feature cards */
.feature-card a[href*="artwork.html"],
.feature-card a[aria-label*="artwork"] {
  color: var(--rebel-gold) !important;
}
/* ===== FIX VIEW CONTESTS LINK SPECIFICALLY ===== */
.process-flow .flow-step .step-content .flow-link[href="artwork.html"],
.process-flow .flow-step .step-content .flow-link[aria-label*="artwork"] {
  color: var(--rebel-gold) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  display: inline-block !important;
  margin-top: 0.5rem !important;
  font-size: 0.9rem !important;
  padding: 0.5rem 1rem !important;
  background: rgba(212, 167, 106, 0.1) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(212, 167, 106, 0.3) !important;
  transition: all var(--animation-fast) ease !important;
}

.process-flow .flow-step .step-content .flow-link[href="artwork.html"]:hover,
.process-flow .flow-step .step-content .flow-link[aria-label*="artwork"]:hover,
.process-flow .flow-step .step-content .flow-link[href="artwork.html"]:focus,
.process-flow .flow-step .step-content .flow-link[aria-label*="artwork"]:focus {
  color: var(--rebel-gold) !important;
  background: rgba(212, 167, 106, 0.2) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(212, 167, 106, 0.15) !important;
}
/* ===== TOKEN INSTRUCTIONS MODAL ===== */
.token-instructions-modal {
  animation: modalFadeIn 0.3s ease;
}

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

.token-instructions-modal button {
  transition: all var(--animation-fast) ease;
}

.token-instructions-modal button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 167, 106, 0.3);
}

/* Mobile responsive modal */
@media (max-width: 768px) {
  .token-instructions-modal > div {
    padding: 1.5rem !important;
    max-width: 95% !important;
  }
  
  .token-instructions-modal ol {
    font-size: 0.95rem !important;
  }
  
  .token-instructions-modal .button-group {
    flex-direction: column !important;
  }
}
/* ===== WALLET MODAL STYLES ===== */
.token-instructions-modal {
  animation: modalFadeIn 0.3s ease;
}

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

.token-instructions-modal button {
  transition: all var(--animation-fast) ease;
}

.token-instructions-modal button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 167, 106, 0.3);
}

/* Mobile responsive modal */
@media (max-width: 768px) {
  .token-instructions-modal > div {
    padding: 1.5rem !important;
    max-width: 95% !important;
  }
  
  .token-instructions-modal ol {
    font-size: 0.95rem !important;
  }
  
  .token-instructions-modal .button-group {
    flex-direction: column !important;
  }
}

/* Wallet button states */
.wallet-action {
  position: relative;
  overflow: hidden;
}

.wallet-action.loading {
  cursor: wait;
  opacity: 0.8;
}

.wallet-action.success {
  background: #4CAF50 !important;
  color: white !important;
}

.wallet-action.error {
  background: #f44336 !important;
  color: white !important;
}
/* ===== MOBILE FIXES FOR TOKEN ECOSYSTEM BRIDGE ===== */
@media (max-width: 768px) {
  .ecosystem-flow {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
  }
  
  .bridge-animation {
    order: 2 !important; /* Force bridge to be in the middle */
    margin: 1rem auto !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  .chain-platform.base-platform {
    order: 1 !important;
  }
  
  .chain-platform.solana-platform {
    order: 3 !important;
  }
  
  /* Ensure the bridge content is visible */
  .bridge-content {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(212, 167, 106, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .bridge-content {
    padding: 0.5rem !important;
  }
  
  .bridge-content img {
    width: 28px !important;
    height: 28px !important;
  }
  
  .bridge-content span {
    font-size: 0.75rem !important;
  }
}
/* ===== CROSS-CHAIN REWARDS MOBILE FIXES ===== */
/* Mobile-first fixes for the ecosystem section */
@media (max-width: 768px) {
  /* Stack ecosystem flow vertically */
  .ecosystem-flow {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 0 1rem !important;
  }
  
  /* Order elements for proper flow */
  .chain-platform.base-platform {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .chain-platform.solana-platform {
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .bridge-animation {
    order: 2 !important; /* Bridge in the middle */
    margin: 1rem auto !important;
    width: 100% !important;
    max-width: 280px !important;
    padding: 1.5rem 0 !important;
  }
  
  /* Mobile bridge redesign */
  .bridge-animation .bridge-line {
    width: 3px !important;
    height: 100px !important;
    background: linear-gradient(to bottom, var(--rebel-red), var(--rebel-gold), var(--rebel-red)) !important;
    margin: 0 auto !important;
    border-radius: 3px !important;
  }
  
  /* Bridge content mobile optimization */
  .bridge-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 1rem auto !important;
    width: fit-content !important;
    padding: 0.75rem 1rem !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(212, 167, 106, 0.3) !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  }
  
  .bridge-content img {
    width: 36px !important;
    height: 36px !important;
    background: white !important;
    padding: 4px !important;
    border-radius: 8px !important;
    margin-bottom: 0.25rem !important;
  }
  
  .bridge-content i {
    color: var(--rebel-gold) !important;
    font-size: 1.2rem !important;
  }
  
  .bridge-content span {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: white !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  
  /* Adjust chain platforms for mobile */
  .chain-platform {
    padding: 1.5rem !important;
    margin-bottom: 0 !important;
  }
  
  .platform-header {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .platform-icon {
    margin: 0 auto !important;
  }
  
  /* Token cards mobile optimization */
  .token-card {
    padding: 1.25rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .token-header {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .token-logo {
    margin: 0 auto !important;
  }
  
  /* Contract address mobile fix */
  .contract-address {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
    padding: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .contract-address code {
    text-align: center !important;
    padding: 0.75rem !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    word-break: break-all !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px !important;
  }
  
  .copy-actions {
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
  }
  
  /* Token actions mobile stack */
  .token-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .action-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 1rem !important;
  }
  
  /* NFT card mobile adjustments */
  .nft-card {
    padding: 1.25rem !important;
  }
  
  .nft-header {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  
  .nft-icon {
    margin: 0 auto !important;
  }
  
  /* Summary card mobile adjustments */
  .summary-card {
    padding: 1.5rem !important;
  }
  
  .process-steps {
    gap: 2rem !important;
  }
  
  .step-number::after {
    top: 100% !important;
    left: 50% !important;
    width: 2px !important;
    height: 30px !important;
    transform: translateX(-50%) !important;
  }
}

/* Extra small screen optimizations */
@media (max-width: 480px) {
  .bridge-content {
    padding: 0.5rem 0.75rem !important;
  }
  
  .bridge-content img {
    width: 32px !important;
    height: 32px !important;
  }
  
  .bridge-content span {
    font-size: 0.8rem !important;
  }
  
  .chain-platform {
    padding: 1.25rem !important;
  }
  
  .token-card {
    padding: 1rem !important;
  }
  
  .token-details {
    padding: 0.75rem !important;
  }
  
  .detail-item {
    font-size: 0.9rem !important;
  }
  
  .contract-address code {
    font-size: 0.75rem !important;
  }
  
  .action-btn {
    font-size: 0.9rem !important;
    padding: 0.875rem !important;
  }
  
  .summary-card {
    padding: 1.25rem !important;
  }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
  .bridge-content {
    min-height: 60px !important;
    min-width: 60px !important;
  }
  
  .action-btn, 
  .copy-btn, 
  .view-btn, 
  .wallet-btn {
    min-height: 44px !important;
    min-width: 44px !important;
  }
  
  .copy-btn, 
  .view-btn, 
  .wallet-btn {
    width: 44px !important;
    height: 44px !important;
  }
}

/* Add mobile animations */
@media (max-width: 768px) {
  .chain-platform {
    animation: slideInUpMobile 0.5s ease-out !important;
  }
  
  @keyframes slideInUpMobile {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Prevent horizontal scrolling in ecosystem section */
.token-ecosystem .container {
  overflow-x: hidden !important;
}

/* Ensure bridge particles are visible on mobile */
.bridge-particles {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.bridge-particles .particle {
  position: absolute !important;
  width: 4px !important;
  height: 4px !important;
  background: var(--rebel-gold) !important;
  border-radius: 50% !important;
  animation: particle-float-mobile 2s ease-in-out infinite !important;
}

@keyframes particle-float-mobile {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-40px) translateX(var(--tx, 20px));
  }
}
/* ===== MOBILE CHAIN VISUALIZATION FIX ===== */
@media (max-width: 767px) {
  .chain-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0 1rem;
  }
  
  .chain-node {
    order: 0; /* Reset order */
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .base-node {
    order: 1; /* First item */
  }
  
  .bridge-animation {
    order: 2; /* Middle item */
    padding: 1rem 0;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
  }
  
  .solana-node {
    order: 3; /* Last item */
  }
  
  /* Mobile bridge animation adjustments */
  .bridge-line {
    width: 3px !important;
    height: 60px !important;
    background: linear-gradient(to bottom, var(--rebel-red), var(--rebel-gold), var(--rebel-red)) !important;
    margin: 0 auto;
    border-radius: 3px;
  }
  
  .bridge-tokens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: white;
  }
  
  /* Fix arrow direction for vertical layout */
  .bridge-tokens .fa-arrow-right {
    transform: rotate(90deg);
  }
  
  /* Adjust moving coin animation for vertical */
  .moving-coin {
    animation: move-down 2.5s ease-in-out infinite !important;
  }
  
  @keyframes move-down {
    0% { transform: translateY(-30px); opacity: 0; }
    50% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(30px); opacity: 0; }
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .chain-visualization {
    gap: 1rem;
  }
  
  .chain-node {
    padding: 1rem;
    max-width: 250px;
  }
  
  .bridge-animation {
    height: 60px;
  }
  
  .bridge-line {
    height: 50px !important;
  }
}

/* Ensure proper display on desktop */
@media (min-width: 768px) {
  .chain-visualization {
    flex-direction: row !important;
    justify-content: center;
    gap: 2rem;
  }
  
  .bridge-animation {
    padding: 0 1.5rem !important;
    width: auto !important;
    height: auto !important;
  }
  
  .bridge-line {
    width: 150px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--rebel-red), var(--rebel-gold), var(--rebel-red)) !important;
  }
  
  .bridge-tokens .fa-arrow-right {
    transform: none !important;
  }
  
  .moving-coin {
    animation: move-right 2.5s ease-in-out infinite !important;
  }
}
/* ===== ZORA LOGO BADGE IN TOKEN DETAILS ===== */
.platform-value {
  margin-top: 0.25rem;
}

/* Update the ZORA logo badge styles */
/* Make sure the ZORA text is white (or gold) */
.zora-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  /* CHANGE THIS LINE - set text color to white or gold */
  color: white; /* or use: color: var(--rebel-gold); */
  box-shadow: none;
  border: 1px solid rgba(212, 167, 106, 0.3);
}

/* Specifically target the text inside */
.zora-logo-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  /* MAKE SURE TEXT IS WHITE */
  color: white !important; /* Force white color */
}

/* For the logo itself */
.zora-logo-badge img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  padding: 2px;
}

/* Hover state */
.zora-logo-badge:hover {
  transform: translateY(-2px);
  background: rgba(212, 167, 106, 0.1);
  box-shadow: 0 4px 12px rgba(212, 167, 106, 0.15);
  transition: all var(--animation-fast) ease;
}

/* Hover effect - adjust for new transparent background */
.zora-logo-badge:hover {
  transform: translateY(-2px);
  background: rgba(212, 167, 106, 0.1);
  box-shadow: 0 4px 12px rgba(212, 167, 106, 0.15);
  transition: all var(--animation-fast) ease;
}

/* Gold theme for ZORA */
.zora-logo-badge {
  color: var(--rebel-gold) !important;
  border: 1px solid rgba(212, 167, 106, 0.4);
}

.zora-logo-badge span {
  color: var(--rebel-gold) !important;
}

.zora-logo-badge:hover {
  background: rgba(212, 167, 106, 0.15);
  border-color: var(--rebel-gold);
}

/* Alternative 2: Purple theme for ZORA */
.zora-logo-badge.purple-theme {
  color: var(--rebel-purple);
  border: 1px solid rgba(156, 78, 221, 0.3);
}

.zora-logo-badge.purple-theme span {
  color: var(--rebel-purple);
}

.zora-logo-badge.purple-theme:hover {
  background: rgba(156, 78, 221, 0.1);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .zora-logo-badge {
    padding: 0.3rem 0.6rem;
  }
  
  .zora-logo-badge img {
    width: 18px;
    height: 18px;
  }
  
  .zora-logo-badge span {
    font-size: 0.85rem;
  }
}
/* More specific selector */
.quick-stats-bar .stats-grid .stat-item.yellow-stat .stat-title {
  color: var(--rebel-gold) !important;
}
/* ===== ENHANCED ANIMATIONS ===== */

/* Smooth Fade In for Page Load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Enhanced Float Animation */
@keyframes enhancedFloat {
  0%, 100% { 
    transform: translateY(0px) rotateY(0deg); 
  }
  33% { 
    transform: translateY(-15px) rotateY(5deg);
  }
  66% { 
    transform: translateY(-8px) rotateY(-5deg);
  }
}

/* Pulse Glow Effect */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 167, 106, 0.4),
                0 0 40px rgba(212, 167, 106, 0.2),
                0 0 60px rgba(212, 167, 106, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 167, 106, 0.6),
                0 0 60px rgba(212, 167, 106, 0.3),
                0 0 90px rgba(212, 167, 106, 0.2);
  }
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

/* Particle Movement */
@keyframes particleMove {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(calc(var(--tx) * 2)) rotate(180deg);
    opacity: 0;
  }
}

/* Chain Connection Flow */
@keyframes chainFlow {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* ===== ENHANCED HERO SECTION ANIMATIONS ===== */

/* Enhanced Logo Animation */
.logo-3d {
  animation: enhancedFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 25px rgba(212, 167, 106, 0.6));
  transition: all 0.5s ease;
}

.logo-3d:hover {
  animation: enhancedFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 35px rgba(212, 167, 106, 0.8));
}

.token-logo-img {
  animation: enhancedFloat 6s ease-in-out infinite 1s;
  filter: drop-shadow(0 0 20px rgba(215, 77, 77, 0.5));
  transition: all 0.5s ease;
}

.token-logo-img:hover {
  animation: enhancedFloat 3s ease-in-out infinite 1s;
  filter: drop-shadow(0 0 30px rgba(215, 77, 77, 0.7));
}

/* Enhanced Logo Glow */
.logo-glow {
  animation: pulseGlow 4s ease-in-out infinite;
  background: radial-gradient(
    circle at center,
    rgba(212, 167, 106, 0.6) 0%,
    rgba(212, 167, 106, 0.3) 30%,
    transparent 70%
  );
}

.rebelinux-glow {
  animation: pulseGlow 4s ease-in-out infinite 0.5s;
  background: radial-gradient(
    circle at center,
    rgba(215, 77, 77, 0.6) 0%,
    rgba(215, 77, 77, 0.3) 30%,
    transparent 70%
  );
}

/* Hero Badge Shimmer */
.badge-text {
  position: relative;
  overflow: hidden;
}

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

/* Metric Cards Hover Effect */
.metric-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 167, 106, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.metric-card:hover::before {
  left: 100%;
}

.metric-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 167, 106, 0.15);
  border-color: rgba(212, 167, 106, 0.4);
}

/* Enhanced Chain Visualization */
.chain-node {
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.chain-node::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 20px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

/* Enhanced Bridge Animation */
.bridge-animation {
  position: relative;
}

.bridge-line {
  position: relative;
  overflow: hidden;
}

.bridge-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--rebel-red),
    var(--rebel-gold),
    var(--rebel-blue),
    var(--rebel-gold),
    var(--rebel-red)
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

.moving-coin {
  animation: move-right 2s ease-in-out infinite;
  position: relative;
}

.moving-coin::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, var(--rebel-gold) 30%, transparent 70%);
  filter: blur(5px);
  opacity: 0.5;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ===== VALUE PROPOSITION ANIMATIONS ===== */

.value-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-icon {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover .value-icon {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* ===== TOKEN ECOSYSTEM ANIMATIONS ===== */

.chain-platform {
  animation: slideInLeft 0.8s ease-out;
}

.solana-platform {
  animation: slideInRight 0.8s ease-out;
}

.token-card {
  transition: all 0.3s ease;
  position: relative;
}

.token-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rebel-gold), var(--rebel-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.token-card:hover::before {
  transform: scaleX(1);
}

.token-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 167, 106, 0.15);
}

/* Enhanced Bridge Particles */
.bridge-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.bridge-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--rebel-gold);
  border-radius: 50%;
  filter: blur(1px);
  animation: particleMove 3s ease-in-out infinite;
}

.bridge-particles .particle:nth-child(1) {
  left: 20%;
  --tx: 10px;
  animation-delay: 0s;
}

.bridge-particles .particle:nth-child(2) {
  left: 50%;
  --tx: -15px;
  animation-delay: 0.5s;
  background: var(--rebel-blue);
}

.bridge-particles .particle:nth-child(3) {
  left: 80%;
  --tx: 20px;
  animation-delay: 1s;
  background: var(--rebel-red);
}

/* ===== LIVE STATISTICS ANIMATIONS ===== */

.stat-card {
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
  opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-icon {
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: rotateY(180deg) scale(1.1);
}

.stat-value[data-target] {
  transition: all 0.5s ease;
}

/* ===== COMPARISON SECTION ANIMATIONS ===== */

.comparison-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  opacity: 0;
}

.comparison-card:nth-child(1) { animation-delay: 0.2s; }
.comparison-card:nth-child(2) { animation-delay: 0.4s; }

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

.feature-item {
  transition: all 0.3s ease;
  padding-left: 10px;
}

.feature-item:hover {
  padding-left: 20px;
  background: rgba(212, 167, 106, 0.05);
}

/* ===== DUAL LOGO SECTION ANIMATIONS ===== */

.logo-card {
  animation: fadeInUp 0.7s ease-out;
  animation-fill-mode: both;
  opacity: 0;
}

.logo-card.original { animation-delay: 0.1s; }
.logo-card.updated { animation-delay: 0.3s; }

.logo-badge {
  animation: pulse 3s ease-in-out infinite;
}

.logo-glow-effect {
  animation: pulseGlow 4s ease-in-out infinite;
}

.logo-card.original .logo-glow-effect {
  animation-delay: 0.2s;
}

.logo-card.updated .logo-glow-effect {
  animation-delay: 0.5s;
}

.flow-step {
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
  opacity: 0;
}

.flow-step:nth-child(1) { animation-delay: 0.1s; }
.flow-step:nth-child(2) { animation-delay: 0.3s; }
.flow-step:nth-child(3) { animation-delay: 0.5s; }

.flow-arrow i {
  animation: bounceX 2s ease-in-out infinite;
}

@keyframes bounceX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* ===== QUICK START ANIMATIONS ===== */

.step-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  opacity: 0;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.3s; }
.step-card:nth-child(3) { animation-delay: 0.5s; }

.step-number {
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(212, 167, 106, 0.3);
}

.step-icon {
  transition: all 0.4s ease;
}

.step-card:hover .step-icon {
  transform: translateY(-5px) scale(1.1);
  color: var(--rebel-gold);
}

/* ===== FINAL CTA ANIMATIONS ===== */

.cta-logo {
  animation: enhancedFloat 5s ease-in-out infinite;
}

.pulse-effect {
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.token-flow {
  animation: slideInRight 1s ease-out infinite alternate;
}

.feature i {
  animation: bounce 2s ease-in-out infinite;
}

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

/* ===== BUTTON ENHANCEMENTS ===== */

.cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 167, 106, 0.3);
}

.primary-glow {
  animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(212, 167, 106, 0.4);
  }
  50% {
    box-shadow: 0 5px 25px rgba(212, 167, 106, 0.6),
                0 0 30px rgba(212, 167, 106, 0.3);
  }
}

/* ===== ACHIEVEMENT BADGE ANIMATIONS ===== */

.achievement-badge {
  animation: achievementPulse 3s ease-in-out infinite;
}

@keyframes achievementPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(215, 77, 77, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(215, 77, 77, 0.4),
                0 0 30px rgba(215, 77, 77, 0.2);
  }
}

.token-achievement {
  transition: all 0.3s ease;
}

.token-achievement:hover {
  transform: translateX(10px);
  background: linear-gradient(45deg, rgba(215, 77, 77, 0.2), rgba(231, 76, 60, 0.2));
}

/* ===== ZORA BADGE ANIMATION ===== */

.zora-logo-badge {
  transition: all 0.3s ease;
  animation: badgeFloat 4s ease-in-out infinite;
}

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

.zora-logo-badge:hover {
  animation: badgeFloat 1s ease-in-out infinite;
}

/* ===== RESPONSIVE ANIMATION ADJUSTMENTS ===== */

@media (max-width: 768px) {
  .logo-3d,
  .token-logo-img {
    animation-duration: 4s;
  }
  
  .metric-card:hover {
    transform: translateY(-3px);
  }
  
  .value-card:hover .value-icon {
    transform: translateY(-5px) scale(1.05);
  }
  
  .bridge-particles .particle {
    animation-duration: 4s;
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

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

/* ===== SCROLL ANIMATION UTILITY CLASSES ===== */

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ENHANCED LOADER ANIMATIONS ===== */

.loader-spinner {
  animation: spin 1s linear infinite, pulseGlow 2s ease-in-out infinite;
}

.text-item {
  animation: textSlide 5s infinite;
}

@keyframes textSlide {
  0%, 20% { 
    opacity: 0; 
    transform: translateY(20px) scale(0.9); 
  }
  10%, 15% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
  30% { 
    opacity: 0; 
    transform: translateY(-20px) scale(1.1); 
  }
}

/* ===== ENHANCED TOKEN FLOW ANIMATION ===== */

.flow-dot {
  animation: flowPulse 1.5s ease-in-out infinite;
}

.flow-dot.delay-1 { animation-delay: 0.2s; }
.flow-dot.delay-2 { animation-delay: 0.4s; }

@keyframes flowPulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(0.8); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.2); 
    box-shadow: 0 0 15px rgba(212, 167, 106, 0.6);
  }
}

/* ===== ENHANCED TRUST BADGES ===== */

.trust-badge {
  transition: all 0.3s ease;
  animation: trustFloat 3s ease-in-out infinite;
}

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

.trust-badge:hover {
  animation: trustFloat 1s ease-in-out infinite;
  border-color: var(--rebel-gold);
}
/* Add these to your existing keyframes section */

@keyframes borderFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 200%;
  }
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(212, 167, 106, 0.4);
  }
  50% {
    box-shadow: 0 5px 25px rgba(212, 167, 106, 0.6),
                0 0 30px rgba(212, 167, 106, 0.3);
  }
}

@keyframes achievementPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(215, 77, 77, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(215, 77, 77, 0.4),
                0 0 30px rgba(215, 77, 77, 0.2);
  }
}

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

@keyframes bounceX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

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

@keyframes flowPulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(0.8); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.2); 
    box-shadow: 0 0 15px rgba(212, 167, 106, 0.6);
  }
}
/* Add these styles for contract address expansion */
.contract-address code.expanded {
  white-space: normal;
  word-break: break-all;
  font-size: 0.85rem;
  line-height: 1.4;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  max-height: 150px;
  overflow-y: auto;
}

/* Better touch targets for mobile */
.copy-btn, .view-btn, .wallet-btn {
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover, .view-btn:hover, .wallet-btn:hover {
  transform: translateY(-2px);
}

.copy-btn:active, .view-btn:active, .wallet-btn:active {
  transform: translateY(0);
}
