/* ================= FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Inter:wght@400;500;600;700&display=swap');

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

/* ================= GLOBAL ANIMATIONS ================= */
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes bgFlow {
  0% { transform: rotate(0deg) translateX(-12%); }
  100% { transform: rotate(360deg) translateX(12%); }
}

@keyframes orbFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-45px); }
  100% { transform: translateY(0); }
}

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

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ================= BODY & BACKGROUNDS ================= */
body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at center, #29092a 0%, rgb(61, 11, 59) 70%);
  color: #e8f6ff;
  padding-top: 88px;
  overflow-x: hidden;
}

.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at center, #2f0d45 0%, #12061d 70%, #08020e 100%);
  background-size: 64px 64px, 64px 64px, cover;
}

.animated-bg::before,
.animated-bg::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(180, 100, 255, 0.38) 44%,
    rgba(100, 150, 255, 0.32) 52%,
    rgba(210, 110, 255, 0.36) 60%,
    transparent 75%
  );
  animation: bgFlow 30s linear infinite;
  opacity: 0.45;
  filter: blur(4px);
}

.animated-bg::after {
  animation-duration: 52s;
  animation-direction: reverse;
  opacity: 0.28;
  filter: blur(8px);
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  background: rgba(46, 5, 50, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(76,201,240,0.15);
  z-index: 1000;
}

.logo { display: flex; flex-direction: column; }
.logo-text {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #5d9eff;
  text-shadow: 0 0 12px rgba(204, 93, 255, 0.59);
}
.logo-sub { font-size: 29px; letter-spacing: 2px; opacity: 0.7; color: #abe9ff; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.navbar nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #e8f6ff;
  position: relative;
  font-size: 18px;
}
.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4cc9f0, #5ddcff);
  transition: width .3s ease;
}
.navbar nav a:hover::after { width: 100%; }

/* ================= HERO SECTION ================= */
.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-owl {
  margin-top: 30px;
  width: 340px;
  max-width: 80vw;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(76,201,240,0.45));
  animation: float 6s ease-in-out infinite;
}

.hero h1 {
  margin-top: 30px;
  font-size: 68px;
  font-weight: 800;
  z-index: 2;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  transform: scaleY(0.7);
  text-shadow: rgba(207, 76, 240, 0.589) 0 4px 15px;
}

.hero p {
  max-width: 680px;
  font-size: 22px;
  opacity: 0.85;
  z-index: 2;
  text-shadow: rgba(76, 172, 240, 0.589) 0 4px 6px;
}

/* Holographic Rings */
.holo-ring, .holotwo-ring, .holothree-ring {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  z-index: 0;
}
.holo-ring {
  width: 420px; height: 420px;
  border: 2px solid rgba(158, 76, 240, 0.732);
  box-shadow: 0 0 60px rgba(76, 202, 240, 0.455), inset 0 0 40px rgba(76,201,240,0.2);
}
.holotwo-ring {
  width: 580px; height: 580px;
  border: 2px solid rgba(161, 76, 240, 0.228);
  box-shadow: 0 0 60px rgba(210, 76, 240, 0.25), inset 0 0 40px rgba(76, 202, 240, 0.314);
}
.holothree-ring {
  width: 720px; height: 720px;
  border: 2px solid rgba(240, 76, 237, 0.103);
  box-shadow: 0 0 60px rgba(226, 76, 240, 0.25), inset 0 0 40px rgba(76, 202, 240, 0.314);
}

/* ================= BUTTONS ================= */
.hero-buttons { margin-top: 24px; display: flex; gap: 25px; z-index: 2; }
.btn {
  padding: 12px 36px;
  border-radius: 40px;
  background: linear-gradient(135deg, #4cc9f0, #43ddee);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(76,201,240,0.45);
  font-size: 20px;
  transition: transform .25s ease, box-shadow .3s ease, text-shadow .3s ease;
}
.btn.secondary {
  background: transparent;
  border: 1px solid #4cd2f0;
  box-shadow: none;
}
.btn.secondary:hover {
  box-shadow: 0 0 28px rgba(67,97,238,0.8);
  text-shadow: 0 0 10px rgba(76,201,240,0.8);
}
.btn:hover { transform: scale(1.04); }

/* ================ FEATURES ================= */
.features { padding: 70px 70px; text-align: center; }
.features h2 {
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 60px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 93, 247, 0.4);
}
.features-grid { display: flex; justify-content: center; }

