body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: radial-gradient(circle at top left, #0a0a12, #101018);
      color: #fff;
      overflow-x: hidden;
      scroll-behavior: smooth; /* smooth scroll */
      font-size: 17px; /* Temel yazı tipi boyutu */
    }

h1, h2, h3, h4 {
    font-weight: 600;
}

p {
    line-height: 1.7;
}
/* Global consistency for sizing and images */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
   
/* Tooltip for nav actions */
.nav-actions a {
  position: relative;
}

.nav-actions a::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 130%; /* artık altta çıkacak */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 0.85em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.nav-actions a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(5px);
}

.nav-actions a::before {
  content: "";
  position: absolute;
  top: 120%; /* ok işareti de alta geldi */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0,0,0,0.85) transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-actions a:hover::before {
  opacity: 1;
}




.hero-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-icons a {
  position: relative;
  display: inline-block;
}

.hero-icons img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  transition: transform 0.3s;
  cursor: pointer;
}

.hero-icons img:hover {
  transform: scale(1.1);
}

/* Tooltip */
.hero-icons a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%; /* ikonun üstünde */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 0.85em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.hero-icons a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.hero-icons a::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0,0,0,0.85) transparent;
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-icons a:hover::before {
  opacity: 1;
}







    /* NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 18, 0.8); /* Daha koyu ve temaya uygun */
  backdrop-filter: blur(10px);
  z-index: 999;
  border-bottom: 1px solid rgba(0, 207, 255, 0.2); /* Tematik renk */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px; /* Biraz daha ferah */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo a {
  font-size: 1.7rem;
  font-weight: bold;
  color: #00cfff;
  text-decoration: none;
  text-shadow: 0 0 15px rgba(0,207,255,0.8);
  transition: transform 0.3s;
}
.nav-logo a:hover {
    transform: scale(1.05);
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px; /* Aralıkları artır */
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #e0e0e0; /* Saf beyaz yerine daha yumuşak */
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem; /* Yazı tipi boyutu büyütüldü */
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00cfff, #ff5733);
    transition: width 0.3s ease-in-out;
}
.nav-links li a:hover {
  color: #fff;
}
.nav-links li a:hover::after {
    width: 100%;
}


