
/* ==================== TOKENOMICS STYLES ==================== */

/* Appliquer les styles de base depuis index.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Fond particules cosmiques - CORRECTION : dans le cadre */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: transparent;
}

/* Header styles cohérents avec index.css */
header {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  color: white;
  text-align: center;
  padding: 10px 20px;
  position: relative;
  z-index: 10;
  border: none;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
}

header h1 {
  color: #ffcc33;
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 204, 51, 0.5);
}

header p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 15px;
}

header nav {
  margin-top: 15px;
}

.btn {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 25px;
  margin: 5px;
  transition: 0.3s;
  font-weight: bold;
  position: relative;
  z-index: 10;
}

.btn:hover {
  background: #ee5a52;
  transform: scale(1.05);
}

.btn.active {
  background: #ffcc33;
  color: #2d3436;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 204, 51, 0.6);
  font-weight: bold;
}

.language-selector {
  margin-bottom: 15px;
  position: relative;
  z-index: 10;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid #ffcc33;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  position: relative;
  z-index: 10;
}

.lang-btn:hover {
  background: rgba(255, 204, 51, 0.3);
}

.lang-btn.active {
  background: #ffcc33;
  color: #2d3436;
}

/* Main container */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

/* Footer styles cohérents */
footer {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.footer-tagline {
  color: #ffcc33;
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 10px;
}

.footer-links {
  margin-top: 15px;
}

.footer-links a {
  color: #ffcc33;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff6b6b;
}

.separator {
  margin: 0 15px;
  color: #666;
}

/* Hero Section - Style cohérent avec index.css */
.tokenomics-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 2px solid rgba(255, 204, 51, 0.3);
  box-shadow: 0 20px 60px rgba(255, 204, 51, 0.2);
  position: relative;
  z-index: 2;
}

.tokenomics-hero h1 {
  font-size: 3.5rem;
  color: #ffcc33;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 204, 51, 0.3);
}

.subtitle {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 30px;
}

/* Contract Info Section */
.contract-info {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
  position: relative;
  z-index: 2;
}

.contract-info h2 {
  color: #667eea;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-10px);
  border-color: #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.info-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.info-card h3 {
  color: #ffcc33;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.info-card p {
  color: #f0f0f0;
  font-size: 1.1rem;
  font-weight: bold;
}

.contract-address-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 204, 51, 0.3);
}

.contract-address-box h3 {
  color: #ffcc33;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.address-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

#contract-address {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 25px;
  border-radius: 15px;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  border: 2px solid #ffcc33;
  color: #ffcc33;
}

.copy-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  font-size: 1rem;
}

.copy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.verify-link a {
  color: #ffcc33;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.verify-link a:hover {
  color: #ff6b6b;
}

/* Distribution Section */
.distribution-section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  border: 2px solid rgba(255, 111, 0, 0.3);
  box-shadow: 0 20px 60px rgba(255, 111, 0, 0.2);
  position: relative;
  z-index: 2;
}

.distribution-section h2 {
  color: #ff6f00;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(255, 111, 0, 0.3);
}

.chart-container {
  margin-bottom: 50px;
}

.distribution-visual {
  display: flex;
  height: 120px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.dist-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.dist-bar:hover {
  transform: scale(1.05);
  z-index: 2;
}

.dist-bar span {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.dist-bar p {
  font-size: 0.8rem;
  margin: 0;
  text-align: center;
}

.distribution-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.dist-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.dist-item:hover {
  transform: translateY(-5px);
  border-color: #ffcc33;
  box-shadow: 0 10px 30px rgba(255, 204, 51, 0.2);
}

.dist-item h3 {
  color: #ffcc33;
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 204, 51, 0.3);
}

.dist-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dist-item li {
  color: #f0f0f0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
}

.dist-item li:last-child {
  border-bottom: none;
}

.dist-item li:before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 0.9rem;
}

.dist-item li strong {
  color: #ffcc33;
}

/* Features Section */
.features-section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  border: 2px solid rgba(118, 75, 162, 0.3);
  box-shadow: 0 20px 60px rgba(118, 75, 162, 0.2);
  position: relative;
  z-index: 2;
}

.features-section h2 {
  color: #764ba2;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(118, 75, 162, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #764ba2;
  box-shadow: 0 15px 40px rgba(118, 75, 162, 0.3);
}

