:root{
  --bg:#0b0f1a;
  --bg2:#0e1630;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.58);
  --line:rgba(255,255,255,.12);
  --accent:#7c5cff;
  --accent2:#2dd4bf;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 22px;
  --max: 1120px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(124,92,255,.28), transparent 55%),
    radial-gradient(900px 520px at 80% 20%, rgba(45,212,191,.22), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height:100vh;
  line-height:1.45;
}
a{color:inherit; text-decoration:none}

.nav{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(11,15,26,.70);
  border-bottom: 1px solid var(--line);
}
.navInner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(45,212,191,.9));
  box-shadow: 0 12px 30px rgba(124,92,255,.28);
  display:grid; place-items:center;
  font-weight:900; letter-spacing:.06em;
  color:#0b0f1a;
}
.brandText{display:flex; flex-direction:column; gap:1px}
.brandText b{font-size:14px; letter-spacing:.08em}
.brandText span{font-size:12px; color:var(--muted2)}

.navLinks{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navLinks a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.18s ease;
}
.navLinks a:hover{
  color:var(--text);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}

.lang{
  display:flex; gap:6px; align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  padding:4px;
  background: rgba(255,255,255,.03);
}
.lang button{
  border:0; cursor:pointer;
  padding:8px 10px;
  border-radius:999px;
  background:transparent;
  color:var(--muted);
  font-size:12px;
  transition:.18s ease;
}
.lang button.active{
  background: rgba(124,92,255,.22);
  color:var(--text);
  box-shadow: inset 0 0 0 1px rgba(124,92,255,.35);
}

.wrap{max-width:var(--max); margin:0 auto; padding:34px 18px 70px}

.hero{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:28px;
}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  font-size:12px;
  color:var(--muted);
  margin-bottom:14px;
}
.kDot{width:8px;height:8px;border-radius:999px;background:var(--accent2);box-shadow:0 0 0 3px rgba(45,212,191,.12)}
h1{margin:0 0 10px; font-size:40px; line-height:1.05}
@media (max-width: 520px){h1{font-size:32px}}
.lead{margin:0 0 18px; color:var(--muted); font-size:16px}

.grid2{display:grid; grid-template-columns: 1.15fr .85fr; gap:14px; align-items:stretch}
@media (max-width: 940px){.grid2{grid-template-columns:1fr}}

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  margin-top:14px;
}
.card h2{margin:0 0 10px; font-size:20px}
.card h3{margin:0 0 8px; font-size:15px}
.card p{margin:0; color:var(--muted); font-size:13px}

.btnRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:650;
  transition:.18s ease;
}
.btnPrimary{
  border-color: rgba(124,92,255,.55);
  background: linear-gradient(135deg, rgba(124,92,255,.28), rgba(124,92,255,.18));
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06)}

.badgeRow{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.badge{
  font-size:12px; color:var(--muted);
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  padding:7px 10px; border-radius:999px;
}

.list{margin:0; padding-left:16px; color:var(--muted); font-size:13px}
.list li{margin:6px 0}

.teamGrid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
@media (max-width: 940px){.teamGrid{grid-template-columns:1fr}}

.profile{display:flex; gap:14px; align-items:flex-start}

/* ✅ Varsayılan: Özgün gibi fotoğraflar "cover" (daha dolu görünür) */
.profile img{
  width:160px;
  height:200px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  flex: 0 0 auto;
  object-fit: cover;
  object-position: 50% 20%;
}

/* ✅ Sadece Tansel: kafa kesilmesin diye contain */
.profile img.avatarContain{
  object-fit: contain;
  object-position: 50% 50%;
  background: rgba(255,255,255,.03);
}

@media (max-width: 520px){
  .profile{flex-direction:column}
  .profile img{width:100%; height:280px}
}

.hr{height:1px; background:var(--line); margin:14px 0}
.input, .textarea{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.92);
  outline:none;
}

.footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:var(--muted2);
  font-size:12px;
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace}

/* ✅ Dil blokları: sadece seçilen görünür */
[data-langblock]{display:none}



/* ===============================
   USALL UI FIX PACK (FINAL)
   - Header logo uses master logo inside gradient square
   - Language blocks rely on app.js (no mixed languages)
   - Honeypot is never visible
   =============================== */

/* Honeypot: keep accessible to bots, invisible to humans */
.hp{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
}

/* Brand + logo square */
.brand{
  display:flex;
  align-items:center;
  gap:20px;
  margin-top:12px;
}

.logo{
  width:72px;
  height:72px;
  border-radius:18px;
  background: linear-gradient(135deg, #4f7cff, #2fd4c5);
  position:relative;
  flex-shrink:0;
  padding:4px;                 /* ~%95 fill */
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* Keep navbar tidy when logo grows */
.nav .navInner{
  padding:18px 0;
}

@media (max-width: 640px){
  .logo{ width:60px; height:60px; border-radius:16px; padding:3px; }
}



/* ===============================
   USALL HEADER – FIXED SQUARE + 2X LOGO (FINAL)
   Square stays same size; logo renders 2x via absolute positioning.
   Uses /assets/usall-logo-v2.png for cache busting.
   =============================== */

.brand{
  display:flex !important;
  align-items:center !important;
  gap:52px !important;          /* must be > overflow (28px) */
  margin-top:12px !important;
}

.logo{
  width:56px !important;        /* square fixed */
  height:56px !important;
  border-radius:14px !important;
  background: linear-gradient(135deg, #4f7cff, #2fd4c5) !important;
  position:relative !important;
  overflow:visible !important;  /* allow 2x logo to extend */
  flex-shrink:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  box-sizing:border-box !important;
}

/* 2x logo: 56px square -> 112px visible logo */
.logo img{
  position:absolute !important;
  top:50% !important;
  left:50% !important;
  width:112px !important;
  height:112px !important;
  transform:translate(-50%, -50%) !important;
  object-fit:contain !important;
  display:block !important;
  z-index:5 !important;
  pointer-events:none !important;
}

/* Mobile: keep square fixed but reduce 2x size slightly to avoid menu collision */
@media (max-width: 640px){
  .brand{ gap:44px !important; }
  .logo{ width:52px !important; height:52px !important; border-radius:13px !important; }
  .logo img{ width:96px !important; height:96px !important; }
}



/* ===============================
   Language rendering (no mixed blocks / no flash)
   =============================== */
[data-langblock] { display: none; }
html[data-active-lang="EN"] [data-langblock="EN"] { display: block; }
html[data-active-lang="SQ"] [data-langblock="SQ"] { display: block; }
html[data-active-lang="TR"] [data-langblock="TR"] { display: block; }

/* Honeypot: keep invisible to users */
.hp{
  position:absolute !important;
  left:-9999px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
}