/* Actions (button sağda) */
.btn-nav {
  padding: 10px 22px; /* Daha dolgun */
  border-radius: 25px;
  background: linear-gradient(90deg, #ff4500, #ff8c00); /* Daha canlı gradyan */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(255, 87, 51, 0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-nav:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 87, 51, 1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  color: #00cfff;
  background: transparent;
  border: none;
}

.nav-actions-mobile {
    display: none;
    position: relative; /* COMING SOON yazısını konumlandırmak için */
}

.coming-soon-mobile {
    display: none; /* Varsayılan olarak gizle */
    font-size: 0.8em;
    color: #ff8c00; /* Vurgulu bir renk */
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 68px; /* Header yüksekliğine göre ayarlandı */
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px;
    display: none;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-actions {
    display: none; /* Masaüstü butonu gizle */
  }
  .nav-actions-mobile {
      display: block; /* Mobil butonu göster */
  }
  .nav-toggle {
    display: block;
  }
}

/* Override: keep Buy Now size and center on mobile */
@media (max-width: 768px) {
  .nav-actions-mobile { align-items: center; }
  .nav-actions-mobile .btn-nav {
    width: auto;
    max-width: none;
    display: inline-block;
    margin: 0 auto;
    padding: 10px 22px; /* original size */
  }
}

/* Holders bar (live, minimal) */
.holders-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  margin: 10px 0 0 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 18px rgba(0, 207, 255, 0.2);
}
.holders-label { color: #b5b5b5; font-size: 0.95rem; }
.holders-count { color: #fff; font-weight: 600; font-size: 1rem; }
.holders-delta { font-size: 0.95rem; }
.holders-delta.up { color: #18c964; }
.holders-delta.down { color: #ff5a5f; }
.holders-delta.neutral { color: #b5b5b5; }

@media (max-width: 768px) {
  .holders-bar { margin: 10px auto 0 auto; }
}









    #bgCanvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: radial-gradient(circle at top left, #0a0a12, #101018);
    }

    .hero-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 120px 50px 60px; /* Üst, Yatay, Alt padding */
      min-height: 90vh;
      text-align: left;
      animation: fadeIn 1.5s ease-in-out;
    }
    .hero-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 1200px;
    }
    .hero-title {
      font-size: 3.8rem;
      color: #00cfff;
      animation: glowText 2s infinite alternate;
    }
    .hero-title .subtitle {
      display: block;
      font-size: 1.5rem;
      color: #ff4500;
      margin-top: 10px; /* Başlık ile alt başlık arasına boşluk */
    }
    .hero-description {
        font-size: 1.2rem;
        color: #ccc;
    }
    .hero-description .highlight {
      color: #ff5733;
    }
    .hero-stats {
      display: flex;
      gap: 30px;
      margin: 20px 0;
    }
    .stat-item {
      text-align: center;
    }
    .stat-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #00cfff;
    }
    .btn {
      padding: 12px 24px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-right: 15px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .btn-primary {
      background: linear-gradient(90deg, #ff4500, #ff5733);
      color: #fff;
      box-shadow: 0 0 15px rgba(255, 87, 51, 0.7);
    }
    .btn-primary:hover {
      box-shadow: 0 0 30px rgba(255, 87, 51, 1);
      transform: scale(1.05);
    }
    .btn-secondary {
      background: transparent;
      border: 2px solid #00cfff;
      color: #00cfff;
    }
    .btn-secondary:hover {
      background: #00cfff;
      color: #000;
      transform: scale(1.05);
    }
.token-circle {
  width: 450px;
  height: 450px;
  overflow: hidden;
  position: relative;
  border-radius: 50%; /* yuvarlak */
  border: 4px solid transparent;
  background: linear-gradient(135deg, #00cfff, #ff5733);
  box-shadow: 0 0 40px rgba(0, 207, 255, 0.5);
  animation: pulse 3s infinite;
}

.token-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* resmi kırpar ama bozmadan doldurur */
  border-radius: 50%;  /* resim de yuvarlak olsun */
}

.text-box {
  margin: 25px auto;
  padding: 20px;
  background: rgba(0, 207, 255, 0.05);
  border-left: 4px solid #00cfff;
  border-radius: 8px;
  max-width: 900px;
  text-align: left;
}

.text-box h4 {
  margin: 0 0 10px 0;
  color: #ff5733;
  font-size: 1.4rem;
}

.text-box p {
  margin: 0;
  color: #ccc;
  line-height: 1.6em;
  font-size: 1.1rem;
}


    section {
      padding: 80px 20px;
      scroll-margin-top: 80px;
    }


    /* ABOUT SECTION */
#about {
  text-align: center;
  padding: 20px 20px 80px; /* Üst padding azaltıldı */
}

#about h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff5733;
  text-shadow: 0 0 15px rgba(0, 207, 255, 0.7);
}


/* FLEX LAYOUT */
.about-flex {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap; /* yan yana sabit kalır */
  max-width: 1200px;
  margin: 0 auto;
}

.about-item {
  flex: 1;
  min-width: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* Metinlerin z-index'ini kontrol etmek için */
}

.about-item img {
  width: 100%;             /* Taşmayı engelle */
  height: auto;           /* Yüksekliği otomatik yap */    
  object-fit: cover;        /* Kırpma yapar */
  border-radius: 12px;
  position: relative; /* Metinlerin arkasına almayı kaldır */
  z-index: 1; /* Metinlerin altında kalmasını sağla */
  margin-bottom: 15px; /* Metinlerle arasında boşluk bırak */
}


.about-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 207, 255, 0.6);
}



.about-item h3 {
  font-size: 1.6rem;
  margin: 10px 0;
  color: #ff5733;
  position: relative; /* Metinlerin resmin üzerinde görünmesini sağla */
  z-index: 2;
  padding-top: 10px; /* Resim ile başlık arasına boşluk */
}

.about-item p {
  font-size: 1.1rem;
  color: #ddd;
  position: relative; /* Metinlerin resmin üzerinde görünmesini sağla */
  z-index: 2;
}




/* TOKENOMICS SECTION */
#tokenomics {
  text-align: center;
  padding: 80px 20px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#tokenomics h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #ff5733;
  text-shadow: 0 0 15px rgba(0, 207, 255, 0.7);
}

