/* DAO LAND - Futuristic Gaming Style */

:root {
  /* Colors */
  --primary: #8B5CF6;          /* Violet */
  --secondary: #06B6D4;        /* Cyan */
  --accent: #EC4899;           /* Rose */
  --dark: #0F172A;             /* Dark blue */
  --darker: #020617;           /* Almost black */
  --light: #F1F5F9;            /* Light gray */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
  --gradient-secondary: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
  --gradient-hero: linear-gradient(180deg, #020617 0%, #0F172A 100%);
  
  /* Glow effects */
  --glow-primary: 0 0 20px rgba(139, 92, 246, 0.5);
  --glow-secondary: 0 0 20px rgba(6, 182, 212, 0.5);
  --glow-accent: 0 0 20px rgba(236, 72, 153, 0.5);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Language Selector */
.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  display: flex;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lang-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(139, 92, 246, 0.2);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lang-btn .flag-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  z-index: 2;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Drapeau France (bleu/blanc/rouge) */
.lang-btn[data-lang="fr"] {
  background: linear-gradient(to right, #0055A4 33%, #FFFFFF 33%, #FFFFFF 66%, #EF4135 66%);
}

/* Drapeau USA (étoiles et bandes) */
.lang-btn[data-lang="en"] {
  background: linear-gradient(to bottom, 
    #B22234 0%, #B22234 7.7%, 
    #FFFFFF 7.7%, #FFFFFF 15.4%,
    #B22234 15.4%, #B22234 23.1%,
    #FFFFFF 23.1%, #FFFFFF 30.8%,
    #B22234 30.8%, #B22234 38.5%,
    #FFFFFF 38.5%, #FFFFFF 46.2%,
    #B22234 46.2%, #B22234 53.9%,
    #FFFFFF 53.9%, #FFFFFF 61.6%,
    #B22234 61.6%, #B22234 69.3%,
    #FFFFFF 69.3%, #FFFFFF 77%,
    #B22234 77%, #B22234 84.7%,
    #FFFFFF 84.7%, #FFFFFF 92.4%,
    #B22234 92.4%, #B22234 100%
  );
}

.lang-btn[data-lang="en"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 53.9%;
  background: #3C3B6E;
  z-index: 1;
}

/* Drapeau Espagne (rouge/jaune/rouge) */
.lang-btn[data-lang="es"] {
  background: linear-gradient(to bottom, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%);
}

.lang-btn:hover {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.lang-btn.active {
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
  transform: scale(1.05);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(var(--glow-primary));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

/* Buttons */
.btn-primary, .btn-secondary {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--glow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

/* 🆕 Gros logo Hero */
.hero-logo-section {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.6));
  animation: logoFloat 4s ease-in-out infinite;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent 70%);
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
  filter: blur(100px);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.8);
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: rgba(241, 245, 249, 0.6);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-cube {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(45deg) rotateZ(45deg);
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--glow-primary);
  opacity: 0.6;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) rotateX(45deg) rotateZ(45deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateX(45deg) rotateZ(45deg) translateY(-20px); }
}

.grid-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.7);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Problem Section */
.problem-section {
  background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

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

.problem-card {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.problem-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Solution Section */
.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
}

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

.check {
  color: var(--secondary);
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-list strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.sandbox-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  perspective: 1000px;
}

.land-plot {
  aspect-ratio: 1;
  background: rgba(6, 182, 212, 0.1);
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 8px;
  transition: all 0.3s;
}

.land-plot:hover {
  transform: translateZ(20px);
  border-color: var(--secondary);
  box-shadow: var(--glow-secondary);
}

.land-plot.highlight {
  background: var(--gradient-secondary);
  border-color: var(--secondary);
  box-shadow: var(--glow-secondary);
}

/* How It Works */
.how-section {
  background: var(--dark);
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.step {
  flex: 1;
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: var(--glow-primary);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.step-arrow {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.5;
}

/* Tokenomics */
.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.token-chart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.distribution {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

.distribution h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.distribution-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.percent {
  color: var(--secondary);
  font-weight: 700;
}

.amount {
  color: rgba(241, 245, 249, 0.6);
}

/* Staking */
.staking-section {
  background: var(--darker);
}

.staking-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.tier {
  background: rgba(139, 92, 246, 0.05);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.tier:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--glow-primary);
}

.tier.featured {
  border-color: var(--secondary);
  background: rgba(6, 182, 212, 0.05);
}

.tier.premium {
  border-color: var(--accent);
  background: rgba(236, 72, 153, 0.05);
}

.badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tier h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.apy {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.tier ul {
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
}

.tier li {
  padding: 0.5rem 0;
  color: rgba(241, 245, 249, 0.8);
}

.tier li::before {
  content: '✓';
  color: var(--secondary);
  margin-right: 0.5rem;
  font-weight: 700;
}

.staking-note {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

/* Roadmap */
.roadmap-section {
  background: var(--dark);
}

.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  flex: 1;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  padding: 2rem;
}

.timeline-content {
  flex: 1;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  box-shadow: var(--glow-primary);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -40px;
  transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -40px;
  transform: translateY(-50%);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.timeline-content ul {
  list-style: none;
}

.timeline-content li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.timeline-content li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.faq-item p {
  color: rgba(241, 245, 249, 0.8);
}

/* CTA */
.cta-section {
  background: var(--gradient-primary);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--darker);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding: 4rem 0 2rem;
}

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

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(241, 245, 249, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

.social-icon {
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--primary);
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  color: rgba(241, 245, 249, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
  .hero .container,
  .solution-content,
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
  
  .problem-grid,
  .staking-tiers,
  .faq-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
}

/* 🌴 Animation Explosion Palmiers Whitepaper */
.btn-whitepaper-animated {
  position: relative;
  overflow: visible;
}

.palm-explosion {
  position: fixed;
  pointer-events: none;
  font-size: 2rem;
  animation: palmExplode 1.5s ease-out forwards;
  z-index: 9999;
}

@keyframes palmExplode {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0) rotate(720deg);
    opacity: 0;
  }
}

.whitepaper-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

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

.whitepaper-content {
  background: var(--dark);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 3rem;
  max-width: 900px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.6);
  animation: slideUp 0.4s ease-out;
}

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

.whitepaper-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--accent);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whitepaper-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--primary);
}

