

/* ===== Extracted CSS from original file ===== */


    /* RESET & GLOBAL STYLES */
    * {
      margin: 0; 
      padding: 0; 
      box-sizing: border-box;
    }
    
    :root {
      --primary: #ff6600;
      --primary-hover: #ff9c02;
      --secondary: #0f0;
      --dark: #0d0d0d;
      --darker: #080808;
      --card-bg: #151515;
      --card-hover: #1a1a1a;
      --text: #ffffff;
      --text-secondary: #cccccc;
      --accent: #00c8ff;
      --danger: #ff3860;
      --success: #23d160;
      --warning: #ffdd57;
      --border-radius: 8px;
      --box-shadow: 0 8px 30px rgba(255, 102, 0, 0.15);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    html, body {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }
    
    body {
      font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
      background-color: var(--dark);
      color: var(--text);
      line-height: 1.6;
      position: relative;
    }
    
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 10% 10%, rgba(255, 102, 0, 0.03), transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(0, 200, 255, 0.03), transparent 30%),
        var(--dark);
      z-index: -1;
    }
    
    a {
      text-decoration: none;
      color: var(--primary);
      transition: color 0.2s ease, background-color 0.2s ease;
    }
    
    a:hover {
      color: var(--primary-hover);
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    
    ::-webkit-scrollbar-track {
      background: var(--darker);
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-hover);
    }
    
    /* LOADER */
    #loader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; 
      height: 100%;
      background: var(--darker);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    
    #loader .loader-line {
     
      font-size: 2.5em;
      color: var(--secondary);
      text-shadow: 0 0 10px rgba(15, 255, 0, 0.7);
      animation: flicker 1.5s infinite;
      margin-bottom: 20px;
    }
    
    #loader .loader-animation {
      width: 80px;
      height: 80px;
      border: 5px solid rgba(255, 102, 0, 0.3);
      border-radius: 50%;
      border-top-color: var(--primary);
      animation: spin 1s linear infinite;
      margin-bottom: 20px;
    }
    
    #loader .progress-bar {
      width: 200px;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      overflow: hidden;
      position: relative;
    }
    
    #loader .progress-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: var(--primary);
      animation: progress 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes progress {
      0% { width: 0%; }
      100% { width: 100%; }
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    @keyframes flicker {
      0%   { opacity: 1; text-shadow: 0 0 10px rgba(15, 255, 0, 0.7); }
      50%  { opacity: 0.5; text-shadow: 0 0 5px rgba(15, 255, 0, 0.4); }
      100% { opacity: 1; text-shadow: 0 0 10px rgba(15, 255, 0, 0.7); }
    }
    
    /* MAIN CONTENT WRAPPER */
    #main-content {
      display: block;
      opacity: 1;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    
    /* HEADER & NAVIGATION */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(13, 13, 13, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 15px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: var(--transition);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }
    
    header.scrolled {
      padding: 10px 50px;
      background: rgba(8, 8, 8, 0.98);
    }
    
    header .logo {
     
      font-size: 1.8em;
      color: var(--primary);
      font-weight: bold;
      display: flex;
      align-items: center;
    }
    
    header .logo img {
      transition: var(--transition);
    }
    
    header.scrolled .logo img {
      height: clamp(30px, 4vw, 46px);
      width: auto;
      max-width: min(200px, 40vw);
    }
    
/* 1) Reset box-sizing globally so percentage widths include padding */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2) Your nav container */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* 3) Make links inline-block and position‐relative */
nav ul li a {
  display: inline-block;
  position: relative;
  padding: 8px 12px;
  font-size: 1em;
  font-weight: 500;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
}

/* 4) Underline spans full width and animates via scaleX */
nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

nav ul li a:hover::before {
  transform: scaleX(1);
}