/* GRID LAYOUT */
.tokenomics-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

/* CARD DESIGN */
.tokenomics-card {
  flex: 1;
  min-width: 250px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 0 20px rgba(0, 207, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tokenomics-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 87, 51, 0.7);
}

.tokenomics-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ff5733;
}

.tokenomics-card p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

/* ROADMAP SECTION */
#roadmap {
  padding: 80px 20px;
  background: rgba(255,255,255,0.02);
}

#roadmap h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff5733;
  text-shadow: 0 0 15px rgba(0, 207, 255, 0.7);
}


/* TIMELINE */
.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 3px solid rgba(0, 207, 255, 0.3);
}

.roadmap-item {
  position: relative;
  margin-bottom: 40px;
}

.roadmap-dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00cfff, #ff5733);
  border-radius: 50%;
  position: absolute;
  left: -11px;
  top: 5px;
  box-shadow: 0 0 15px rgba(0, 207, 255, 0.7);
}

.roadmap-content {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 87, 51, 0.6);
}

.roadmap-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.roadmap-content p {
    font-size: 1.1rem;
}

/* FOOTER */
#footer {
  background: #0a0a12;
  padding: 60px 20px 20px 20px;
  color: #ccc;
  margin-top: 60px;
  border-top: 2px solid rgba(0,207,255,0.2);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sol bölüm */
.footer-about h3 {
  color: #00cfff;
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.footer-about p {
  max-width: 300px;
  font-size: 1rem;
  line-height: 1.5em;
}

/* Orta bölüm */
.footer-links h4,
.footer-socials h4 {
  color: #ff5733;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin: 8px 0;
}
.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #00cfff;
}

/* Sağ bölüm (ikonlar) */
.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; /* Büyütüldü */
  height: 45px; /* Büyütüldü */
  border-radius: 12px; /* Daha modern köşe */
  background: rgba(255,255,255,0.08);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icons a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 207, 255, 0.5);
}
.social-icons img {
    width: 70%;
    height: auto;
    border-radius: 6px;
}


/* hero bölüm (ikonlar) */
.hero-icons {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap; /* Mobil görünümde alt alta geçmesi için */
  justify-content: center; /* Mobil görünümde ortalamak için */
}
.hero-icons a { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px; /* Büyütüldü */
  height: 90px; /* Büyütüldü */
  border-radius: 12px; /* Daha modern köşe */
  background: rgba(255,255,255,0.08);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.hero-icons a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 207, 255, 0.5);
}
.hero-icons img {
    width: 90%;
    height: auto;
    border-radius: 6px;
}

.hero-icons-wrapper {
  padding-top: 100px; /* Eski inline stilin yerine */
}

@media (max-width: 768px) {
  .hero-icons-wrapper {
    padding-top: 50px; /* Mobil görünümde boşluğu azalt */
  }
}

@media (max-width: 768px) {
  .hero-icons a {
    width: 70px; /* Mobil görünümde ikon boyutunu küçült */
    height: 70px; /* Mobil görünümde ikon boyutunu küçült */
  }
}