/* 🎬 Animations Scroll Sections */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay pour cartes */
.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.5s; }
/* 🎮 BOUTON DISCORD FLOTTANT ULTRA STYLÉ */

.discord-float-btn {
    position: fixed;
    top: 120px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(88, 101, 242, 0.4),
        0 0 60px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: visible;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.discord-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 48px rgba(88, 101, 242, 0.6),
        0 0 80px rgba(88, 101, 242, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #4752C4 0%, #5865F2 100%);
}

.discord-float-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Wrapper icône Discord */
.discord-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icône Discord */
.discord-icon {
    width: 32px;
    height: 32px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: discordBounce 2s ease-in-out infinite;
}

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

/* Texte Discord */
.discord-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ☁️ NUAGES FLOTTANTS AUTOUR */
.cloud {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cloud-1 {
    top: -15px;
    left: -10px;
    animation: cloudFloat1 4s ease-in-out infinite;
}

.cloud-2 {
    bottom: -15px;
    right: -10px;
    animation: cloudFloat2 5s ease-in-out infinite;
}

.cloud-3 {
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    animation: cloudFloat3 3.5s ease-in-out infinite;
}

@keyframes cloudFloat1 {
    0%, 100% { 
        transform: translate(0px, 0px) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-5px, -8px) scale(1.1);
        opacity: 1;
    }
}

@keyframes cloudFloat2 {
    0%, 100% { 
        transform: translate(0px, 0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translate(5px, 8px) scale(1.15);
        opacity: 1;
    }
}

@keyframes cloudFloat3 {
    0%, 100% { 
        transform: translateY(-50%) translateX(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-50%) translateX(-8px) scale(1.2);
        opacity: 0.9;
    }
}

/* ✨ EFFET BRILLANCE AU SURVOL */
.discord-float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

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

/* 🌟 PARTICULES MAGIQUES */
.discord-float-btn::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* 📱 RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .discord-float-btn {
        top: auto;
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        gap: 10px;
    }
    
    .discord-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .discord-icon {
        width: 24px;
        height: 24px;
    }
    
    .discord-text {
        font-size: 16px;
    }
    
    .cloud {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    /* Sur très petit écran, icône seule */
    .discord-text {
        display: none;
    }
    
    .discord-float-btn {
        padding: 14px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }
}

/* 🎯 PULSE EFFECT POUR ATTIRER ATTENTION */
@keyframes discordPulse {
    0% {
        box-shadow: 
            0 8px 32px rgba(88, 101, 242, 0.4),
            0 0 0 0 rgba(88, 101, 242, 0.7);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(88, 101, 242, 0.4),
            0 0 0 15px rgba(88, 101, 242, 0);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(88, 101, 242, 0.4),
            0 0 0 0 rgba(88, 101, 242, 0);
    }
}

.discord-float-btn {
    animation: discordPulse 2s ease-in-out infinite;
}
/* 💰 ANIMATION EXPLOSION TOKENS $DLAND */
.token-explosion {
    position: fixed;
    font-size: 32px;
    font-weight: 900;
    color: #FFD700; /* Or */
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 99999;
    animation: tokenExplode 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    font-family: 'Inter', sans-serif;
}

@keyframes tokenExplode {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translate(
            calc(var(--tx) * 0.7), 
            calc(var(--ty) * 0.7)
        ) rotate(calc(var(--rotation) * 0.5)) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) rotate(var(--rotation)) scale(0.8);
    }
}

/* Variantes couleurs pour différents tokens */
.token-explosion:nth-child(3n) {
    color: #8B5CF6; /* Violet */
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 0.8),
        0 0 20px rgba(139, 92, 246, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.5);
}

.token-explosion:nth-child(3n+1) {
    color: #06B6D4; /* Cyan */
    text-shadow: 
        0 0 10px rgba(6, 182, 212, 0.8),
        0 0 20px rgba(6, 182, 212, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.5);
}

.token-explosion:nth-child(3n+2) {
    color: #EC4899; /* Rose */
    text-shadow: 
        0 0 10px rgba(236, 72, 153, 0.8),
        0 0 20px rgba(236, 72, 153, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Animation spéciale pour les emojis coins */
.token-explosion:nth-child(5n) {
    animation: tokenExplodeRotate 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes tokenExplodeRotate {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translate(
            calc(var(--tx) * 0.7), 
            calc(var(--ty) * 0.7)
        ) rotate(360deg) scale(1.3);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) rotate(720deg) scale(0.5);
    }
}