/* Desktop nav: calm, compact — mobile hamburger stays as-is */
@media (min-width: 769px) {
  header,
  #header {
    padding: 12px 28px;
    gap: 20px;
  }

  header.scrolled,
  #header.scrolled {
    padding: 8px 28px;
  }

  .nav-mobile-only {
    display: none !important;
  }

  .nav-desktop-only {
    display: list-item;
  }

  #header nav {
    display: flex;
    justify-content: flex-end;
  }

  #header nav ul,
  nav ul {
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 2px;
    margin: 0;
    padding: 0;
  }

  #header nav ul > li > a,
  nav ul > li > a {
    padding: 7px 11px;
    font-size: 0.8125rem;
    font-weight: 550;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    overflow: visible;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease;
  }

  #header nav ul > li > a::before,
  nav ul > li > a::before {
    display: none;
  }

  #header nav ul > li > a:hover,
  #header nav ul > li > a:focus-visible,
  nav ul > li > a:hover,
  nav ul > li > a:focus-visible,
  #header nav .nav-dropdown:hover > .dropdown-trigger,
  #header nav .nav-dropdown.active > .dropdown-trigger {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  #header nav .dropdown-trigger {
    gap: 5px;
  }

  #header nav .dropdown-trigger i {
    font-size: 0.6em;
    opacity: 0.5;
  }

  /* Compact “More” panel — not a mega-menu */
  .dropdown-menu--simple,
  .nav-dropdown.nav-more .dropdown-menu {
    min-width: 200px;
    max-width: 240px;
    padding: 8px;
    left: auto;
    right: 0;
    transform: translateY(-4px) !important;
  }

  .nav-dropdown.nav-more:hover .dropdown-menu,
  .nav-dropdown.nav-more.active .dropdown-menu,
  .nav-dropdown.nav-more .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0) !important;
  }

  .dropdown-menu--simple .dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .dropdown-menu--simple .dropdown-content > a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 550;
    color: rgba(255, 255, 255, 0.82) !important;
    background: none !important;
    text-decoration: none !important;
  }

  .dropdown-menu--simple .dropdown-content > a::before {
    display: none;
  }

  .dropdown-menu--simple .dropdown-content > a:hover,
  .dropdown-menu--simple .dropdown-content > a:focus-visible {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .header-actions {
    gap: 10px;
  }

  .lang-switcher-btn {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop-only {
    display: none !important;
  }
}
    
    /* MOBILE NAV TOGGLE */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      z-index: 1001;
    }
    
    .hamburger div {
      width: 25px;
      height: 3px;
      background: var(--primary);
      margin: 4px 0;
      transition: var(--transition);
      border-radius: 2px;
    }
    
    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Language switcher */
    .lang-switcher {
      position: relative;
      flex-shrink: 0;
      z-index: 1002;
    }

    .lang-switcher-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      color: rgba(255, 255, 255, 0.88);
      font-family: inherit;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .lang-switcher-btn:hover,
    .lang-switcher-btn[aria-expanded="true"] {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(247, 147, 26, 0.45);
      color: #fff;
    }

    .lang-switcher-btn:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .lang-switcher-globe {
      width: 16px;
      height: 16px;
      opacity: 0.85;
      flex-shrink: 0;
    }

    .lang-switcher-chevron {
      width: 14px;
      height: 14px;
      opacity: 0.55;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .lang-switcher-btn[aria-expanded="true"] .lang-switcher-chevron {
      transform: rotate(180deg);
    }

    .lang-switcher-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 168px;
      margin: 0;
      padding: 6px;
      list-style: none;
      background: rgba(12, 12, 12, 0.98);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .lang-switcher-option {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 9px 10px;
      border: none;
      border-radius: 8px;
      background: transparent;
      color: rgba(255, 255, 255, 0.88);
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 500;
      text-align: left;
      cursor: pointer;
      transition: background 0.15s ease;
    }

    .lang-switcher-option:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .lang-switcher-option.is-active {
      background: rgba(247, 147, 26, 0.14);
      color: #fff;
    }

    .lang-switcher-option:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: -2px;
    }

    .lang-flag {
      width: 22px;
      height: 15px;
      border-radius: 2px;
      flex-shrink: 0;
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
      }
      
      header.scrolled {
        padding: 10px 20px;
      }
      
      nav ul {
        display: none;
        flex-direction: column;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: fixed;
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100vh;
        padding: 80px 20px;
        z-index: 1000;
        align-items: center;
        justify-content: center;
      }
      
      nav ul.show { 
        display: flex;
        animation: slideIn 0.3s ease-out forwards;
      }
      
      @keyframes slideIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
      }
      
      nav ul li {
        margin: 10px 0;
      }
      
      nav ul li a {
        font-size: 1.2em;
      }
      
      .hamburger {
        display: flex;
      }
    }
    
    /* SECTIONS */
    section {
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }
    
    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      text-align: center;
    }
    
    h1, h2, h3 {
      text-align: center;
      margin-bottom: 20px;
    }
    
    h1 {
      
      font-size: 3em;
      color: var(--primary);
      text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
      letter-spacing: 1px;
    }
    
    h2 {
      
      font-size: 2.5em;
      color: var(--primary);
      position: relative;
      display: inline-block;
      margin-bottom: 40px;
    }
    
    h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }
    
    h3 {
      font-size: 1.5em;
      color: var(--primary-hover);
      font-weight: 600;
    }
    
    /* HERO SECTION */
    #hero {
      height: 100vh;
      background: linear-gradient(rgba(8, 8, 8, 0.8), rgba(8, 8, 8, 0.8)),
                  url('images/hero-background.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    #hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 20%, rgba(255, 102, 0, 0.1), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.1), transparent 40%);
    }
    
    #hero .hero-content { 
      z-index: 2; 
      max-width: 800px;
      padding: 0 20px;
    }
    
    #hero h1 {
      font-size: 3.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px #000;
      animation: fadeInDown 1s ease-out;
    }
    
    #hero p {
      font-size: 1.3em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px #000;
      animation: fadeInUp 1s ease-out;
      color: var(--text-secondary);
    }
    
    .cta-button {
      display: inline-block;
      background: var(--primary);
      color: var(--dark) !important;
      padding: 14px 32px;
      border-radius: var(--border-radius);
      font-weight: bold;
      transition: var(--transition);
      border: 2px solid var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    }
    
    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: var(--transition);
      z-index: -1;
    }
    
    .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
      background-color: var(--primary);
    }
    
    .cta-button:hover::before {
      width: 100%;
    }
    
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    
    /* Rotating logo animation */
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(-360deg); }
    }
    
    .rotating-image {
      filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.5));
      animation: rotate 10s linear infinite;
    }
    
    /* UTILITIES SECTION (ENHANCED) */
    #utilities {
      background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
      color: var(--text);
      position: relative;
    }
    
    #utilities::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6600' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }
    
    #utilities p {
      font-size: 1.1em;
      max-width: 700px;
      margin: 0 auto 40px;
      color: var(--text-secondary);
    }
    
    /* Utility grid for tabs */
    .utility-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
    }
    
    .utility-card {
      background: var(--card-bg);
      border-radius: var(--border-radius);
      padding: 30px;
      width: 100%;
      max-width: 350px;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid rgba(255, 102, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .utility-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-hover));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }
    
    .utility-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(255, 102, 0, 0.2);
      background: var(--card-hover);
      border-color: rgba(255, 102, 0, 0.3);
    }
    
    .utility-card:hover::before {
      transform: scaleX(1);
    }
    
    .utility-card .card-icon {
      position: relative;
      margin-bottom: 20px;
      transition: var(--transition);
    }
    
    .utility-card:hover .card-icon {
      transform: scale(1.05);
    }
    
    .utility-card .card-icon img {
      width: 200px;
      height: 160px;
      object-fit: contain;
      filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.5));
      image-rendering: pixelated;
      transition: var(--transition);
    }
    
    .utility-card:hover .card-icon img {
      filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.7));
    }
    
    .utility-card h3 {
      
      font-size: 1.3em;
      color: var(--primary-hover);
      margin-bottom: 15px;
      transition: var(--transition);
    }
    
    .utility-card:hover h3 {
      color: var(--primary);
    }
    
    .utility-card p {
      font-size: 0.95em;
      line-height: 1.6;
      color: var(--text-secondary);
      margin-bottom: 20px;
    }
    
    .utility-card .card-link {
      display: inline-block;
      margin-top: auto;
      padding: 10px 20px;
      background-color: transparent;
      color: var(--primary) !important;
      border: 2px solid var(--primary);
      border-radius: var(--border-radius);
      font-weight: bold;
      transition: var(--transition);
      text-transform: uppercase;
      font-size: 0.9em;
      letter-spacing: 1px;
    }
    
    .utility-card .card-link:hover {
      background-color: var(--primary);
      color: var(--dark) !important;
      transform: translateY(-3px);
    }
    
    /* ABOUT SECTION */
    #about {
      background: url('images/about-background.jpg') no-repeat center center/cover;
      position: relative;
    }
    
    #about::before {
      content: "";
      position: absolute; 
      top: 0; 
      left: 0;
      width: 100%; 
      height: 100%;
      background: rgba(8, 8, 8, 0.85);
      z-index: 0;
    }
    
    #about .section-container {
      position: relative; 
      z-index: 1; 
      text-align: center;
    }
    
    #about p {
      max-width: 800px; 
      margin: 0 auto 20px; 
      font-size: 1.1em; 
      text-align: center;
      color: var(--text-secondary);
      line-height: 1.8;
    }
    
    /* TOKENOMICS SECTION (REVISED) */
    #tokenomics {
      background: var(--dark);
      color: var(--text-secondary);
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }
    
    #tokenomics::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 30% 30%, rgba(255, 102, 0, 0.05), transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(0, 200, 255, 0.05), transparent 30%);
      z-index: 0;
    }
    
    #tokenomics .section-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    #tokenomics h2 {
      color: var(--primary);
      margin-bottom: 40px;
      
    }
    
    .tokenomics-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }
    
    .tokenomics-info-card {
      background: var(--card-bg);
      border-radius: var(--border-radius);
      padding: 25px;
      text-align: center;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      border: 1px solid rgba(255, 102, 0, 0.1);
      height: 100%;
    }
    
    .tokenomics-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(255, 102, 0, 0.2);
      border-color: rgba(255, 102, 0, 0.3);
    }
    
    .tokenomics-info-card h3 {
      color: var(--primary-hover);
      margin-bottom: 15px;
      font-size: 1.3em;
      
    }
    
    .tokenomics-info-card p {
      color: var(--text-secondary);
      line-height: 1.6;
      font-size: 0.95em;
    }
    
    .copy-button {
      margin-left: 8px;
      background: rgba(255, 102, 0, 0.1);
      color: var(--primary);
      border: 1px solid var(--primary);
      border-radius: 4px;
      padding: 4px 8px;
      font-size: 0.8em;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .copy-button:hover {
      background: var(--primary);
      color: var(--dark);
    }
    
    .tokenomics-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }
    
    .tokenomics-card {
      background: var(--card-bg);
      border-radius: var(--border-radius);
      padding: 30px;
      text-align: center;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      border: 1px solid rgba(255, 102, 0, 0.1);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .tokenomics-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(255, 102, 0, 0.2);
      border-color: rgba(255, 102, 0, 0.3);
    }
    
    .tokenomics-card h3 {
      color: var(--primary-hover);
      margin-bottom: 15px;
      font-size: 1.3em;
      
    }
    
    .tokenomics-card p {
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.95em;
    }
    
    .tokenomics-card .cta-button {
      margin-top: auto;
      align-self: center;
    }
    
    /* COMMUNITY SECTION */
    #community {
      background: #121212;
      position: relative;
    }
    
    #community::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6600' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.5;
    }
    
    #community .section-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    #community h2 {
      text-align: center;
      display: inline-block;
      margin: 0 auto 40px;
      position: relative;
      padding-left: 180px;
    }
    
    /* Social Icons */
    #community .social-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      align-items: center;
      margin-bottom: 50px;
    }
    
    #community .social-item {
      background: var(--card-bg);
      padding: 15px 20px;
      border-radius: var(--border-radius);
      display: inline-flex;
      align-items: center;
      gap: 15px;
      text-align: left;
      transition: var(--transition);
      border: 1px solid rgba(255, 102, 0, 0.1);
    }
    
    #community .social-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(255, 102, 0, 0.15);
      border-color: rgba(255, 102, 0, 0.3);
    }
    
    #community .social-item img {
      width: 28px;
      height: 28px;
      margin: 0;
      vertical-align: middle;
      filter: brightness(0.9);
      transition: var(--transition);
    }
    
    #community .social-item:hover img {
      filter: brightness(1);
      transform: scale(1.1);
    }
    
    #community .social-item a {
      font-weight: bold;
      background: transparent;
    }
    
    #community .collaborators {
      margin-top: 40px;
      text-align: left;
    }
    
    .collaborator {
      background: var(--card-bg);
      padding: 30px;
      border-radius: var(--border-radius);
      margin-bottom: 30px;
      transition: var(--transition);
      border: 1px solid rgba(255, 102, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .collaborator::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--primary);
      opacity: 0.7;
    }
    
    .collaborator:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      border-color: rgba(255, 102, 0, 0.3);
    }
    
    .collaborator h3 {
      text-align: center;
      margin-bottom: 15px;
      color: var(--primary-hover);
    }
    
    .collaborator p {
      margin-bottom: 20px;
      color: var(--text-secondary);
    }
    
    .collaborator a {
      color: var(--text);
      font-weight: bold;
    }
    
    .cta-buttons {
      text-align: center;
      margin-top: 20px;
    }
    
    /* FOOTER */
    footer {
      background: var(--darker);
      padding: 60px 20px 40px;
      text-align: center;
      font-size: 0.9em;
      color: var(--text-secondary);
      position: relative;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--primary-hover), var(--accent), var(--primary-hover), var(--primary));
      background-size: 200% 100%;
      animation: gradient 15s ease infinite;
    }
    
    @keyframes gradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    footer a {
      color: var(--primary);
      margin: 0 10px;
      transition: var(--transition);
    }
    
    footer a:hover {
      color: var(--dark);
      background-color: var(--primary);
    }
    
    footer img {
      width: 80px;
      height: 80px;
      margin: 0 15px;
      transition: var(--transition);
      filter: grayscale(30%);
    }
    
    footer img:hover {
      transform: translateY(-5px);
      filter: grayscale(0%);
    }
    
    /* Floating "Buy FB/TLB" button */
    .floating-buy-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      color: var(--dark);
      border: none;
      border-radius: var(--border-radius);
      padding: 15px 30px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      z-index: 2000;
      transition: var(--transition);
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    
    .floating-buy-btn::before {
      
      font-size: 1.2em;
    }
    
    .floating-buy-btn:hover {
      background: var(--primary-hover);
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    }

    /* Hidden while InAI sticky preview CTA is visible (mobile) */
    .floating-buy-btn.is-hidden-for-inai {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(12px);
    }
    
    /* Back to top button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      left: 30px;
      background: rgba(255, 102, 0, 0.2);
      color: var(--primary);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1.5em;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 1000;
      border: 2px solid var(--primary);
    }
    
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: var(--primary);
      color: var(--dark);
      transform: translateY(-5px);
    }
    
    /* RESPONSIVE ADJUSTMENTS */
    @media (max-width: 1200px) {
      h1 { font-size: 2.8em; }
      h2 { font-size: 2.2em; }
      .utility-grid, .tokenomics-cards, .tokenomics-info-grid {
        gap: 20px;
      }
    }
    
    @media (max-width: 992px) {
      section { padding: 70px 15px; }
      .utility-card, .tokenomics-info-card, .tokenomics-card {
        padding: 25px;
      }
      #hero h1 { font-size: 3em; }
    }
    
    @media (max-width: 768px) {
      /* Header logo sizing handled via .brand-dropdown-wrapper rules */
      
      /* Slightly decrease the section padding on mobile */
      section {
        padding: 60px 15px;
      }
      
      /* Adjust font sizes in the hero section */
      #hero h1 {
        font-size: 2.5em;
      }
      
      #hero p {
        font-size: 1.1em;
      }
      
      h2 {
        font-size: 2em;
      }
      
      .utility-card .card-icon img {
        width: 180px;
        height: 140px;
      }
      
      .floating-buy-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9em;
      }
      
      .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2em;
      }
      
      #nfts .collection {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }
    
    @media (max-width: 576px) {
      h1 { font-size: 2.2em; }
      h2 { font-size: 1.8em; }
      h3 { font-size: 1.3em; }
      
      .cta-button {
        padding: 12px 25px;
        font-size: 0.9em;
      }
      
      .utility-card, .tokenomics-info-card, .tokenomics-card {
        padding: 20px;
      }
      
      .utility-card .card-icon img {
        width: 160px;
        height: 120px;
      }
      
      #nfts .nft-image {
        height: 250px;
      }
      
      #nfts .nft-title {
        font-size: 1.5em;
      }
      
      .subscribe input[type="email"] {
        width: 100%;
      }
      
      .subscribe button {
        width: 100%;
      }
    }
    
    /* Animation for elements when they come into view */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .animate-on-scroll.show {
      opacity: 1;
      transform: translateY(0);
    }