/* Alt kısım */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  text-align: center;
  font-size: 1rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-about p {
    margin: 0 auto;
  }
}



    @keyframes pulse {
      0% { box-shadow: 0 0 10px rgba(0, 207, 255, 0.5); }
      50% { box-shadow: 0 0 30px rgba(255, 87, 51, 0.8); }
      100% { box-shadow: 0 0 10px rgba(0, 207, 255, 0.5); }
    }
    @keyframes glowText {
      from { text-shadow: 0 0 10px #00cfff; }
      to { text-shadow: 0 0 25px #ff5733, 0 0 40px #00cfff; }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }










@media (max-width: 768px) {
  .nav-actions a::before,
  .nav-actions a::after {
    display: none; /* masaüstü tooltip kapat */
  }

  .nav-actions-mobile a::after {
    content: attr(data-tooltip); /* Mobil butonda tooltip içeriğini göster */
    position: static; /* Konumlandırmayı kaldır */
    transform: none; /* Dönüşümü kaldır */
    display: block;
    text-align: center;
    font-size: 0.9em;
    margin-top: 6px;
    color: #ff8c00;
    text-shadow: 0 0 6px rgba(255, 140, 0, 0.6);
    opacity: 1; /* Görünür yap */
    pointer-events: auto; /* Etkileşime izin ver */
    background: none; /* Arka planı kaldır */
    padding: 0; /* Padding'i kaldır */
    border-radius: 0; /* Border radius'u kaldır */
    white-space: normal; /* Normal boşluk bırak */
  }

  .nav-actions-mobile a::before {
    display: none; /* Mobil butonda ok işaretini kapat */
  }

  .coming-soon-mobile {
    display: block; /* Mobil görünümde göster */
  }

  .nav-actions::after {
    content: "Coming Soon";
    display: block;
    text-align: center;
    font-size: 0.9em;
    margin-top: 6px;
    color: #ff8c00;
    text-shadow: 0 0 6px rgba(255, 140, 0, 0.6);
  }
}



    /* MOBİL UYUMLULUK EKLEMELERİ */
    @media (max-width: 768px) {
      body {
        font-size: 16px; /* Mobil için temel yazı tipi boyutu */
      }
      h2 {
        font-size: 2.2em;
      }

      /* Hero Section */
      .hero-section {
        height: auto;
        padding: 100px 20px 40px 20px; /* Üst, Yatay, Alt padding */
        text-align: center;
      }
      .hero-container {
        flex-direction: column;
        gap: 30px;
      }
      .hero-content {
        text-align: center;
      }
      .hero-title {
        font-size: 2.8em;
      }
      .hero-title .subtitle {
        font-size: 1.2rem;
      }
      .hero-description {
        font-size: 1.1rem;
      }
      .token-circle {
        width: 280px;
        height: 280px;
        margin: 0 auto;
      }
      .text-box {
        margin: 20px auto;
        padding: 15px;
        font-size: 0.95rem;
      }
      .text-box h4 {
        font-size: 1.2rem;
      }

      /* About Section */
      .about-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
      .about-item {
        min-width: 90%;
        max-width: 400px;
        padding: 15px;
      }
      .about-item h3 {
        font-size: 1.4rem;
      }
      .about-item p {
        font-size: 1rem;
      }

      /* Tokenomics Section */
      .tokenomics-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
      }
      .tokenomics-card {
        min-width: 90%;
        max-width: 400px;
        padding: 25px 15px;
      }
      .tokenomics-card h3 {
        font-size: 1.4rem;
      }
      .tokenomics-card p {
        font-size: 1.2rem;
      }

      /* Roadmap Section */
      #roadmap {
        padding: 60px 15px;
      }
      .roadmap-timeline {
        padding-left: 20px;
        border-left-width: 2px;
      }
      .roadmap-dot {
        left: -10.5px;
        width: 18px;
        height: 18px;
      }
      .roadmap-content {
        padding: 15px;
      }
      .roadmap-content h3 {
        font-size: 1.3em;
      }
      .roadmap-content p {
        font-size: 0.95rem;
      }

      /* Footer */
      #footer {
        padding: 40px 15px 15px 15px;
        margin-top: 40px;
      }
      .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
      }
      .footer-about p {
        margin: 0 auto;
      }
      .footer-links ul {
        padding: 0;
      }
      .social-icons {
        justify-content: center;
      }
      .social-icons a {
        width: 40px;
        height: 40px;
      }
      .footer-bottom {
        margin-top: 30px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      body {
        font-size: 15px;
      }
      h2 {
        font-size: 1.8em;
      }
      .hero-title {
        font-size: 2.2em;
      }
      .hero-title .subtitle {
        font-size: 1rem;
      }
      .token-circle {
        width: 220px;
        height: 220px;
      }
      .btn {
        padding: 8px 18px;
        font-size: 0.85em;
      }
      .nav-links li a {
        font-size: 1.1rem;
      }
    }