.feature-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #ffcc33;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: #f0f0f0;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Tax Section */
.tax-section {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  border: 2px solid rgba(255, 204, 51, 0.3);
  box-shadow: 0 20px 60px rgba(255, 204, 51, 0.2);
  position: relative;
  z-index: 2;
}

.tax-section h2 {
  color: #ffcc33 !important;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(255, 204, 51, 0.3);
}

/* Buy Section */
.buy-section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  border: 2px solid rgba(0, 184, 148, 0.3);
  box-shadow: 0 20px 60px rgba(0, 184, 148, 0.2);
  position: relative;
  z-index: 2;
}

.buy-section h2 {
  color: #00b894;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(0, 184, 148, 0.3);
}

.buy-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.buy-method {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.buy-method:hover {
  transform: translateY(-10px);
  border-color: #00b894;
  box-shadow: 0 15px 40px rgba(0, 184, 148, 0.3);
}

.method-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 20px;
}

.buy-method h3 {
  color: #ffcc33;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.buy-method p {
  color: #f0f0f0;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.method-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0, 184, 148, 0.4);
}

.method-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.6);
}

/* Specs Section */
/* SPECIFICATIONS SECTION - STYLE AMÉLIORÉ */
.specs-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  color: white;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.specs-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #ffcc33;
  text-shadow: 0 0 20px rgba(255, 204, 51, 0.3);
  font-weight: 700;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.spec-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}

.spec-card:hover::before {
  left: 100%;
}

.spec-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.spec-card h4 {
  color: #ffcc33;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  word-break: break-all;
}

.spec-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* Animation d'apparition */
.specs-section {
  animation: fadeInUp 0.8s ease-out;
}

.spec-card:nth-child(1) { animation-delay: 0.1s; }
.spec-card:nth-child(2) { animation-delay: 0.2s; }
.spec-card:nth-child(3) { animation-delay: 0.3s; }
.spec-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
  .specs-section {
    padding: 40px 25px;
  }
  
  .specs-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .spec-card {
    padding: 30px 20px;
  }
  
  .spec-value {
    font-size: 1.5rem;
  }
  
  .spec-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .specs-section {
    padding: 30px 20px;
  }
  
  .specs-section h2 {
    font-size: 1.8rem;
  }
  
  .spec-card {
    padding: 25px 15px;
  }
  
  .spec-value {
    font-size: 1.3rem;
  }
}

/* Warning Box */
.warning-box {
  background: rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #ff6b6b;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.warning-box h2 {
  color: #ff6b6b;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.warning-box p {
  color: #f0f0f0;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.warning-box a {
  color: #ffcc33;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.warning-box a:hover {
  color: #ff6b6b;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tokenomics-hero,
.contract-info,
.distribution-section,
.features-section,
.tax-section,
.buy-section,
.specs-section,
.warning-box {
  animation: fadeInUp 0.8s ease-out;
}

/* Délais d'animation pour effet cascade */
.contract-info { animation-delay: 0.1s; }
.distribution-section { animation-delay: 0.2s; }
.features-section { animation-delay: 0.3s; }
.tax-section { animation-delay: 0.4s; }
.buy-section { animation-delay: 0.5s; }
.specs-section { animation-delay: 0.6s; }
.warning-box { animation-delay: 0.7s; }

/* Effet de brillance sur les cartes */
.feature-card::before,
.buy-method::before,
.info-card::before,
.dist-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
}

.feature-card:hover::before,
.buy-method:hover::before,
.info-card:hover::before,
.dist-item:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tokenomics-hero h1 {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .distribution-visual {
    height: 80px;
    flex-wrap: wrap;
  }
  
  .dist-bar {
    min-width: 60px;
  }
  
  .dist-bar span {
    font-size: 0.9rem;
  }
  
  .dist-bar p {
    font-size: 0.7rem;
  }
  
  .distribution-details {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .buy-methods {
    grid-template-columns: 1fr;
  }
  
  .address-container {
    flex-direction: column;
  }
  
  #contract-address {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .tokenomics-hero {
    padding: 40px 20px;
  }
  
  .tokenomics-hero h1 {
    font-size: 2rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .distribution-visual {
    height: 60px;
  }
  
  .dist-bar {
    min-width: 50px;
  }
  
  .dist-bar span {
    font-size: 0.8rem;
  }
  
  .dist-bar p {
    display: none;
  }
  
  .contract-info,
  .distribution-section,
  .features-section,
  .tax-section,
  .buy-section,
  .specs-section {
    padding: 30px 20px;
  }
}

/* ==================== FIN TOKENOMICS STYLES ==================== */

/* ==================== TOKENOMICS STYLES ULTRA BURN ==================== */

/* Appliquer les styles de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: transparent;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  color: white;
  text-align: center;
  padding: 10px 20px;
  position: relative;
  z-index: 10;
  border: none;
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
}

header h1 {
  color: #ffcc33;
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(255, 204, 51, 0.5);
}

/* Main container */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.tokenomics-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 80px 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 2px solid rgba(255, 204, 51, 0.3);
  box-shadow: 0 20px 60px rgba(255, 204, 51, 0.2);
  position: relative;
  z-index: 2;
}

