/* ====== RESET & THEME ====== */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --ink:#070b12;
  --panel:#0c1421;
  --muted:#a7b6d3;
  --text:#e8efff;
  --blue:#00aaff;
  --blue-2:#29c3ff;
}
html,body{height:100%}
body{background:#090f18;color:var(--text);font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;overflow-x:hidden}

/* Global rhythm */
main>section{max-width:1200px;margin-inline:auto}
.section{padding:80px 20px}
.section-title{
  text-align:center;letter-spacing:.6px;
  font-size:clamp(22px,2.4vw,34px);font-weight:800;
  color:var(--blue);text-shadow:0 0 10px rgba(0,170,255,.4);
  margin-bottom:28px
}
.section-title span{color:#fff;text-shadow:none}

/* ====== BUTTONS ====== */
.btn-primary,.btn-outline,.btn.primary,.btn.ghost{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 22px;border-radius:999px;font-weight:700;
  text-decoration:none;transition:.25s ease;font-size:15px
}
.btn-primary,.btn.primary{
  color:#fff;background:linear-gradient(90deg,#0575ff 0%,#00d4ff 100%);
  box-shadow:0 0 16px rgba(0,170,255,.45)
}
.btn-primary:hover,.btn.primary:hover{transform:translateY(-2px) scale(1.02);box-shadow:0 0 26px rgba(0,170,255,.75)}
.btn-outline,.btn.ghost{border:2px solid var(--blue);color:var(--blue);background:transparent}
.btn-outline:hover,.btn.ghost:hover{background:var(--blue);color:#07111d}

/* ====== HERO ====== */
.hero-neon{
  position:relative;min-height:92vh;display:grid;place-items:center;text-align:center;
  background:
    radial-gradient(60% 60% at 50% 38%, rgba(0,170,255,.08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), #000 70%);
  overflow:hidden
}
.hero-inner{padding:90px 20px 40px}
.hero-top{
  font-size:clamp(12px,1.2vw,16px);
  color:var(--blue);font-weight:800;letter-spacing:.35em;
  text-shadow:0 0 10px rgba(0,170,255,.7)
}
.hero-logo{width:min(240px,35vw);margin:26px auto;filter:drop-shadow(0 0 22px rgba(0,170,255,.5))}
.hero-title{
  font-size:clamp(34px,5.2vw,64px);font-weight:900;line-height:1.05;
  text-shadow:0 0 22px rgba(0,170,255,.35), 0 0 44px rgba(0,170,255,.2)
}
.hero-subtext{max-width:900px;margin:18px auto 12px;color:var(--muted);line-height:1.65;font-size:clamp(14px,1.35vw,18px)}
.cta{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;margin-top:14px}

/* floating neon blobs */
.neon-orbs{position:absolute;inset:0;pointer-events:none}
.neon-orbs span{
  position:absolute;border-radius:50%;filter:blur(60px);opacity:.45;animation:orb 9s ease-in-out infinite
}
.neon-orbs span:nth-child(1){background:#007bff;width:220px;height:220px;top:20%;left:10%}
.neon-orbs span:nth-child(2){background:#00e0ff;width:280px;height:280px;bottom:16%;right:8%;animation-delay:2s}
.neon-orbs span:nth-child(3){background:#005bff;width:180px;height:180px;top:68%;left:42%;animation-delay:4s}
@keyframes orb{0%,100%{transform:translateY(0)}50%{transform:translateY(-24px)}}

/* ====== FEATURES ====== */
.features{padding:90px 20px}
.feature-grid{display:grid;gap:22px;grid-template-columns:repeat(3,minmax(220px,1fr))}
@media (max-width:1024px){.feature-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.feature-grid{grid-template-columns:1fr}}
.feature-card{
  background:linear-gradient(180deg, rgba(12,20,33,.82), rgba(8,14,24,.82));
  border:1px solid rgba(0,170,255,.22);border-radius:18px;padding:24px;
  backdrop-filter:blur(10px);min-height:180px;transition:.25s ease
}
.feature-card:hover{transform:translateY(-6px);border-color:var(--blue);box-shadow:0 0 26px rgba(0,170,255,.28)}
.icon-wrap{font-size:26px;color:var(--blue);margin-bottom:10px;filter:drop-shadow(0 0 6px rgba(0,170,255,.45))}
.feature-card h3{font-size:18px;margin-bottom:6px}
.feature-card p{color:var(--muted);font-size:15px;line-height:1.55}

/* ====== JOIN US ====== */
.join-us{position:relative;overflow:hidden;padding:96px 20px;background:radial-gradient(80% 70% at 50% 30%, rgba(0,170,255,.08), transparent 60%)}
.join-header .section-title{margin-bottom:6px}
.section-subtext{color:var(--muted);max-width:860px;margin:0 auto 12px}
.energy-bg{
  position:absolute;inset:0;pointer-events:none;opacity:.25;
  background:repeating-linear-gradient(45deg, rgba(0,170,255,.08) 0 14px, transparent 14px 28px);
  animation:energy 9s linear infinite
}
@keyframes energy{to{background-position:200% 200%}}
.particles{position:absolute;inset:0;pointer-events:none}
.particles span{
  position:absolute;background:var(--blue);border-radius:50%;opacity:.6;animation:particle 6s linear infinite
}
.particles span:nth-child(1){width:6px;height:6px;top:20%;left:30%}
.particles span:nth-child(2){width:8px;height:8px;top:62%;left:52%;animation-delay:.6s}
.particles span:nth-child(3){width:5px;height:5px;top:80%;left:18%;animation-delay:1.1s}
.particles span:nth-child(4){width:7px;height:7px;top:42%;left:74%;animation-delay:1.7s}
.particles span:nth-child(5){width:9px;height:9px;top:12%;left:86%;animation-delay:2.2s}
@keyframes particle{0%{transform:translateY(0);opacity:.6}50%{transform:translateY(-18px);opacity:1}100%{transform:translateY(0);opacity:.6}}

/* ====== ACCESSIBILITY ====== */
@media (prefers-reduced-motion:reduce){
  .neon-orbs span,.sponsor-track,.energy-bg,.particles span{animation:none}
}

/* ====== RESPONSIVE TWEAKS ====== */
@media (max-width:900px){
  .hero-logo{width:190px}
  .sponsor img{height:34px}
}
@media (max-width:560px){
  .section{padding:56px 16px}
  .hero-title{font-size:34px}
  .sponsor img{height:28px}
}
/* ==== HERO (compact transparent) ==== */
.hero-neon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: transparent; /* tamamen şeffaf */
  padding: 80px 20px;      /* sabit boşluk, tam ekran değil */
  min-height: auto;        /* otomatik yükseklik */
  overflow: hidden;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(0,0,0,0.25); /* hafif cam efekti (istersen 0.0 yap) */
  border-radius: 16px;
  padding: 40px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,170,255,0.15);
}

.hero-top {
  font-size: 14px;
  color: #00aaff;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.hero-logo {
  width: 200px;
  max-width: 60%;
  margin: 20px auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0,170,255,.4));
}

.hero-title {
  font-size: 40px;
  font-weight: 900;
  color: #e8f4ff;
  text-shadow: 0 0 20px rgba(0,170,255,0.3);
  margin-bottom: 10px;
}

.cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Neon toplar kısıldı */
.neon-orbs span {
  display: none;
}
/* === HERO: Tamamen Şeffaf, Temiz === */
.hero-neon {
  position: relative;
  background: none !important; /* hiçbir arka plan yok */
  padding: 80px 20px 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: visible;
}

.hero-inner {
  background: none !important; /* içerik kutusu da tamamen şeffaf */
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-top {
  font-size: 14px;
  color: #00aaff;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-shadow: 0 0 8px rgba(0,170,255,0.5);
}

.hero-logo {
  width: 200px;
  max-width: 60%;
  margin: 20px auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0,170,255,0.3));
}

.hero-title {
  font-size: 42px;
  font-weight: 900;
  color: #e8f4ff;
  text-shadow: 0 0 20px rgba(0,170,255,0.25);
  margin: 10px 0;
}

/* Butonlar */
.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-outline {
  padding: 10px 22px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #007bff, #00e5ff);
  color: #fff;
  box-shadow: 0 0 10px rgba(0,170,255,0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,170,255,0.7);
}

.btn-outline {
  border: 2px solid #00aaff;
  color: #00aaff;
  background: transparent;
}

.btn-outline:hover {
  background: #00aaff;
  color: #000;
}

/* Neon toplar tamamen kapalı */
.neon-orbs {
  display: none !important;
}
/* === HERO GÖRSEL ORAN DENGESİ === */
.hero-neon{
  padding: 60px 16px 40px !important;
  min-height: auto !important;
}
.hero-inner{ max-width: 960px; }

/* GÖRSEL - orta boy */
.hero-logo{
  width: clamp(180px, 26vw, 240px) !important;
  max-height: 240px !important;
  margin: 12px auto 18px !important;
  filter: none !important; /* ekstra glow yok */
}

/* Başlık */
.hero-title{
  font-size: clamp(36px, 5vw, 56px) !important;
  margin: 10px 0 !important;
  text-shadow: 0 0 14px rgba(0,200,255,.25) !important;
}

.hero-subtext {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #dce6f3;
  font-weight: 300;
  text-align: center;
}

.hero-subtext strong {
  font-weight: 600;
  color: #ffffff;
}


/* Butonlar */
.cta{ gap: 14px !important; }
.btn-primary,.btn-outline{
  padding: 10px 22px !important;
  font-size: 15px !important;
  border-radius: 999px !important;
}
/* === VOXZ LANG SELECTOR === */
.vxz-lang {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
}

/* Ana buton */
.vxz-lang__current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #eaf8ff;
  border: 1px solid rgba(0, 200, 255, 0.4);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.25s ease;
}

.vxz-lang__current:hover {
  background: rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.7);
}

/* Dropdown */
.vxz-lang__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(15, 20, 30, 0.98);
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 10px;
  list-style: none;
  padding: 6px 0;
  margin-top: 6px;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeDown 0.2s ease forwards;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.vxz-lang__opt {
  padding: 8px 12px;
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.vxz-lang__opt:hover {
  background: rgba(0, 200, 255, 0.12);
  color: #fff;
}

.vxz-lang__opt.active {
  background: rgba(0, 200, 255, 0.25);
  color: #fff;
  font-weight: 600;
}