/* Mobile spacing for Buy Now area (override) */
@media (max-width: 768px) {
  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Buton ve alt yazı arası boşluk */
    width: 100%;
    margin-top: 8px;
  }
  .nav-actions-mobile .btn-nav {
    width: 80%;
    max-width: 260px;
    padding: 12px 18px;
  }
  .nav-actions-mobile .coming-soon-mobile {
    display: block;
    margin-top: 2px;
    font-size: 0.9em;
    color: #ffb366; /* Daha yumuşak vurgu rengi */
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
  }
  .nav-actions-mobile a::before,
  .nav-actions-mobile a::after {
    display: none !important;
    content: none !important;
  }
}
/* Mobile nav centering + keep Buy Now size */
@media (max-width: 768px) {
  .nav-links li { width: 100%; display: flex; justify-content: center; }
  .nav-actions-mobile { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 8px; }
  .nav-actions-mobile .btn-nav { width: auto !important; max-width: none !important; padding: 10px 22px !important; }
}

/* Reduce motion for users who prefer less animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Secondary image under each about card */
.about-subimg {
  margin-top: 0;           /* moved to top, don't add extra gap above */
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.2);
}

/* -------- Image Lightbox (About section) -------- */
#about .about-item img { cursor: zoom-in; }

body.no-scroll { overflow: hidden; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000; /* above header */
  cursor: zoom-out;
}
.lightbox-overlay.show { display: flex; animation: lbFadeIn 0.18s ease; }

.lightbox-img {
  max-width: 94vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(0,207,255,0.25);
  border: 1px solid rgba(255,255,255,0.15);
}

@keyframes lbFadeIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

/* --- Holders Bar: improved theme styling --- */
.holders-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap; /* keep single row */
  gap: 6px;
  row-gap: 0;
  padding: 6px 10px;
  margin: 8px 0 0 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0,207,255,0.10), rgba(255,87,51,0.06));
  border: 1px solid rgba(0,207,255,0.22);
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.18);
  backdrop-filter: blur(5px);
  white-space: nowrap;           /* prevent text wrap */
  overflow-x: auto;              /* enable horizontal scroll if needed */
  overflow-y: hidden;
  -ms-overflow-style: none;      /* IE/Edge hide scrollbar */
  scrollbar-width: none;         /* Firefox hide scrollbar */
  max-width: 100%;               /* responsive boundary */
}
.holders-bar::-webkit-scrollbar { display: none; } /* Chrome/Safari hide scrollbar */
.holders-token { display: inline-flex; align-items: center; }
.holders-token-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0,207,255,0.12);
  border: 1px solid rgba(0,207,255,0.35);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  max-width: 40vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.holders-token-icon { width: 16px; height: 16px; border-radius: 3px; display: inline-block; }
.holders-group { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.holders-token { flex: 0 0 auto; }
.holders-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.18);
  margin: 0 4px;
  flex: 0 0 auto;
}
.holders-label {
  color: #00cfff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.15px;
}
.holders-count {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.holders-delta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
}
.holders-delta.up {
  color: #18c964;
  background: rgba(24,201,100,0.15);
  border-color: rgba(24,201,100,0.4);
}
.holders-delta.down {
  color: #ff5a5f;
  background: rgba(255,90,95,0.15);
  border-color: rgba(255,90,95,0.4);
}
.holders-delta.neutral {
  color: #b5b5b5;
  background: rgba(255,255,255,0.08);
}
.holders-delta.up::before { content: '▲ '; }
.holders-delta.down::before { content: '▼ '; }
.holders-delta.neutral::before { content: '• '; }

@media (max-width: 768px) {
  .holders-bar { gap: 6px; row-gap: 6px; padding: 6px 9px; margin: 8px auto 0 auto; }
  .holders-token-pill { padding: 3px 8px; font-size: 0.8rem; }
  .holders-token-icon { width: 14px; height: 14px; }
  .holders-divider { height: 14px; margin: 0 4px; }
  .holders-label { font-size: 0.78rem; }
  .holders-count { font-size: 0.9rem; }
  .holders-delta { font-size: 0.78rem; padding: 1px 6px; }
  .holders-token-pill { max-width: 48vw; }
}

@media (max-width: 480px) {
  .holders-bar { gap: 5px; row-gap: 5px; padding: 5px 8px; }
  .holders-token-pill { font-size: 0.78rem; letter-spacing: 0.25px; }
  .holders-token-icon { width: 13px; height: 13px; }
  .holders-label { font-size: 0.75rem; display: none; } /* hide labels to prevent wrapping */
  .holders-count { font-size: 0.88rem; }
  .holders-delta { font-size: 0.75rem; padding: 1px 5px; }
  .holders-token-pill { max-width: 56vw; }
}