.tokenomics-hero h1 {
  font-size: 3.5rem;
  color: #ffcc33;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 204, 51, 0.3);
}

.subtitle {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 30px;
}

.burn-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

/* Security Section */
.security-section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  border: 2px solid rgba(0, 184, 148, 0.3);
  box-shadow: 0 20px 60px rgba(0, 184, 148, 0.2);
}

.security-section h2 {
  color: #00b894;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.security-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.security-card:hover {
  transform: translateY(-5px);
  border-color: #00b894;
}

.security-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.security-card h3 {
  color: #ffcc33;
  margin-bottom: 10px;
}

/* Burn Strategy Section */
.burn-strategy-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  padding: 60px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  color: white;
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.4);
}

.burn-strategy-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffcc33;
}

.burn-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.burn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.burn-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}

.burn-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.burn-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.burn-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.burn-percent {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffcc33;
}

.burn-amount {
  font-size: 1.1rem;
  opacity: 0.9;
}

.burn-impact {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.burn-impact h4 {
  color: #ffcc33;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Revenue Section */
.revenue-section {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  border: 2px solid rgba(255, 204, 51, 0.3);
  box-shadow: 0 20px 60px rgba(255, 204, 51, 0.2);
}

.revenue-section h2 {
  color: #ffcc33;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.revenue-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.revenue-card:hover {
  transform: translateY(-5px);
  border-color: #ffcc33;
}

.revenue-card h3 {
  color: #ffcc33;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.revenue-amount {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #00b894;
}

.revenue-card ul {
  list-style: none;
  text-align: left;
  margin-top: 20px;
}

.revenue-card li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.revenue-card li:before {
  content: '✅';
  position: absolute;
  left: 0;
}

/* Tax Section */
.tax-section {
  background: rgba(255, 255, 255, 0.08);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 60px;
  border: 2px solid rgba(102, 126, 234, 0.3);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.tax-section h2 {
  color: #667eea;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 40px;
}

.tax-header {
  text-align: center;
  margin-bottom: 40px;
}

.tax-total {
  font-size: 4rem;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 10px;
}

.tax-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.tax-card {
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  color: white;
  transition: 0.3s;
}

.tax-card:hover {
  transform: translateY(-5px);
}

.burn-tax {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.liquidity-tax {
  background: linear-gradient(135deg, #00b894 0%, #00d2d3 100%);
}

.refuges-tax {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.tax-percent {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Ajouter les autres styles existants... */

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tokenomics-hero,
.security-section,
.contract-info,
.burn-strategy-section,
.distribution-section,
.tax-section,
.revenue-section,
.specs-section,
.buy-section,
.warning-box {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .tokenomics-hero h1 {
    font-size: 2.5rem;
  }
  
  .burn-grid,
  .revenue-grid,
  .tax-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
  
  .distribution-visual {
    flex-wrap: wrap;
    height: auto;
  }
  
  .dist-bar {
    min-width: 80px;
    height: 60px;
  }
}


/* Scrollbar personnalisée */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff6b6b, #ffcc33);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ffcc33, #ff6b6b);
}
/* Bouton Retour en haut - Version Chat */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b, #ffcc33);
  color: #2d3436;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(255, 107, 107, 0.5);
  transition: all 0.3s ease;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 35px rgba(255, 204, 51, 0.7);
  background: linear-gradient(135deg, #ffcc33, #ff6b6b);
}

.back-to-top:hover::after {
  content: "🐱";
  position: absolute;
  font-size: 20px;
}

.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

.back-to-top.show {
  display: flex;
  animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(20px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
/* ==================== FIN TOKENOMICS STYLES ==================== */
