/* ================= 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 {
  /* Arka planı ekrana çiviler, sayfa kaysa da oynamaz */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* dvh: Mobil tarayıcı çubukları değişse bile boyutu korur */
  height: 100dvh;
  z-index: -1;
  overflow: hidden;

  /* GÖRÜNÜŞ: Kareler + Radial Gradyan Arka Plan */
  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;
}

/* RENKLİ AKIŞ: Üstteki hareketli ışıklar */
.animated-bg::before,
.animated-bg::after {
  content: "";
  position: absolute;
  /* Mobilde kenarlarda siyah boşluk kalmaması için alan genişletildi */
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  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);
  pointer-events: none; /* Sayfadaki butonlara tıklamanı engellemez */
}

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

/* MOBİL AYARI: Kareleri mobilde daha narin yapar */
@media (max-width: 900px) {
  .animated-bg {
    background-size: 40px 40px, 40px 40px, cover;
  }
}

/* ================= 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;
}

/* ================= NAVBAR & LOGO BİRLEŞTİRİLMİŞ ================= */

.logo { 
  display: flex; 
  flex-direction: column; 
  line-height: 1; /* Satır arası boşluğu daraltmak için */
}

/* NDU Yazısı */
.logo-sub { 
  font-size: 29px; 
  font-family: 'Inter', sans-serif;
  color: #ffffff; 
  text-shadow: 0 0 10px rgba(76, 201, 240, 0.4);
}

/* Nexus Data Unit Yazısı (Yeni İstediğin Stil) */
.logo-text-nexus {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;              /* Navbar yüksekliği için optimize edildi */
  font-weight: 800;             /* Kalın format */
  letter-spacing: -0.8px;       /* Bitişik format */
  color: #5d9eff;               /* Orijinal mavi rengin */
  text-transform: uppercase;
  transform: scaleY(0.75);      /* Dikey basık efekt */
  transform-origin: left;       /* Sola yaslı küçültme */
  margin-top: -2px;             /* Üstteki NDU'ya iyice yaklaştırmak için */
  text-shadow: rgba(207, 76, 240, 0.59) 0 2px 10px; /* Pembe neon parlama */
}

/* NAV LINKLERİ */
.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;
  font-weight: 500;
}

.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%; }

/* MOBİL UYUM */
@media (max-width: 900px) {
  .logo-text-nexus {
    font-size: 12px;
    letter-spacing: -1px;
  }
}

/* ================= 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); }

/* ================= MOBILE RESPONSIVENESS ================= */

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
    min-height: auto; /* Mobilde içeriğe göre uzasın */
    gap: 16px;
  }

  .hero-owl {
    width: 220px; /* Baykuş boyutunu küçülttük */
    margin-top: 20px;
  }

  .hero h1 {
    font-size: 38px; /* Yazı boyutunu mobilde okunabilir yaptık */
    margin-top: 15px;
    transform: none; /* Mobilde dikey basıklığı kaldırmak genelde daha iyi okunur */
  }

  .hero p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 10px;
  }

  /* Holografik Halkalar - Mobilde çok yer kaplamaması için küçültüldü */
  .holo-ring {
    width: 260px;
    height: 260px;
  }
  .holotwo-ring {
    width: 340px;
    height: 340px;
  }
  .holothree-ring {
    display: none; /* En dıştaki halka çok küçük ekranlarda karmaşa yaratabilir */
  }

  .hero-buttons {
    flex-direction: column; /* Butonları üst üste diz */
    width: 50%;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 40%; /* Butonlar daha kolay tıklanabilir olsun */
    text-align: center;
    padding: 14px 24px;
    font-size: 18px;
  }
}

/* Küçük Telefonlar İçin Ek Ayar */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-owl {
    width: 180px;
  }
}

/* ================ FEATURES ================= */
.features { padding: 70px 70px; text-align: center; }
.features h2 {
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 60px;
  font-family: 'Orbitron', sans-serif;
  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; font-family: 'Orbitron', sans-serif;}
.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: #ffffff; 
    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;
  font-family: 'Orbitron', sans-serif;
  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;
  }
}


/* ================= NEXUSBOT SECTION - FINAL OPTIMIZED ================= */