/* Extra-tight mobile layout to avoid wrapping */
@media (max-width: 480px) {
  .holders-delta { display: none; }          /* save space */
  .holders-divider { display: none; }
  .holders-count { border-left: 0; padding-left: 0; }
  .holders-bar { justify-content: space-between; }
}

/* Make hero icons smaller on phones/tablets */
@media (max-width: 768px) {
  .hero-icons-wrapper { padding-top: 24px; }
  .hero-icons a { width: 56px; height: 56px; }
  .hero-icons img { width: 80%; }
}

/* ---- About dual images responsive tweaks ---- */
.about-subimg { width: 90%; display: block; margin: 0 auto 12px; }
@media (max-width: 768px) {
  .about-subimg { width: 100%; margin: 0 auto 12px; } /* keep centered */
}

/* Position hero visual (top 150px, left 30px) */
.hero-visual {
  margin: 150px 0 50px 30px; /* top right bottom left */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero-visual { margin: 120px 0 40px 20px; }
  .token-circle { width: 360px; height: 360px; }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-visual { margin: 60px auto 30px auto; display: none; }
  .hero-content .token-circle { display: block; }
}

@media (max-width: 480px) {
  .hero-visual { margin: 50px auto 20px auto; }
}

/* removed Market Overview block styles */
/* ---- About grid override: keep order on mobile ---- */
.about-flex {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
  justify-items: center;
}
@media (max-width: 1024px) {
  .about-flex { grid-template-columns: repeat(2, minmax(260px, 1fr)); }
}
@media (max-width: 768px) {
  .about-flex { grid-template-columns: 1fr; gap: 20px; justify-content: center; }
  .about-item { width: 100%; max-width: 560px; margin: 0 auto; }
  #about { padding-left: 12px; padding-right: 12px; }
.about-item img { display: block; margin-left: auto; margin-right: auto; }
}

/* Center token image when inside hero content; hide only on desktop */
.hero-content .token-circle { margin: 20px auto; }
@media (min-width: 769px) {
  .hero-content .token-circle { display: none; }
}

/* Final overrides and mobile polish */
.holders-bar { -webkit-overflow-scrolling: touch; }
.holders-delta.up::before { content: "\25B2 "; }
.holders-delta.down::before { content: "\25BC "; }
.holders-delta.neutral::before { content: "\2022 "; }

/* Mobile-first redesign for the metrics bar (clearer layout) */
@media (max-width: 480px) {
  /* Grid layout: [logo] [PR] [MC] [HL] */
  .holders-bar {
    display: grid;
    grid-template-columns: 44px 1fr 1fr 1fr; /* make logo a bit larger */
    grid-auto-rows: auto;
    align-items: start;
    gap: 8px 10px;
    padding: 10px 12px 14px 12px;
  }
  /* hide separators on mobile */
  .holders-divider { display: none; }
  /* token logo only, pinned to bottom-left cell */
  .holders-token { position: static; grid-column: 1; grid-row: 1; align-self: center; justify-self: start; }
  .holders-token-pill {
    width: auto;
    max-width: none;
    padding: 4px;                          /* small badge padding */
    background: rgba(0,207,255,0.14);      /* subtle themed bg */
    border: 1px solid rgba(0,207,255,0.45);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,207,255,0.25);
  }
  /* Keep token name visible in combined metrics board; hide only in old holders-bar */
  .holders-bar #tokenNameText, .holders-bar .tokenNameText { display: none; }
  .holders-token-icon { width: 22px; height: 22px; object-fit: contain; display: block; }
  /* each metric becomes a column with label on top */
  .holders-group {
    display: flex;
    flex-direction: column;      /* label on top, value below */
    align-items: flex-start;
    gap: 2px;
    padding: 6px 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  /* Place PR, MC, HL into columns 2,3,4 respectively */
  .metric-pr { grid-column: 2; grid-row: 1; }
  .metric-mc { grid-column: 3; grid-row: 1; }
  .metric-hl { grid-column: 4; grid-row: 1; }
  /* show full labels on mobile (no abbreviations) */
  .holders-label {
    display: inline-block !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #00cfff;
  }
  .holders-label::after { content: none !important; }
  .holders-count { border-left: 0; padding-left: 0; font-size: 1rem; font-weight: 700; }
  /* keep deltas hidden to reduce clutter; enable later if desired */
  .holders-delta { display: none; }
}