/* Backers Section */
#backers {
  padding: 60px 20px;
  text-align: center;
}
#backers h2 {
  font-size: 2em;
  color: var(--primary);
  margin-bottom: 30px;
}
#backers .backers-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
#backers .backers-list a {
  display: inline-block;
  transition: var(--transition);
}
#backers .backers-list img {
  width: 300px;
  height: auto;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 10px rgba(255,102,0,0.5));
}
#backers .backers-list a:hover img {
  transform: translateY(-5px);
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}


  /* ===== Header brand (logo en haut gauche) ===== */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#header nav {
  flex: 1 1 auto;
  min-width: 0;
}

.header-actions {
  margin-left: auto;
}

@media (max-width: 768px) {
  #header nav {
    flex: 0 0 auto;
    width: 0;
    overflow: visible;
  }
}

header .brand,
header .brand picture.brand-logo {
  display: block;
  line-height: 0;
  flex-shrink: 1;
  min-width: 0;
}

header .brand img {
  height: clamp(34px, 4.5vw, 52px);
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  display: block;
  animation: none !important;
  transform: none !important;
}

@media (max-width: 640px) {
  header .brand img {
    height: clamp(32px, 8.5vw, 38px);
    width: clamp(32px, 8.5vw, 38px);
    max-width: 38px;
  }
}