.bot-types-section {
    padding: 100px 20px;
    margin-bottom: 60px;
    background: transparent;
}

.bot-types-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-top: 40px;
}

.bot-types-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(76, 201, 240, 0.4);
}

.bot-types-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #a0aec0;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.bot-types-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px; /* Kartlar arası boşluk büyük img'ler için artırıldı */
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* KART YAPISI */
.bot-card {
    flex: 0 1 400px; /* Kart genişliği büyütüldü */
    min-height: 600px; /* İçeriğin sığması için yükseklik artırıldı */
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bot-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.07);
    border-color: #4cc9f0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(76, 201, 240, 0.2);
}

/* GÖRSEL BOYUTLARI - !important kullanarak ezilmeyi önledik */
.bot-card img {
    width: 300px !important; /* Masaüstünde devasa görünüm */
    max-width: 100% !important; 
    height: auto !important;
    margin-bottom: 35px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
    display: block;
}

.bot-card:hover img {
    transform: scale(1.08) rotate(1deg);
}

.bot-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bot-card p {
    font-family: 'Inter', sans-serif;
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 30px;
}

/* BUTONLAR */
.bot-btn {
    background: #4cc9f0;
    color: #0b0d11;
    padding: 14px 40px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.bot-btn:hover {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.coming-soon-badge {
    color: #718096;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 35px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.2);
    cursor: default;
}

/* ================= RESPONSIVE (MOBİL AYARLARI) ================= */

@media (max-width: 1100px) {
    .bot-card {
        flex: 0 1 45%; 
    }
    .bot-card img {
        width: 240px !important; /* Tabletlerde orta boy */
    }
}

@media (max-width: 768px) {
    .bot-card {
        flex: 0 1 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    .bot-card img {
        width: 180px !important; /* Mobilde taşmayan ama belirgin boyut */
        margin-bottom: 25px;
    }
    .bot-types-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .bot-card img {
        width: 150px !important; /* Çok küçük ekranlar */
    }
}
/* ================= 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;
}


/* Başlangıçta öğeleri gizle */
.reveal {
  opacity: 0;
  visibility: hidden;
}

/* Animasyon başladığında görünür yap */
.reveal.animate__animated {
  visibility: visible;
}

/* Soldan gelecek kutunun başlangıç hali */
.reveal-left {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

/* Animasyon tetiklendiğinde görünürlük aktif olur */
.reveal-left.animate__animated {
  visibility: visible;
}

.reveal-up {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.reveal-up.animate__animated {
  visibility: visible;
}



@media (max-width: 768px) {
    .bot-card {
        /* Kartı tek sütun yap ve genişlet */
        flex: 0 1 100% !important; 
        max-width: 450px; /* Çok yayılmaması için ideal genişlik */
        min-height: auto; /* İçeriğe göre uzasın */
        padding: 40px 30px; /* İç boşluğu artır */
        margin: 0 auto; /* Ortala */
    }

    .bot-types-grid {
        gap: 25px; /* Kartlar arası boşluğu biraz daralt */
        padding: 0 10px;
    }

    .bot-types-title {
        font-size: 2rem !important; /* Başlık mobilde çok büyükse küçült */
    }
}

/* Tablet cihazlar için 2 sütunlu görünüm (opsiyonel) */
@media (min-width: 769px) and (max-width: 1100px) {
    .bot-card {
        flex: 0 1 calc(50% - 30px); /* Yan yana 2 kart */
        min-height: 500px;
    }
}

/* ================= BOT TYPES MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
    /* 1. Başlık Alanı: Ekrana tam sığması için optimize edildi */
    .bot-types-title {
        font-size: 1.5rem !important; /* Boyut küçültüldü */
        letter-spacing: 0.5px !important; /* Taşmayı önlemek için harf arası daraltıldı */
        line-height: 1.2 !important;
        padding: 0 10px !important;
        word-wrap: break-word; /* Uzun kelimeleri gerekirse alt satıra böler */
    }

    .bot-types-subtitle {
        font-size: 0.9rem !important;
        padding: 0 15px !important;
        margin-top: 10px !important;
    }

    .bot-types-header {
        margin-bottom: 35px !important;
        padding-top: 20px !important;
    }

    /* 2. Kartlar: İnce görünümü düzeltip genişletildi */
    .bot-card {
        flex: 0 1 100% !important; /* Tek sütun ve tam genişlik */
        max-width: 100% !important; /* Mobilde yanlarda boşluk kalmaması için */
        min-height: auto !important; /* İçeriğe göre dinamik yükseklik */
        padding: 35px 25px !important;
        margin: 0 auto !important;
    }

    .bot-types-grid {
        display: flex;
        flex-direction: column;
        gap: 20px !important;
        padding: 0 15px !important; /* Ekran kenarlarından çok hafif boşluk */
    }
}

/* Tablet cihazlar için 2 sütunlu görünüm */
@media (min-width: 769px) and (max-width: 1100px) {
    .bot-card {
        flex: 0 1 calc(50% - 20px); 
        min-height: 480px;
    }
    .bot-types-grid {
        gap: 20px;
    }
}

/* Animasyon görünürlüğü */
.reveal-up.animate__animated {
    visibility: visible;
}

/* Log yazılarını daha okunur yap */
.sim-log span {
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}
.buy-color { color: #00ff88 !important; }
.sell-color { color: #ff4d4d !important; }


/* SIMULATION GLOBAL */
.sim-section { padding: 80px 5%; background: transparent !important; position: relative; z-index: 100; }

/* Başlıklar Zorunlu Görünürlük */
.sim-main-title { 
    text-align: center !important; font-family: 'Orbitron', sans-serif !important; 
    color: #fff !important; margin-bottom: 5px !important; 
    opacity: 1 !important; visibility: visible !important; display: block !important;
}
.sim-subtitle { 
    text-align: center !important; color: rgba(255,255,255,0.4) !important; 
    margin-bottom: 40px !important; font-size: 0.85rem !important;
    opacity: 1 !important; visibility: visible !important; display: block !important;
}

.sim-flex { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.sim-wrapper {
    flex: 1; min-width: 320px; max-width: 500px;
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; padding: 25px; 
    opacity: 1 !important; visibility: visible !important; transform: none !important;
}

.sim-label { 
    font-family: 'Orbitron', sans-serif !important; color: #ff4d4d !important; 
    margin-bottom: 15px !important; font-size: 0.95rem !important; font-weight: 600 !important;
    letter-spacing: 1px; display: block !important;
}
.bot-label { color: #00f2ff !important; }

/* NDU/USDT Etiketi */
.coin-tag {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0, 0, 0, 0.85); border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px; border-radius: 4px;
    font-family: 'Orbitron', sans-serif !important; font-size: 0.75rem; font-weight: 800;
    color: #fff; z-index: 120; display: flex; align-items: center; gap: 8px; letter-spacing: 1px;
}
.live-dot { color: #ff4d4d; animation: blinkSim 1s infinite; }
.bot-dot { color: #00f2ff; text-shadow: 0 0 8px #00f2ff; }
@keyframes blinkSim { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* Grafik Kutusu */
.chart-box { height: 220px !important; background: rgba(0, 0, 0, 0.5); border-radius: 10px; position: relative; overflow: hidden; display: flex; align-items: center; }
svg { width: 100%; height: 100%; fill: none; stroke-width: 3; stroke-linecap: round; }
#svgHumanSim { stroke: #ff4d4d; }
#svgBotSim { stroke: #00f2ff; }

/* Düşünce Balonları */
.thought-box { position: absolute; inset: 0; pointer-events: none; }
.t-bubble {
    position: absolute; color: #ff4d4d; background: rgba(15, 0, 0, 0.95);
    border: 1px solid rgba(255, 77, 77, 0.4); padding: 7px 14px;
    border-radius: 8px; font-size: 0.8rem; font-family: 'Inter', sans-serif;
    animation: tFadeUp 2.8s forwards; white-space: nowrap; z-index: 115;
}
@keyframes tFadeUp {
    0% { opacity: 0; transform: scale(0.8) translateY(15px); }
    15% { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: translateY(-45px); }
}

.scan-bar { position: absolute; top: 0; width: 100%; height: 2px; background: #00f2ff; box-shadow: 0 0 10px #00f2ff; animation: sMove 2s infinite linear; }
@keyframes sMove { 0% { top: 0; } 100% { top: 100%; } }
.sim-log { margin-top: 15px; font-family: monospace; font-size: 0.8rem; color: #aaa; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 10px; }
.bot-log { color: #00f2ff; }
.buy-color { color: #00ff88 !important; font-weight: bold; }
.sell-color { color: #ff4d4d !important; font-weight: bold; }

/* SSS Sayfasına Özel Ek CSS */
    .faq-section { padding: 120px 20px 80px; position: relative; z-index: 10; }
    .faq-header { text-align: center; margin-bottom: 60px; }
    .faq-subtitle { font-family: 'Orbitron', sans-serif; color: #845ef7; letter-spacing: 2px; font-size: 0.8rem; text-transform: uppercase; display: block; margin-bottom: 10px; }
    .faq-title { font-family: 'Orbitron', sans-serif; color: #fff; font-size: 2.5rem; }
    .faq-content { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
    .faq-item { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
    .faq-item:hover { border-color: #00e0ff; background: rgba(0, 224, 255, 0.02); }
    .faq-question { width: 100%; padding: 22px 30px; background: none; border: none; display: flex; justify-content: space-between; align-items: center; color: #fff; font-family: 'Orbitron', sans-serif; font-size: 1rem; text-align: left; cursor: pointer; outline: none; }
    .faq-icon { font-size: 1.5rem; color: #00e0ff; transition: transform 0.3s ease; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); background: rgba(0, 0, 0, 0.2); }
    .faq-answer p { padding: 0 30px 22px 30px; color: #adb5bd; line-height: 1.6; font-family: 'Inter', sans-serif; }
    .faq-item.active { border-color: #845ef7; }
    .faq-item.active .faq-answer { max-height: 1000px; transition: max-height 1s ease-in-out; }
    .faq-item.active .faq-icon { transform: rotate(45deg); color: #845ef7; }

    #nexus-support-container { position: fixed; bottom: 20px; right: 20px; z-index: 10000; font-family: 'Inter', sans-serif; }
#nexus-launcher { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #845ef7, #00e0ff); border: none; color: white; font-family: 'Orbitron'; font-size: 24px; cursor: pointer; box-shadow: 0 0 15px rgba(132, 94, 247, 0.5); }
#nexus-window { width: 350px; height: 520px; background: #0b0e14; border: 1px solid rgba(0, 224, 255, 0.2); border-radius: 20px; position: absolute; bottom: 75px; right: 0; display: flex; flex-direction: column; overflow: hidden; transition: 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28); }
.nexus-closed { opacity: 0; transform: translateY(30px) scale(0.9); pointer-events: none; }
.nexus-header { padding: 15px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.bot-name { display: block; color: #00e0ff; font-family: 'Orbitron'; font-size: 13px; letter-spacing: 1px; }
.bot-sub { font-size: 10px; color: #888; }
.pulse-dot { width: 8px; height: 8px; background: #00ff88; border-radius: 50%; display: inline-block; margin-right: 8px; box-shadow: 0 0 10px #00ff88; }
#nexus-messages { flex: 1; padding: 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: #ddd; }
.msg { padding: 10px 14px; border-radius: 12px; max-width: 85%; line-height: 1.5; }
.msg.bot { background: rgba(255,255,255,0.06); align-self: flex-start; border-bottom-left-radius: 2px; }
.msg.user { background: #845ef7; color: white; align-self: flex-end; border-bottom-right-radius: 2px; }
.nexus-footer { padding: 12px; background: #000; display: flex; gap: 8px; }
#nexus-input { flex: 1; background: #1a1f26; border: 1px solid #333; border-radius: 10px; color: white; padding: 10px; outline: none; }
#nexus-send { background: #00e0ff; border: none; padding: 0 15px; border-radius: 10px; cursor: pointer; font-weight: bold; }

/* ================= TEAM & COMMUNITY STYLES ================= */
.team-community-section {
  padding: 100px 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 100px;
}

.team-member-card {
  background: linear-gradient(160deg, rgba(35, 10, 55, 0.75), rgba(10, 20, 45, 0.9));
  border: 1px solid rgba(158, 76, 240, 0.25);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team-member-card:hover {
  transform: translateY(-10px);
  border-color: #4cc9f0;
  box-shadow: 0 0 40px rgba(76, 201, 240, 0.2);
}

.member-image-placeholder {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4cc9f0, #cf4cf0);
  padding: 3px;
  overflow: hidden;
}

.member-image-placeholder img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0a0a1a;
}

.team-member-card h3 {
  font-size: 18px;
  color: #5ddcff;
  margin-bottom: 8px;
  font-family: 'Orbitron', sans-serif;
}

.team-member-card span {
  font-size: 13px;
  opacity: 0.7;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.community-highlight {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 60px;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px;
}

.community-text h3 {
  font-size: 32px;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 0 15px rgba(76, 201, 240, 0.3);
}

.community-text p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 20px;
}

.community-stats-image img {
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(207, 76, 240, 0.3));
  animation: float 6s ease-in-out infinite;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
  .team-community-section { padding: 60px 20px; }
  .community-highlight {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    text-align: center;
  }
  .community-text h3 { font-size: 24px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ================= HERO SECTION (TAM HALİ) ================= */
.hero {
  /* Navbar'ın arkasından başlaması için tam ekran yapıp yukarı çekiyoruz */
  min-height: 100vh;
  margin-top: -88px; /* Navbar yüksekliği kadar yukarı (Navbar arkasına) */
  padding-top: 88px; /* İçeriğin navbarın altında kalmaması için */
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  text-align: center;
  overflow: hidden;

  /* ARKA PLAN: Navbar arkasından (0%) simsiyah başlar, aşağı doğru şeffaflaşır */
  background: linear-gradient(
    to bottom, 
    #000000 0%,          /* Tam tepe (Navbar arkası) siyah */
    rgba(0, 0, 0, 0.9) 20%, 
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%     /* Sayfanın devamına pürüzsüz geçiş */
  ) !important;
}

/* Hero İçerik Düzenlemeleri */
.hero-owl {
  margin-top: 30px;
  width: 340px;
  max-width: 80vw;
  z-index: 5;
  filter: drop-shadow(0 0 40px rgba(76,201,240,0.45));
  animation: float 6s ease-in-out infinite;
  position: relative;
}

.hero h1 {
  margin-top: 30px;
  font-size: clamp(40px, 8vw, 68px); /* Mobilde otomatik küçülür */
  font-weight: 800;
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: scaleY(0.7);
  color: #ffffff;
  text-shadow: rgba(207, 76, 240, 0.6) 0 4px 15px;
  position: relative;
}

.hero p {
  max-width: 680px;
  font-size: 1.2rem;
  opacity: 0.9;
  z-index: 5;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  padding: 0 20px;
}

/* Halkaların Konumu (Halkalar geçişin altında kalsın diye z-index 1) */
.holo-ring, .holotwo-ring, .holothree-ring {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  z-index: 1;
  opacity: 0.4;
}

/* Buton Alanı */
.hero-buttons {
  z-index: 5;
  position: relative;
  margin-top: 20px;
}

/* Mobil için ufak düzeltme */
@media (max-width: 768px) {
  .hero {
    margin-top: -60px;
    padding-top: 60px;
  }
}

/* Yıldırım Canvas Konumu */
#lightning-canvas {
    position: absolute;
    top: 35%; /* Baykuşun gövde merkezine göre ayarlı */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Ringlerin üstünde, baykuşun (z-index: 5) altında */
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Mevcut Ringlere Mor Enerji Dokunuşu */
.holo-ring, .holotwo-ring, .holothree-ring {
    border-color: rgba(207, 76, 240, 0.4) !important; /* Halkaları mor yap */
    box-shadow: 0 0 20px rgba(207, 76, 240, 0.2), inset 0 0 20px rgba(207, 76, 240, 0.2);
}

/* Baykuşa mor bir parlama (Glow) ekle */
.hero-owl {
    filter: drop-shadow(0 0 25px rgba(207, 76, 240, 0.6)) !important;
    transition: filter 0.3s ease;
}