.feature-card.split-card {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  width: 100%;
  text-align: left;
  background: linear-gradient(180deg, rgba(10, 30, 60, 0.9), rgba(5, 15, 30, 0.95));
  border: 1px solid rgba(207, 76, 240, 0.18);
  border-radius: 22px;
  padding: 48px;
  box-shadow: 0 0 40px rgba(215, 76, 240, 0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card.split-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(76,201,240,0.35);
}
.feature-text { flex: 1.4; }
.feature-text h3 { font-size: 22px; margin-bottom: 18px; letter-spacing: 1px; color: #e8f6ff; }
.feature-text p { font-size: 14px; opacity: 0.78; line-height: 1.8; }
.feature-image { flex: 1; display: flex; justify-content: center; }
.feature-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 0 45px rgba(76,201,240,0.45));
  animation: float 6s ease-in-out infinite;
}

/* ================= EXTRA INFO CARDS ================= */
.extra-cards {
  margin-top: -40px;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 320px));
  justify-content: center;
  gap: 34px;
}
.extra-card {
  background: linear-gradient(160deg, rgba(35, 10, 55, 0.75), rgba(10, 20, 45, 0.9));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(158, 76, 240, 0.25);
  border-radius: 26px;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(76,201,240,0.12), inset 0 0 25px rgba(76,201,240,0.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.extra-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #4cc9f0, #9e4cf0);
}
.extra-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(76,201,240,0.6);
  box-shadow: 0 0 70px rgba(76,201,240,0.35), inset 0 0 35px rgba(158,76,240,0.18);
}
.extra-card h3 { font-size: 21px; margin-bottom: 16px; letter-spacing: 1.2px; color: #5ddcff; text-shadow: 0 0 12px rgba(76,201,240,0.45); }
.extra-card p { font-size: 14px; line-height: 1.9; color: #e8f6ff; opacity: 0.82; }

/* ================= NEWS SECTION ================= */
.news-section { max-width: 1100px; margin: 0 auto 160px; padding: 0 24px; }
.news-title { font-size: 34px; letter-spacing: 2px; margin-bottom: 60px; color: #e8f6ff; text-align: left; }
.news-list { display: flex; flex-direction: column; gap: 48px; }
.news-item { display: flex; align-items: center; gap: 36px; }
.news-image {
  width: 220px; height: 140px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(76,201,240,0.35), rgba(158,76,240,0.35));
  box-shadow: 0 0 40px rgba(76,201,240,0.25); flex-shrink: 0;
}
.news-content h3 { font-size: 20px; margin-bottom: 12px; color: #5ddcff; }
.news-content p { font-size: 14px; line-height: 1.9; color: #e8f6ff; opacity: 0.8; }

/* ================= ABOUT PAGE SPECIFIC ================= */
.about-bg-orb {
  position:absolute; width:420px; height:420px;
  background:radial-gradient(circle,#4cc9f0,transparent 70%);
  filter:blur(120px); opacity:.25; animation:orbFloat 14s ease-in-out infinite;
}
.about-bg-orb.two { background:radial-gradient(circle,#cf4cf0,transparent 70%); left:60%; top:30%; animation-delay:4s; }

.about-hero{
  min-height:calc(100vh - 88px); display:grid; grid-template-columns:1.2fr 1fr;
  align-items:center; padding:80px 70px; gap:60px; position:relative; overflow:hidden;
}
.about-text h1{ font-size:64px; letter-spacing:2px; text-transform:uppercase; animation:fadeUp .9s ease forwards; }
.about-text p{ margin-top:24px; font-size:18px; line-height:1.8; opacity:.85; animation:fadeUp 1.2s ease forwards; }

.about-image{ display:flex; justify-content:center; }
.about-image img{
  width:340px; filter:drop-shadow(0 0 45px rgba(76,201,240,.45));
  animation:float 6s ease-in-out infinite, slowRotate 14s linear infinite;
}

.about-values{ padding:120px 70px; display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.value-card{
  background:rgba(10,15,30,.9); border:1px solid rgba(207,76,240,.18);
  border-radius:22px; padding:40px; transition:.4s;
}
.value-card:hover{ transform:translateY(-10px); box-shadow:0 0 80px rgba(76,201,240,.35); }
.value-card h3{ color:#5ddcff; margin-bottom:14px; }
.value-card p{ font-size:14px; line-height:1.8; opacity:.8; }

.about-detail{ padding:120px 70px; display:grid; grid-template-columns:1.2fr 1fr; align-items:center; gap:70px; }
.about-detail-text{ animation:fadeUp 1s ease forwards; }
.about-detail-text h2{ font-size:42px; letter-spacing:1.5px; margin-bottom:22px; text-shadow:0 0 18px rgba(204,93,255,.45); }
.about-detail-text p{ font-size:17px; line-height:1.9; opacity:.9; max-width:560px; }
.about-detail-image{ display:flex; justify-content:center; }
.about-detail-image img{ width:300px; filter:drop-shadow(0 0 50px rgba(76,201,240,.45)); animation:float 6s ease-in-out infinite; }

/* ================= CONTACT PAGE SPECIFIC ================= */
.contact-orb {
  position: absolute; width: 420px; height: 420px;
  background: radial-gradient(circle, #4cc9f0, transparent 70%);
  filter: blur(130px); opacity: .22; animation: orbFloat 14s ease-in-out infinite; z-index: -1;
}
.contact-orb.purple { background: radial-gradient(circle, #cf4cf0, transparent 70%); left: 60%; top: 30%; animation-delay: 4s; }

.contact-section {
  min-height: calc(100vh - 88px); display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 80px 70px; gap: 60px; position: relative; overflow: hidden;
}
.contact-info h1 { font-size: 52px; letter-spacing: 2px; text-shadow: 0 0 18px rgba(204, 93, 255, .6); }
.contact-info p { margin-top: 20px; font-size: 17px; line-height: 1.8; opacity: .85; max-width: 520px; }

.contact-form {
  background: rgba(10, 15, 30, .92); border: 1px solid rgba(76, 201, 240, .28);
  border-radius: 26px; padding: 48px; box-shadow: 0 0 60px rgba(76, 201, 240, .25);
}
.contact-form label { display: block; margin-top: 18px; font-size: 13px; opacity: .8; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 6px; padding: 14px; border-radius: 12px;
  background: rgba(5, 10, 25, .9); border: 1px solid rgba(76, 201, 240, .25); color: #e8f6ff;
}
.contact-form textarea { resize: none; height: 120px; }
.contact-form button {
  margin-top: 28px; width: 100%; padding: 14px; border-radius: 40px; border: none;
  background: linear-gradient(135deg, #4cc9f0, #5ddcff); font-size: 16px; cursor: pointer;
  box-shadow: 0 0 35px rgba(76, 201, 240, .45); transition: transform 0.3s ease;
}
.contact-form button:hover { transform: scale(1.02); }

.social-section { margin-top: 60px; text-align: center; }
.social-section h3 { font-size: 20px; margin-bottom: 28px; letter-spacing: 2px; color: #5ddcff; }
.social-icons { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.social-icons a {
  width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 26px; color: #e8f6ff; background: rgba(10, 15, 30, .9);
  border: 1px solid rgba(76, 201, 240, .3); box-shadow: 0 0 25px rgba(76, 201, 240, .25);
  transition: .45s ease; position: relative; overflow: hidden; text-decoration: none;
}
.social-icons a:hover { transform: translateY(-10px) rotateX(15deg) rotateY(-15deg); box-shadow: 0 0 50px rgba(76, 201, 240, .8); }

.contact-owl { display: flex; justify-content: center; margin-top: 40px; padding-bottom: 60px; }
.contact-owl img { width: 300px; filter: drop-shadow(0 0 45px rgba(76, 201, 240, .45)); }

/* ================= FOOTER ================= */
footer {
  padding: 40px 24px; text-align: center; background: rgba(5, 15, 30, 0.6);
  border-top: 1px solid rgba(76,201,240,0.15); font-size: 13px; opacity: 0.75;
}

/* ================= HAMBURGER ================= */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1100; }
.hamburger span { width: 26px; height: 2px; background: #e8f6ff; transition: all .3s ease; }


/* ================= NEWS IMAGE FIX ================= */
.news-image {
  width: 220px;
  height: 140px;
  border-radius: 18px;
  overflow: hidden; /* TAŞMAYI KESER */
  flex-shrink: 0;
  position: relative;

  background: linear-gradient(
    135deg,
    rgba(76,201,240,0.35),
    rgba(158,76,240,0.35)
  );

  box-shadow: 0 0 40px rgba(76,201,240,0.25);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* EN KRİTİK SATIR */
  object-position: center;
  display: block;
}


/* ==========================================================================
   MOBILE & RESPONSIVE DESIGNS (900px and below)
   ========================================================================== */

@media (max-width: 900px) {
  
  /* 1. Root & Layout Fix: Sağa taşmayı kökten engeller */
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* 2. Navbar & Hamburger */
  .navbar {
    padding: 15px 25px !important;
    width: 100% !important;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: flex !important;
    z-index: 1100;
    position: relative;
  }

  /* 3. Navigation Menu: Sağdan açılan panel */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Başlangıçta gizli */
    width: 260px !important;
    height: 100vh !important;
    background: rgba(10, 5, 25, 0.98) !important;
    backdrop-filter: blur(15px);
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important; /* İçerik sağa dayalı */
    padding: 100px 30px 40px 30px !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1000 !important;
    border-left: 1px solid rgba(76, 201, 240, 0.2);
    max-height: none !important; 
    overflow: visible !important;
  }

  .nav-links.active {
    right: 0 !important; /* Menü açıldığında */
  }

  .nav-links a {
    width: 100% !important;
    text-align: right !important;
    font-size: 18px !important;
    margin: 12px 0 !important;
    padding: 10px 0 !important;
    color: #e8f6ff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .nav-links a.active {
    color: #4cc9f0 !important;
    border-bottom: 1px solid #4cc9f0 !important;
  }

  /* 4. Hero Section & Holograms */
  .hero {
    min-height: auto !important;
    padding: 60px 20px !important;
  }

  .hero h1 { font-size: 34px !important; }
  .hero p { font-size: 16px !important; }
  .hero-owl { width: 220px !important; }
  .hero-buttons { flex-direction: column; width: 100%; align-items: center; }

  .holo-ring { width: 280px; height: 280px; }
  .holotwo-ring { width: 380px; height: 380px; }
  .holothree-ring { width: 480px; height: 480px; }

  /* 5. Features & News */
  .features { padding: 60px 20px !important; }
  .feature-card.split-card {
    flex-direction: column-reverse !important;
    text-align: center !important;
    padding: 30px 20px !important;
  }
  .feature-text { text-align: center !important; }
  .feature-image img { width: 200px !important; margin-bottom: 20px; }
  
  .extra-cards { grid-template-columns: 1fr !important; padding: 0 20px; gap: 20px; }
  .extra-card { max-width: 100% !important; }

  .news-item { flex-direction: column !important; align-items: center !important; text-align: center; }
  .news-image { width: 100% !important; height: 160px; }

  /* 6. About Page Fixes */
  .about-hero, .about-detail {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 40px 20px !important;
  }
  .about-text h1 { font-size: 34px !important; }
  .about-image img, .about-detail-image img { width: 180px !important; }
  .about-values { grid-template-columns: 1fr !important; padding: 40px 20px; }

  /* 7. Contact Page Fixes */
  .contact-section {
    grid-template-columns: 1fr !important;
    padding: 40px 20px !important;
    text-align: center !important;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 25px 20px !important;
    margin: 0 auto;
  }
  .contact-owl img { width: 180px !important; }
  .social-icons a { width: 45px !important; height: 45px !important; font-size: 18px !important; }

  /* Arka plan süslerini küçült (kaymayı engellemek için) */
  .about-bg-orb, .contact-orb { width: 200px !important; height: 200px !important; }
  .news-image {
    width: 100% !important;
    height: 160px !important;
  }
}

/* 8. Desktop Reset: 901px ve üstünde her şeyin normale dönmesini sağlar */
@media (min-width: 901px) {
  .nav-links {
    max-height: none !important;
    overflow: visible !important;
    position: static !important;
    background: transparent !important;
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    padding: 0 !important;
    right: auto !important;
  }
  .hamburger { display: none !important; }
}



/* BOT KORUMA INPUT (HONEYPOT) */
.ndu-honeypot {
  display: none !important;
}

/* GÖNDERİLİYOR ANİMASYONU */
#nduSendButton {
  position: relative;
}

#nduSendButton.ndu-loading .ndu-btn-text {
  visibility: hidden;
}

#nduSendButton.ndu-loading .ndu-btn-loader {
  display: inline-block;
}

.ndu-btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #7c3aed; /* koyu mor */
  border-radius: 50%;
  animation: nduSpin 1s linear infinite;
}

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

/* ======================================================
   NDU ECONOMY & VESTING - NİHAİ TAM CSS (MOBİL UYUMLU)
   ====================================================== */

/* 1. Genel Bölüm Ayarları */
.ndu-centered-section {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Projenin ana fontu */
}

.ndu-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* 2. Başlık ve Rozet Tasarımı */
.ndu-header {
    text-align: center;
    margin-bottom: 50px;
}

.ndu-badge {
    color: #4cc9f0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    background: rgba(76, 201, 240, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(76, 201, 240, 0.2);
    display: inline-block;
    margin-bottom: 15px;
}

.ndu-header h2 {
    font-size: clamp(28px, 5vw, 42px); /* Dinamik boyutlandırma */
    color: #f45dff; 
    text-shadow: 0 0 20px rgba(255, 93, 247, 0.3);
    margin: 10px 0;
    font-family: 'Orbitron', sans-serif;
}

.ndu-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 3. İki Bölmeli Grid Düzeni */
.ndu-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
}

/* 4. Tokenomics Bileşenleri */
.chart-rel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.chart-center-info {
    position: absolute;
    text-align: center;
    pointer-events: none;
}

.inner-symbol {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.8);
}

.mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.m-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(76, 201, 240, 0.2);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.m-stat small {
    display: block;
    color: #4cc9f0;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.m-stat span {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: bold;
    color: #fff;
}

.legend-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.l-item {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.l-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* 5. Vesting Bileşenleri */
.ndu-info-card {
    background: linear-gradient(145deg, rgba(30, 10, 50, 0.9), rgba(10, 15, 35, 0.95));
    border: 1px solid rgba(158, 76, 240, 0.3);
    padding: clamp(20px, 4vw, 40px);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ndu-info-card h3 {
    color: #5ddcff;
    font-size: 22px;
    margin-bottom: 15px;
}

.highlight-stat {
    margin-top: 20px;
    padding: 15px;
    background: rgba(76, 201, 240, 0.08);
    border: 1px dashed rgba(76, 201, 240, 0.4);
    border-radius: 12px;
    text-align: center;
}

.h-val {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #4cc9f0;
}

.h-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* 6. Tablo Tasarımı ve Mobil Kaydırma */
.ndu-table-side {
    width: 100%;
    overflow-x: auto; /* Mobilde taşmayı önler */
    border-radius: 16px;
    background: rgba(10, 15, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vesting-table-v2 {
    width: 100%;
    border-collapse: collapse;
    min-width: 450px; /* Sıkışmayı engellemek için minimum genişlik */
}

.vesting-table-v2 th {
    background: rgba(76, 201, 240, 0.15);
    color: #4cc9f0;
    padding: 15px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
}

.vesting-table-v2 td {
    padding: 14px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #fff;
}

.v-highlight { background: rgba(158, 76, 240, 0.08); }
.v-final { color: #00fff7 !important; font-weight: bold; background: rgba(0, 255, 247, 0.05); }

/* 7. Mobil Medya Sorguları */
@media (max-width: 900px) {
    .ndu-grid-layout {
        grid-template-columns: 1fr; /* Tek sütuna düşür */
        gap: 40px;
    }

    .ndu-chart-side {
        order: -1; /* Grafiği mobilde en üste al */
    }

    .legend-grid-v2 {
        grid-template-columns: 1fr 1fr; /* Mobilde açıklamaları 2 sütun yap */
    }

    .ndu-info-card {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mini-stats {
        grid-template-columns: 1fr; /* Çok küçük ekranda arz/enflasyon alt alta */
    }

    .legend-grid-v2 {
        grid-template-columns: 1fr; /* Açıklamalar tek sütun */
    }

    .ndu-centered-section {
        padding: 40px 15px;
    }
}

/* ======================================================
   ROADMAP SECTION – CENTERED VERSION
   ====================================================== */

.roadmap-section {
  background: transparent;
  padding: 120px 20px;
  color: #fff;
  font-family: system-ui, sans-serif;
}

/* === CONTAINER === */

.roadmap-container {
  max-width: 1100px;
  margin: auto;
}

/* === HEADER === */

.roadmap-header {
  text-align: center;
  margin-bottom: 80px;
}

.roadmap-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.roadmap-header p {
  opacity: 0.7;
}

/* ======================================================
   TIMELINE (CENTERED)
   ====================================================== */

.roadmap-timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* CENTER LINE */
.roadmap-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, #00e0ff, transparent);
}

/* ======================================================
   ROADMAP ITEM
   ====================================================== */

.roadmap-item {
  position: relative;
  margin-bottom: 90px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.roadmap-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* DOT */
.roadmap-dot {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #00e0ff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0,224,255,0.8);
  z-index: 5;
}

/* ======================================================
   ROW LAYOUT
   ====================================================== */

.roadmap-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ======================================================
   CONTENT
   ====================================================== */

.roadmap-content {
  padding-right: 60px;
}

.roadmap-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.roadmap-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-content li {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 6px;
}

/* ======================================================
   IMAGE
   ====================================================== */

.roadmap-image {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.roadmap-item.active .roadmap-image {
  opacity: 1;
  transform: translateX(0);
}

.roadmap-image img {
  width: 260px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow:
    0 0 40px rgba(76,201,240,0.35),
    0 0 80px rgba(158,76,240,0.25);
  animation: float 6s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ======================================================
   RESPONSIVE (MOBILE)
   ====================================================== */

@media (max-width: 900px) {

  .roadmap-timeline {
    padding-left: 30px;
  }

  .roadmap-timeline::before {
    left: 12px;
    transform: none;
  }

  .roadmap-dot {
    left: 12px;
    transform: none;
  }

  .roadmap-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .roadmap-content {
    padding: 0;
    text-align: left;
  }

  .roadmap-image {
    order: -1;
    transform: translateY(30px);
  }

  .roadmap-item.active .roadmap-image {
    transform: translateY(0);
  }

  .roadmap-image img {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .roadmap-header h2 {
    font-size: 34px;
  }
}


/* ======================================================
   FOOTER – FINAL CLEAN VERSION
   ====================================================== */

.site-footer {
  margin-top: 140px;
  background: linear-gradient(
    180deg,
    rgba(15, 6, 30, 0.92),
    rgba(5, 2, 15, 0.96)
  );
  border-top: 1px solid rgba(158, 76, 240, 0.18);
}

/* ================= UPPER FOOTER ================= */

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Brand column */
.footer-brand h3 {
  font-size: 24px;
  color: #e8f6ff;
  margin-bottom: 16px;
  text-align: left;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
  opacity: 0.75;
  max-width: 360px;
  text-align: left;
}

/* Link columns */
.footer-links h4 {
  font-size: 15px;
  margin-bottom: 18px;
  color: #5ddcff;
  letter-spacing: 1px;
  text-align: left;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #e8f6ff;
  opacity: 0.7;
  margin-bottom: 10px;
  text-decoration: none;
  text-align: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* ================= BOTTOM FOOTER ================= */

.footer-bottom {
  background: rgba(2, 2, 10, 0.971);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  padding: 22px 20px;
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 0.4px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Mobilde de SOLA yaslı kalır */
  .footer-brand h3,
  .footer-brand p,
  .footer-links h4,
  .footer-links a {
    text-align: left;
  }

  .footer-links a:hover {
    transform: none;
  }
}


.bot-types-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  color: #e0e6f2; /* açık, göz yormayan yazı rengi */
  font-family: "Arial", sans-serif;
}

.bot-types-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.bot-types-title {
  flex: 1;
  font-size: 28px;
  line-height: 1.4;
  max-width: 60%;
  color: #ffffff; /* slogan beyaz */
}

.bot-types-subtitle {
  flex: 1;
  font-size: 22px;
  color: #00fff7; /* neon cyan */
  text-align: right;
  font-weight: bold;
  max-width: 35%;
}

.bot-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.bot-card {
  background: #121212; /* daha koyu arka plan */
  border: 2px solid #00fff7; /* neon cyan kenar */
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.bot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.25);
  border-color: #ff6fff; /* hover mor/cyan geçişli */
}

.bot-card img {
  max-width: 100px;
  margin-bottom: 15px;
}

.bot-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00fff7; /* başlık neon cyan */
}

.bot-card p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #c0c7d0; /* hafif gri/mavi yazı */
}

.bot-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #00fff7, #ff6fff);
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.bot-btn:hover {
  background: linear-gradient(135deg, #ff6fff, #00fff7);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .bot-types-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bot-types-title, .bot-types-subtitle {
    max-width: 100%;
    text-align: left;
  }
}

/* ================= VESTING SECTION CSS ================= */
.vesting-section {
  padding: 100px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
}

.vesting-container {
  max-width: 1100px;
  width: 100%;
}

.vesting-header {
  text-align: center;
  margin-bottom: 60px;
}

.vesting-header h2 {
  font-size: 42px;
  color: #f45dff; /* Mevcut pembe/mor tonunuz */
  text-shadow: 0 0 20px rgba(255, 93, 247, 0.4);
  margin-bottom: 15px;
}

.vesting-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.vesting-info-card {
  background: linear-gradient(160deg, rgba(35, 10, 55, 0.8), rgba(10, 20, 45, 0.9));
  border: 1px solid rgba(158, 76, 240, 0.3);
  padding: 40px;
  border-radius: 26px;
  box-shadow: 0 0 40px rgba(76, 201, 240, 0.1);
}

.vesting-info-card h3 {
  color: #5ddcff;
  margin-bottom: 20px;
  font-size: 24px;
}

.vesting-info-card p {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 30px;
}

.release-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(76, 201, 240, 0.1);
  border-radius: 15px;
  border: 1px dashed #4cc9f0;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #4cc9f0;
}

.stat-label {
  font-size: 14px;
  opacity: 0.7;
}

/* Tablo Tasarımı */
.vesting-table-container {
  overflow-x: auto;
}

.vesting-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(10, 15, 30, 0.6);
  border-radius: 15px;
  overflow: hidden;
}

.vesting-table th {
  background: rgba(76, 201, 240, 0.2);
  color: #5ddcff;
  padding: 18px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vesting-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: #e8f6ff;
}

.highlight-row {
  background: rgba(158, 76, 240, 0.1);
}

.final-row {
  background: rgba(76, 201, 240, 0.15);
  font-weight: bold;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
  .vesting-grid {
    grid-template-columns: 1fr;
  }
  
  .vesting-header h2 {
    font-size: 32px;
  }
}

/* ================= MINIMALIST TERMS PAGE ================= */
.terms-body {
    background-color: #0b0b0f; /* Temiz koyu arka plan */
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.minimal-terms-container {
    max-width: 800px; /* Okunabilirlik için daha dar */
    margin: 0 auto;
    padding: 140px 20px 100px;
    text-align: left;
}

.legal-header-left {
    margin-bottom: 50px;
}

.legal-header-left h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Minimal Görsel Çerçeveleri */
.minimal-img-frame {
    width: 100%;
    height: 350px;
    background: #15151a;
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
}

.minimal-img-frame.small { height: 220px; }

.minimal-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Metin Alanı */
.legal-text-wrapper {
    margin-top: 20px;
}

.intro-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.terms-section {
    margin-bottom: 45px;
}

.terms-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #4cc9f0; /* Anasayfa mavi tonu */
    margin-bottom: 15px;
    font-weight: 700;
}

.terms-section p {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 15px;
}

/* Minimal Uyarı Kutusu */
.disclaimer-alert {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 25px;
    border-radius: 4px;
    margin: 40px 0;
    font-size: 14px;
    color: #eee;
    border-left: 3px solid #f45dff; /* İnce bir renk detayı */
}

.legal-closing {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #555;
    font-style: italic;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .minimal-terms-container { padding-top: 100px; }
    .legal-header-left h1 { font-size: 32px; }
    .minimal-img-frame { height: 200px; }
}

/* Privacy Policy Liste Düzenlemesi */
.minimal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.minimal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #aaa;
}

.minimal-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #4cc9f0;
    font-weight: bold;
}

.small-alert {
    padding: 15px 20px;
    font-size: 13px;
}