/* Desktop/tablet polish: clearer chips and labels */
@media (min-width: 769px) {
  .holders-bar {
    gap: 10px;
    padding: 8px 12px;
  }
  .holders-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 12px rgba(0, 207, 255, 0.12);
  }
  .holders-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    color: #00cfff;
    text-transform: uppercase;
  }
  .holders-count {
    font-size: 1.05rem;
    font-weight: 700;
  }
  .holders-delta { display: inline-flex; align-items: center; }
}

/* ---- Combined Metrics Board (headers top, rows for tokens) ---- */
.metrics-board {
  display: grid;
  grid-template-columns: 160px 1fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 10px 14px;
  align-items: center;
  padding: 12px 14px;
  margin: 10px 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0,207,255,0.10), rgba(255,87,51,0.06));
  border: 1px solid rgba(0,207,255,0.22);
  box-shadow: 0 0 12px rgba(0, 207, 255, 0.18);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---- Links Section (modern cards) ---- */
.links-section { margin-top: 14px; }
.links-title {
  margin: 0 0 10px 0;
  color: #00cfff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 800;
}
.links-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 14px;
}
.links-grid a {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 16px rgba(0, 207, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  /* isolate from legacy .hero-icons sizing on Android */
  width: auto;
  height: auto;
  text-decoration: none; /* prevent underlines on some mobile browsers */
  color: inherit;
}
.links-grid a:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); box-shadow: 0 0 22px rgba(0,207,255,0.25); }
.links-grid img { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }
.link-label { font-size: 0.8rem; color: #cfefff; text-transform: uppercase; letter-spacing: 0.3px; display: none !important; }
.link-label.two-line { text-align: center; line-height: 1.05; display: none !important; }
.links-grid a.nolink { cursor: default; pointer-events: none; }

/* Disable clicks on Buy Now when marked nolink */
.btn-nav.nolink { pointer-events: none; cursor: default; }

@media (max-width: 768px) {
  .links-grid { gap: 12px; }
  .links-grid a { padding: 10px; width: auto; height: auto; }
  .links-grid img { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .links-grid { gap: 10px; grid-template-columns: repeat(3, minmax(90px, 1fr)); }
  .links-grid a { width: auto; height: auto; }
  .links-grid img { width: 36px; height: 36px; }
}

/* Prevent grid overflow on Android: allow value cells to shrink */
.metrics-board .mb-cell { min-width: 0; }
.metrics-board .mb-value { overflow: hidden; text-overflow: ellipsis; }
.metrics-board .mb-head {
  color: #00cfff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.metrics-board .mb-blank { visibility: hidden; }
.metrics-board .mb-token {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.metrics-board .mb-token-icon { width: 22px; height: 22px; border-radius: 4px; display: block; object-fit: contain; }
.metrics-board .mb-token-icon.bnb-icon { width: 44px; height: 44px; }
.metrics-board .mb-cell { display: flex; align-items: center; }
.metrics-board .mb-value { font-weight: 700; font-size: 1rem; }

@media (max-width: 1024px) {
  .metrics-board { grid-template-columns: 140px 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .metrics-board { grid-template-columns: 130px 1fr 1fr 1fr; gap: 8px 10px; }
  .metrics-board .mb-head { font-size: 0.9rem; }
  .metrics-board .mb-value { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .metrics-board { grid-template-columns: 120px 1fr 1fr 1fr; gap: 8px 8px; padding: 10px 10px; }
  .metrics-board .mb-token-icon { width: 20px; height: 20px; }
  .metrics-board .mb-head { font-size: 0.85rem; }
  .metrics-board .mb-value { font-size: 0.9rem; }
  /* Show MCAP instead of Market Cap on mobile */
  .metrics-board > .mb-head:nth-child(3) { font-size: 0; }
  .metrics-board > .mb-head:nth-child(3)::after {
    content: "MCAP";
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #00cfff;
  }
}