@media (max-width: 768px) {
  header,
  header.scrolled {
    padding: 10px 14px;
  }
}

/* ===== Logo du HERO ===== */
.hero-logo {
  width: clamp(180px, 28vw, 360px);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.35));
  image-rendering: auto;   /* évite le pixelisé trop fort */
  animation: none;         /* pas de rotation */
  transform: none;
}

/* Option : léger “respir” sous le header collant */
#hero { 
  padding-top: 24px;       /* ajuste si le header est fixe */
}

/* (Facultatif) si tu veux un léger halo animé soft (sans tourner) : */
@keyframes pulse-glow {
  0%   { filter: drop-shadow(0 10px 26px rgba(255,122,0,.12)); }
  50%  { filter: drop-shadow(0 10px 26px rgba(255,122,0,.24)); }
  100% { filter: drop-shadow(0 10px 26px rgba(255,122,0,.12)); }
}
h1, h2, h3, .hero-title {
  font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
}
.social-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border: 1px solid #333;
  padding: 12px 20px;
  border-radius: 8px;
  transition: transform 0.2s, background 0.2s;
}

.social-item i {
  font-size: 24px;
}

.social-item a {
  color: #ff6600; /* orange */
  font-weight: bold;
  text-decoration: none;
}

.social-item:hover {
  background: #222;
  transform: translateY(-5px);
}

/* Couleurs spécifiques */
.social-item.tiktok i { color: #69C9D0; }
.social-item.discord i { color: #5865F2; }
.social-item.telegram i { color: #0088cc; }
.social-item.x i { color: #fff; }
