/* ============================================================
   AirsoftLink — Tactical Technology Landing
   ============================================================ */

:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --bg-2: #151b23;
  --card: #1d2633;
  --border: #2b3647;
  --accent: #7a8f3b;
  --accent-hover: #90a94a;
  --accent-soft: rgba(122, 143, 59, 0.14);
  --text: #ffffff;
  --text-2: #b7c0cc;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --gold: #d4af37;
  --display: "Space Grotesk", sans-serif;
  --body: Inter, system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  --radius: 20px;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}

/* ---------- Arka plan katmanları ---------- */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(43, 54, 71, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 54, 71, 0.6) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
  animation: gridDrift 26s linear infinite;
}

.bg-aurora {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(38% 30% at 18% 16%, rgba(122, 143, 59, 0.16), transparent 70%),
    radial-gradient(30% 26% at 84% 12%, rgba(59, 130, 246, 0.1), transparent 70%),
    radial-gradient(34% 30% at 60% 88%, rgba(122, 143, 59, 0.08), transparent 70%);
  animation: auroraShift 18s ease-in-out infinite alternate;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 52px 52px, 52px 52px; }
}

@keyframes auroraShift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1.5%, 0) scale(1.05); }
}

/* ---------- Ortak ---------- */
main { position: relative; z-index: 1; }

.section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 24px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- Butonlar ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(29, 38, 51, 0.66);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.btn:hover { transform: translateY(-2px); border-color: rgba(144, 169, 74, 0.5); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #6c7f34);
  border-color: transparent;
  color: #0c1108;
  box-shadow: 0 12px 32px rgba(122, 143, 59, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 18px 44px rgba(122, 143, 59, 0.42);
}

.btn-ghost { background: transparent; }

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn-lg { min-height: 54px; padding: 0 30px; font-size: 15.5px; border-radius: 14px; }
.btn-xl { min-height: 60px; padding: 0 38px; font-size: 16.5px; border-radius: 16px; }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 13px; }

.btn .ripple {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple 640ms ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  to { transform: scale(3.2); opacity: 0; }
}

/* ---------- Rozetler ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  width: fit-content;
}

.badge svg { width: 13px; height: 13px; }
.badge-gold { color: var(--gold); border-color: rgba(212, 175, 55, 0.35); background: rgba(212, 175, 55, 0.08); }
.badge-verified { color: var(--accent-hover); border-color: rgba(144, 169, 74, 0.4); background: var(--accent-soft); }
.badge-hot { color: #ffb098; border-color: rgba(239, 108, 68, 0.4); background: rgba(239, 108, 68, 0.1); }
.badge-info { color: #9ec8ff; border-color: rgba(59, 130, 246, 0.4); background: rgba(59, 130, 246, 0.1); }

/* ============================================================
   STICKY TOP NAV
   ============================================================ */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 14px 0;
  transition: background 300ms ease, box-shadow 300ms ease, padding 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}

.topnav.is-scrolled {
  padding: 8px 0;
  background: rgba(11, 15, 20, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(43, 54, 71, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.topnav-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-brand strong {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.nav-brand em { font-style: normal; color: var(--text); }
.nav-brand b { color: var(--accent-hover); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--text); background: rgba(255, 255, 255, 0.06); }

.nav-actions { display: flex; gap: 10px; margin-left: auto; }

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(29, 38, 51, 0.6);
  cursor: pointer;
  transition: border-color 200ms ease;
}

.hamburger:hover { border-color: rgba(144, 169, 74, 0.5); }

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 280ms ease, opacity 280ms ease, width 280ms ease;
}

.hamburger span:nth-child(2) { width: 70%; }

body.drawer-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.drawer-open .hamburger span:nth-child(2) { opacity: 0; }
body.drawer-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SOL DRAWER
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(5, 8, 12, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 300ms ease;
}

body.drawer-open .drawer-backdrop { opacity: 1; }

.drawer {
  position: fixed;
  top: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 80;
  width: min(340px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(43, 54, 71, 0.8);
  background: rgba(17, 23, 31, 0.86);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  transform: translateX(calc(-100% - 24px));
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

body.drawer-open .drawer { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.drawer-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(29, 38, 51, 0.6);
  color: var(--text);
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease;
}

.drawer-close:hover { border-color: rgba(144, 169, 74, 0.5); transform: rotate(90deg); }
.drawer-close svg { width: 18px; height: 18px; }

.drawer-nav { display: grid; gap: 4px; }

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.drawer-nav a:hover {
  background: rgba(122, 143, 59, 0.1);
  color: var(--text);
  transform: translateX(4px);
}

.drawer-nav a svg { width: 18px; height: 18px; color: var(--accent-hover); }

.drawer-logout { margin-top: 8px; border-top: 1px solid rgba(43, 54, 71, 0.6); padding-top: 16px !important; }
.drawer-logout svg { color: var(--danger) !important; }

.drawer-foot { margin-top: auto; padding-top: 20px; }
.drawer-foot .btn { width: 100%; }

body.auth-modal-open { overflow: hidden; }

.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(6, 9, 14, 0.48);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 220ms ease;
}

body.auth-modal-open .auth-modal-backdrop { opacity: 1; }

.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 89;
  width: min(520px, calc(100% - 24px));
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(43, 54, 71, 0.85);
  background: rgba(12, 17, 24, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translate(-50%, -46%);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

body.auth-modal-open .auth-modal {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.auth-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.auth-modal-head h3 {
  font-size: 22px;
  font-family: var(--display);
}

.auth-modal-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 16px;
}

.auth-modal-tabs button {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(17, 23, 31, 0.8);
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.auth-modal-tabs button.is-active {
  color: var(--text);
  border-color: rgba(144, 169, 74, 0.45);
  background: rgba(122, 143, 59, 0.12);
}

.auth-modal-pane[hidden] { display: none; }

.auth-inline-switch {
  margin: 14px 0 4px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-2);
}

.auth-inline-switch button {
  border: 0;
  background: transparent;
  color: var(--accent-hover);
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.auth-inline-switch button:hover { text-decoration: underline; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -3; }

.hero-bg-layer {
  position: absolute;
  inset: -6%;
  background-position: center;
  background-size: cover;
  transform: translate3d(calc(var(--px, 0) * 1px), calc(var(--py, 0) * 1px), 0) scale(1.08);
  opacity: 0;
  transition: opacity 1100ms ease;
  will-change: opacity, transform;
}

.hero-bg-layer.is-active { opacity: 1; }

.hero-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(7px);
  background: rgba(11, 15, 20, 0.35);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 22%, rgba(11, 15, 20, 0.88) 82%),
    linear-gradient(180deg, rgba(11, 15, 20, 0.55) 0%, transparent 26%, transparent 62%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 980px;
}

.hero-eyebrow {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-2);
}

.hero-title {
  font-size: clamp(46px, 8.4vw, 108px);
  line-height: 0.98;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.hero-title .line { display: block; }
.hero-title .accent {
  background: linear-gradient(120deg, var(--accent-hover), #c9dc7e 55%, var(--accent-hover));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientSlide 6s ease-in-out infinite;
}

@keyframes gradientSlide {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-sub {
  margin: 26px auto 0;
  max-width: 640px;
  color: var(--text-2);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.hero-chips span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(183, 192, 204, 0.18);
  background: rgba(11, 15, 20, 0.4);
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* Kaydırma göstergesi */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-2);
}

.mouse {
  display: block;
  width: 24px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid rgba(183, 192, 204, 0.45);
  position: relative;
}

.wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 999px;
  background: var(--accent-hover);
  animation: wheelDrop 1.8s ease-in-out infinite;
}

@keyframes wheelDrop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.scroll-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ============================================================
   ÖZELLİK KARTLARI
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.7), rgba(21, 27, 35, 0.9));
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(144, 169, 74, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(144, 169, 74, 0.12), 0 0 42px rgba(122, 143, 59, 0.1);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(144, 169, 74, 0.35);
  background: var(--accent-soft);
  color: var(--accent-hover);
  margin-bottom: 18px;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 { font-size: 18.5px; margin-bottom: 8px; }

.feature-card p {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   SPLIT BÖLÜMLER (Harita, Sıralama, Telsiz, Başarımlar)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: center;
}

.split-reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.split-reverse .split-copy { order: 2; }

.split-copy h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.06;
}

.split-copy p {
  margin: 16px 0 0;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.75;
  max-width: 52ch;
}

/* Harita */
.map-frame,
.board-frame,
.radio-frame {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.8), rgba(17, 23, 31, 0.95));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.map-frame:hover,
.board-frame:hover,
.radio-frame:hover { transform: translateY(-4px); }

.map-canvas {
  position: relative;
  min-height: 440px;
  background:
    radial-gradient(40% 34% at 66% 30%, rgba(59, 130, 246, 0.1), transparent 70%),
    radial-gradient(44% 40% at 24% 66%, rgba(122, 143, 59, 0.14), transparent 70%),
    linear-gradient(180deg, #10161f, #0b0f14);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(183, 192, 204, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 192, 204, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

.map-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(122, 143, 59, 0.1) 50%, transparent 100%);
  height: 42%;
  animation: scanMove 5.6s ease-in-out infinite;
}

@keyframes scanMove {
  0%, 100% { transform: translateY(-30%); }
  50% { transform: translateY(160%); }
}

.map-zone {
  position: absolute;
  padding: 30px 34px;
  border-radius: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  display: grid;
  place-items: center;
}

.zone-safe {
  top: 12%;
  left: 8%;
  border: 1.5px dashed rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.08);
  color: #a8efc0;
  animation: zonePulse 3.4s ease-in-out infinite;
}

.zone-restricted {
  bottom: 14%;
  right: 10%;
  border: 1.5px dashed rgba(239, 68, 68, 0.55);
  background: rgba(239, 68, 68, 0.08);
  color: #ffb4b4;
  animation: zonePulse 3.4s ease-in-out 1.2s infinite;
}

@keyframes zonePulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

.map-objective {
  position: absolute;
  top: 44%;
  left: 52%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  animation: objectiveGlow 2.6s ease-in-out infinite;
}

.map-objective svg { width: 18px; height: 18px; }

@keyframes objectiveGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
}

.map-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-hover);
  box-shadow: 0 0 14px rgba(144, 169, 74, 0.8);
}

.map-marker::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1.5px solid rgba(144, 169, 74, 0.4);
  animation: markerRing 2.2s ease-out infinite;
}

@keyframes markerRing {
  from { transform: scale(0.6); opacity: 1; }
  to { transform: scale(2.1); opacity: 0; }
}

.m1 { top: 30%; left: 26%; animation: patrol1 11s ease-in-out infinite; }
.m2 { top: 58%; left: 64%; animation: patrol2 13s ease-in-out infinite; }
.m3 { top: 70%; left: 34%; animation: patrol1 9s ease-in-out 1s infinite; }
.m4 { top: 24%; left: 72%; animation: patrol2 12s ease-in-out 2s infinite; }

@keyframes patrol1 {
  0%, 100% { transform: translate(0, 0); }
  30% { transform: translate(38px, -20px); }
  65% { transform: translate(-16px, 26px); }
}

@keyframes patrol2 {
  0%, 100% { transform: translate(0, 0); }
  35% { transform: translate(-30px, 18px); }
  70% { transform: translate(22px, -26px); }
}

.map-hud {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(43, 54, 71, 0.8);
  background: rgba(11, 15, 20, 0.7);
  backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--text-2);
}

.map-hud span { display: inline-flex; align-items: center; gap: 8px; }
.map-hud svg { width: 14px; height: 14px; color: var(--success); }

/* Legend */
.legend {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: 14.5px;
}

.dot { width: 12px; height: 12px; border-radius: 999px; }
.dot-safe { background: var(--success); box-shadow: 0 0 12px rgba(34, 197, 94, 0.6); }
.dot-restricted { background: var(--danger); box-shadow: 0 0 12px rgba(239, 68, 68, 0.6); }
.dot-objective { background: var(--gold); box-shadow: 0 0 12px rgba(212, 175, 55, 0.6); }
.dot-team { background: var(--accent-hover); box-shadow: 0 0 12px rgba(144, 169, 74, 0.6); }

/* Sıralama */
.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(43, 54, 71, 0.7);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.board-head span { display: inline-flex; align-items: center; gap: 10px; }
.board-head svg { width: 16px; height: 16px; color: var(--gold); }

.board-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(144, 169, 74, 0.4);
  color: var(--accent-hover);
  font-size: 10.5px;
}

.board-rows { padding: 10px; display: grid; gap: 6px; }

.board-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(11, 15, 20, 0.45);
  border: 1px solid transparent;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.board-row:hover {
  border-color: rgba(144, 169, 74, 0.35);
  background: rgba(122, 143, 59, 0.06);
  transform: translateX(4px);
}

.rank {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-2);
}

.rank.gold { color: var(--gold); }
.rank.silver { color: #c9d2dd; }
.rank.bronze { color: #d8a267; }

.team { font-family: var(--display); font-size: 16.5px; }

.elo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 14px;
}

.elo svg { width: 14px; height: 14px; }
.elo.up { color: var(--success); }
.elo.down { color: var(--danger); }

.elo-bars { display: grid; gap: 16px; margin-top: 26px; }

.elo-bar {
  display: grid;
  grid-template-columns: 70px 1fr 64px;
  align-items: center;
  gap: 14px;
}

.elo-bar span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.elo-bar b {
  font-family: var(--mono);
  font-size: 15px;
  text-align: right;
  color: var(--accent-hover);
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(43, 54, 71, 0.6);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #c9dc7e);
  box-shadow: 0 0 16px rgba(122, 143, 59, 0.5);
  animation: barGrow 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes barGrow {
  from { width: 0; }
}

/* ============================================================
   PAZAR YERİ
   ============================================================ */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.market-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.7), rgba(17, 23, 31, 0.92));
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.market-card:hover {
  transform: translateY(-6px);
  border-color: rgba(144, 169, 74, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.market-img {
  display: grid;
  place-items: center;
  height: 150px;
  background:
    radial-gradient(50% 60% at 50% 40%, rgba(122, 143, 59, 0.16), transparent 80%),
    linear-gradient(180deg, rgba(21, 27, 35, 0.4), rgba(11, 15, 20, 0.6));
  color: var(--accent-hover);
  border-bottom: 1px solid rgba(43, 54, 71, 0.6);
}

.market-img svg { width: 46px; height: 46px; opacity: 0.9; }

.market-body { padding: 20px; display: grid; gap: 10px; }
.market-body h3 { font-size: 17px; line-height: 1.35; }
.market-body p { margin: 0; color: var(--text-2); font-size: 13px; }

.market-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.market-foot b { font-family: var(--mono); font-size: 19px; color: var(--accent-hover); }

.escrow-card { padding: 26px; display: grid; gap: 14px; align-content: center; text-align: center; }
.escrow-card h3 { font-size: 20px; }
.escrow-card p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.65; }

.escrow-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.escrow-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-2);
  max-width: 84px;
}

.escrow-step svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.escrow-line {
  flex: 1;
  max-width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.1));
}

/* ============================================================
   TELSİZ
   ============================================================ */
.channel-list { display: grid; gap: 10px; margin-top: 26px; }

.channel {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(17, 23, 31, 0.7);
  transition: border-color 200ms ease;
}

.channel:hover { border-color: rgba(144, 169, 74, 0.4); }

.ch-no {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-hover);
}

.ch-state {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--text-2);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.ch-state.live {
  color: #a8efc0;
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.08);
  animation: zonePulse 2s ease-in-out infinite;
}

.radio-face {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 34px;
  padding: 40px;
}

.radio-waves {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.radio-waves span {
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  animation: waveBounce 1.15s ease-in-out infinite;
}

.radio-waves span:nth-child(1) { height: 24%; animation-delay: 0s; }
.radio-waves span:nth-child(2) { height: 48%; animation-delay: 0.1s; }
.radio-waves span:nth-child(3) { height: 72%; animation-delay: 0.2s; }
.radio-waves span:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.radio-waves span:nth-child(5) { height: 64%; animation-delay: 0.4s; }
.radio-waves span:nth-child(6) { height: 88%; animation-delay: 0.5s; }
.radio-waves span:nth-child(7) { height: 52%; animation-delay: 0.6s; }
.radio-waves span:nth-child(8) { height: 36%; animation-delay: 0.7s; }
.radio-waves span:nth-child(9) { height: 20%; animation-delay: 0.8s; }

@keyframes waveBounce {
  0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

.ptt {
  display: grid;
  place-items: center;
  gap: 10px;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  border: 2px solid rgba(144, 169, 74, 0.5);
  background: radial-gradient(circle at 34% 28%, rgba(144, 169, 74, 0.3), rgba(21, 27, 35, 0.95) 70%);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  animation: pttIdle 3s ease-in-out infinite;
}

.ptt svg { width: 30px; height: 30px; color: var(--accent-hover); }

.ptt:active,
.ptt.is-talking {
  transform: scale(0.94);
  box-shadow: 0 0 0 18px rgba(122, 143, 59, 0.12), 0 0 60px rgba(122, 143, 59, 0.3);
  animation: none;
}

@keyframes pttIdle {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 143, 59, 0.25); }
  50% { box-shadow: 0 0 0 22px rgba(122, 143, 59, 0); }
}

.radio-meta {
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-2);
}

.radio-meta span { display: inline-flex; align-items: center; gap: 8px; }
.radio-meta svg { width: 15px; height: 15px; color: var(--success); }

/* ============================================================
   FORUM
   ============================================================ */
.forum-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.forum-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.7), rgba(17, 23, 31, 0.92));
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform 240ms ease, border-color 240ms ease;
}

.forum-card:hover { transform: translateY(-4px); border-color: rgba(144, 169, 74, 0.4); }
.forum-card h3 { font-size: 18px; line-height: 1.4; }

.forum-meta {
  display: flex;
  gap: 18px;
  color: var(--text-2);
  font-size: 13px;
}

.forum-meta span { display: inline-flex; align-items: center; gap: 7px; }
.forum-meta svg { width: 14px; height: 14px; }

.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.cat-chips span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.5);
  font-size: 12.5px;
  color: var(--text-2);
  transition: border-color 180ms ease, color 180ms ease;
  cursor: default;
}

.cat-chips span:hover { border-color: rgba(144, 169, 74, 0.5); color: var(--text); }

/* ============================================================
   ÜRETİCİLER
   ============================================================ */
.maker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.maker-card {
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.7), rgba(17, 23, 31, 0.92));
  display: grid;
  gap: 12px;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.maker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42), 0 0 36px rgba(212, 175, 55, 0.08);
}

.maker-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

.maker-icon svg { width: 24px; height: 24px; }
.maker-card h3 { font-size: 18px; }
.maker-card p { margin: 0; color: var(--text-2); font-size: 13.5px; line-height: 1.6; }

/* ============================================================
   BAŞARIMLAR
   ============================================================ */
.xp-panel {
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(17, 23, 31, 0.7);
  display: grid;
  gap: 14px;
}

.xp-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.xp-head span { font-family: var(--mono); font-size: 13px; color: var(--text-2); }
.xp-head b { font-family: var(--mono); font-size: 20px; color: var(--accent-hover); }

.xp-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(43, 54, 71, 0.6);
  overflow: hidden;
}

.xp-bar i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
  animation: barGrow 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.xp-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--text-2);
}

.badge-cloud {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 10px;
}

.badge-item {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 26px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.75), rgba(17, 23, 31, 0.95));
  font-size: 12.5px;
  color: var(--text-2);
  text-align: center;
  transition: border-color 240ms ease, transform 240ms ease;
}

.badge-item:hover { border-color: rgba(144, 169, 74, 0.45); }

.badge-item svg {
  width: 30px;
  height: 30px;
  color: var(--accent-hover);
  filter: drop-shadow(0 0 12px rgba(144, 169, 74, 0.5));
}

.badge-item.gold svg { color: var(--gold); filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.6)); }
.badge-item.gold { border-color: rgba(212, 175, 55, 0.4); }

.float-1 { animation: floaty 6s ease-in-out infinite; }
.float-2 { animation: floaty 7s ease-in-out 0.6s infinite; }
.float-3 { animation: floaty 6.4s ease-in-out 1.2s infinite; }
.float-4 { animation: floaty 7.2s ease-in-out 0.3s infinite; }
.float-5 { animation: floaty 6.8s ease-in-out 0.9s infinite; }
.float-6 { animation: floaty 7.6s ease-in-out 1.5s infinite; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ============================================================
   İSTATİSTİK BANDI
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 34px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(122, 143, 59, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(29, 38, 51, 0.8), rgba(17, 23, 31, 0.95));
  box-shadow: var(--shadow);
}

.stat { display: grid; gap: 6px; justify-items: center; text-align: center; }

.stat b {
  font-family: var(--mono);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
}

.stat span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 120px;
}

.cta-inner {
  position: relative;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 24px;
  border-radius: 30px;
  border: 1px solid rgba(144, 169, 74, 0.3);
  background:
    radial-gradient(52% 90% at 50% 0%, rgba(122, 143, 59, 0.18), transparent 72%),
    linear-gradient(180deg, rgba(29, 38, 51, 0.85), rgba(11, 15, 20, 0.95));
  box-shadow: var(--shadow), 0 0 80px rgba(122, 143, 59, 0.1);
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(144, 169, 74, 0.12) 82%, transparent 94%);
  animation: ctaSpin 14s linear infinite;
  pointer-events: none;
}

@keyframes ctaSpin { to { transform: rotate(360deg); } }

.cta-inner > * { position: relative; }

.cta-inner h2 {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
}

.cta-inner h2 em { font-style: normal; color: var(--text); }
.cta-inner h2 b { color: var(--accent-hover); }

.cta-inner p {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--text-2);
  font-size: 16.5px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(43, 54, 71, 0.7);
  background: linear-gradient(180deg, rgba(17, 23, 31, 0.6), rgba(9, 12, 17, 0.95));
}

.footer-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 64px 0 44px;
}

.footer-brand p {
  margin: 18px 0;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 40ch;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-social:hover { color: var(--accent-hover); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col { display: grid; gap: 12px; align-content: start; }

.footer-col h4 {
  margin: 0 0 6px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}

.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 180ms ease, transform 180ms ease;
  width: fit-content;
}

.footer-col a:hover { color: var(--text); transform: translateX(3px); }

.footer-bar {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(43, 54, 71, 0.5);
  color: var(--text-2);
  font-size: 13px;
}

/* ============================================================
   REVEAL & STAGGER
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.stagger .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger .reveal:nth-child(6) { transition-delay: 400ms; }
.stagger .reveal:nth-child(7) { transition-delay: 480ms; }
.stagger .reveal:nth-child(8) { transition-delay: 560ms; }

.hero-inner .reveal:nth-child(1) { transition-delay: 100ms; }
.hero-inner .reveal:nth-child(2) { transition-delay: 220ms; }
.hero-inner .reveal:nth-child(3) { transition-delay: 360ms; }
.hero-inner .reveal:nth-child(4) { transition-delay: 500ms; }
.hero-inner .reveal:nth-child(5) { transition-delay: 640ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .maker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 28px; }
  .split, .split-reverse { grid-template-columns: 1fr; gap: 28px; }
  .split-reverse .split-copy { order: 0; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding-top: 72px; }
  .feature-grid, .maker-grid, .forum-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 26px 18px; }
  .nav-actions .btn-ghost { display: none; }
  .hero-inner { padding-top: 100px; }
  .hero-chips { display: none; }
  .badge-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .escrow-flow { flex-direction: column; }
  .escrow-line { width: 1.5px; height: 22px; max-width: none; }
  .radio-face { min-height: 360px; padding: 28px; }
  .scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   AUTH SAYFALARI (Giriş / Kayıt / Hesap / Doğrulama)
   ============================================================ */
.auth-main {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 120px 20px 60px;
}

.auth-card {
  width: min(460px, 100%);
  padding: 36px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.82), rgba(17, 23, 31, 0.95));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.auth-card.wide { width: min(640px, 100%); }

.auth-head { text-align: center; margin-bottom: 28px; }

.auth-head img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  margin-bottom: 14px;
}

.auth-head h1 { font-size: 26px; }

.auth-head p {
  margin: 10px 0 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

.auth-form { display: grid; gap: 16px; }

.auth-form label { display: grid; gap: 8px; }

.auth-form .field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
}

.auth-form input,
.auth-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.6);
  color: var(--text);
  font: inherit;
  font-size: 14.5px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.auth-form textarea { min-height: 110px; padding: 14px 16px; resize: vertical; }

.auth-form input:focus,
.auth-form textarea:focus {
  outline: none;
  border-color: rgba(144, 169, 74, 0.6);
  box-shadow: 0 0 0 3px rgba(122, 143, 59, 0.14);
}

.auth-form .btn { width: 100%; }

.auth-alt {
  margin-top: 20px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-2);
}

.auth-alt a { color: var(--accent-hover); text-decoration: none; font-weight: 600; }
.auth-alt a:hover { text-decoration: underline; }

.auth-message {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  border: 1px solid transparent;
}

.auth-message.show { display: block; }

.auth-message.success {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.08);
  color: #a8efc0;
}

.auth-message.error {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.08);
  color: #ffb4b4;
}

.account-grid { display: grid; gap: 18px; }

.account-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.5);
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(144, 169, 74, 0.4);
  color: var(--accent-hover);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.account-identity .alk-id {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent-hover);
}

.account-identity .alk-mail {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 4px;
}

.verify-pill {
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verify-pill.ok {
  color: #a8efc0;
  border: 1px solid rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.08);
}

.verify-pill.no {
  color: #ffd089;
  border: 1px solid rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.08);
}

.account-section-title {
  margin: 10px 0 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
}

.account-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 6px;
}

.btn-danger {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
  color: #ffb4b4;
}

.btn-danger:hover { border-color: rgba(239, 68, 68, 0.7); }

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard-main {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 124px 0 54px;
}

.dashboard-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.8), rgba(14, 20, 28, 0.94));
  box-shadow: var(--shadow);
}

.dashboard-hero h1 {
  margin-top: 6px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.98;
}

.dashboard-hero p {
  margin: 14px 0 0;
  color: var(--text-2);
  max-width: 60ch;
  line-height: 1.7;
}

.dashboard-chip-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dash-chip {
  border-radius: 999px;
  border: 1px solid rgba(43, 54, 71, 0.85);
  background: rgba(11, 15, 20, 0.45);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.dashboard-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-metric-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-metric-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.74), rgba(17, 23, 31, 0.94));
  padding: 18px;
  min-height: 124px;
}

.dashboard-metric-card strong {
  margin-top: 12px;
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 42px);
  letter-spacing: -0.02em;
}

.dashboard-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 16px;
}

.dashboard-main-column,
.dashboard-side-column {
  display: grid;
  gap: 16px;
}

.dashboard-panel {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(29, 38, 51, 0.74), rgba(17, 23, 31, 0.94));
  padding: 20px;
}

.dashboard-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.dashboard-panel-head h2 {
  font-size: 20px;
}

.mini-link {
  color: var(--accent-hover);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.mini-pill {
  border-radius: 999px;
  border: 1px solid rgba(144, 169, 74, 0.45);
  background: rgba(122, 143, 59, 0.12);
  color: var(--accent-hover);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.timeline-list,
.feed-list {
  display: grid;
  gap: 10px;
}

.timeline-item,
.feed-item {
  border-radius: 14px;
  border: 1px solid rgba(43, 54, 71, 0.72);
  background: rgba(11, 15, 20, 0.5);
  padding: 12px 14px;
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.timeline-item strong,
.feed-item strong {
  display: block;
  font-size: 14px;
}

.timeline-item p,
.feed-item p {
  margin: 4px 0 0;
  color: var(--text-2);
  font-size: 12.5px;
}

.timeline-item span,
.feed-item span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.feed-item:hover,
.timeline-item:hover {
  border-color: rgba(144, 169, 74, 0.36);
}

.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.signal-list li {
  border-radius: 12px;
  border: 1px solid rgba(43, 54, 71, 0.72);
  background: rgba(11, 15, 20, 0.46);
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.signal-list span {
  color: var(--text-2);
  font-size: 13px;
}

.signal-list b {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.empty {
  color: var(--text-2);
  font-size: 13px;
}

.drawer-nav a.is-active {
  background: rgba(122, 143, 59, 0.14);
  color: var(--text);
  border: 1px solid rgba(144, 169, 74, 0.34);
}

@media (max-width: 1180px) {
  .dashboard-metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dashboard-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .dashboard-main { padding-top: 110px; }
  .dashboard-hero { flex-direction: column; align-items: flex-start; }
  .dashboard-hero-actions { justify-content: flex-start; }
  .dashboard-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-quick-grid { grid-template-columns: 1fr; }
  .timeline-item, .feed-item { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .dashboard-metric-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV AUTH + PROFİL CHIP
   ============================================================ */
.nav-auth { display: flex; gap: 10px; align-items: center; }

.profile-chip { position: relative; }

.profile-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 5px 12px 5px 6px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(29, 38, 51, 0.66);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.profile-chip-btn:hover { border-color: rgba(144, 169, 74, 0.5); }

.profile-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid rgba(144, 169, 74, 0.4);
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
}

.profile-name { font-weight: 600; font-size: 14px; }
.chip-sep { color: rgba(183, 192, 204, 0.4); }
.profile-id { font-family: var(--mono); font-size: 12px; color: var(--accent-hover); }
.profile-chip-btn svg { width: 14px; height: 14px; color: var(--text-2); }

.profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 210px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(17, 23, 31, 0.97);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  z-index: 95;
}

.profile-menu a,
.profile-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--text-2);
  font: inherit;
  font-size: 13.5px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.profile-menu a:hover,
.profile-menu button:hover { background: rgba(122, 143, 59, 0.1); color: var(--text); }
.profile-menu svg { width: 15px; height: 15px; }
.profile-menu [data-logout] { color: #ffb4b4; }
.profile-menu [data-logout]:hover { background: rgba(239, 68, 68, 0.12); color: #ffd1d1; }

.panel-gap-top { margin-top: 14px; width: 100%; }

/* ============================================================
   DASH HERO (banner'lı karşılama)
   ============================================================ */
.dash-hero {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.dash-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(11, 15, 20, 0.94) 30%, rgba(11, 15, 20, 0.55) 70%, rgba(11, 15, 20, 0.85)),
    url('/assets/banner-2.png') center 30% / cover no-repeat;
  filter: saturate(0.9);
}

.dash-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 26px;
}

.dash-date {
  margin: 0 0 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.dash-hero h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.02;
}

.dash-hero p {
  margin: 12px 0 0;
  color: var(--text-2);
  max-width: 56ch;
  line-height: 1.65;
}

/* ============================================================
   METRİK KARTLARI (ikonlu)
   ============================================================ */
.metric-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(144, 169, 74, 0.35);
  background: var(--accent-soft);
  color: var(--accent-hover);
  margin-bottom: 12px;
}

.metric-icon svg { width: 18px; height: 18px; }

.dashboard-metric-card {
  transition: transform 220ms ease, border-color 220ms ease;
}

.dashboard-metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(144, 169, 74, 0.4);
}

/* ============================================================
   TAKVİM
   ============================================================ */
.cal-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cal-nav strong {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  min-width: 120px;
  text-align: center;
}

.cal-nav button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: rgba(29, 38, 51, 0.6);
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}

.cal-nav button:hover { border-color: rgba(144, 169, 74, 0.5); color: var(--text); }
.cal-nav button svg { width: 15px; height: 15px; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.cal-dayname {
  text-align: center;
  padding: 6px 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.75;
}

.cal-cell {
  position: relative;
  min-height: 58px;
  border-radius: 12px;
  border: 1px solid rgba(43, 54, 71, 0.55);
  background: rgba(11, 15, 20, 0.45);
  padding: 8px 8px 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 160ms ease, background 160ms ease;
}

.cal-cell b {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
}

.cal-cell:hover { border-color: rgba(144, 169, 74, 0.35); }

.cal-cell.is-today {
  border-color: rgba(144, 169, 74, 0.65);
  background: rgba(122, 143, 59, 0.12);
}

.cal-cell.is-today b { color: var(--accent-hover); }

.cal-cell.has-events { background: rgba(17, 23, 31, 0.7); }

.cal-empty { border: 0; background: transparent; }

.cal-dots { display: flex; gap: 4px; }

.cal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex-shrink: 0;
}

.cal-dot.type-match { background: var(--accent-hover); box-shadow: 0 0 8px rgba(144, 169, 74, 0.7); }
.cal-dot.type-event { background: #3b82f6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }
.cal-dot.type-training { background: var(--gold); box-shadow: 0 0 8px rgba(212, 175, 55, 0.6); }

.cal-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-2);
}

.cal-legend span { display: inline-flex; align-items: center; gap: 7px; }

/* ============================================================
   AJANDA
   ============================================================ */
.mini-pill-btn { cursor: pointer; transition: background 160ms ease; }
.mini-pill-btn:hover { background: rgba(122, 143, 59, 0.22); }

.agenda-form {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 0.9fr) auto;
  gap: 8px;
  margin-bottom: 12px;
}

.agenda-form input,
.agenda-form select {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.6);
  color: var(--text);
  font: inherit;
  font-size: 13.5px;
  color-scheme: dark;
}

.agenda-form input:focus,
.agenda-form select:focus {
  outline: none;
  border-color: rgba(144, 169, 74, 0.6);
}

.agenda-list { display: grid; gap: 8px; }

.agenda-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 13px;
  border: 1px solid rgba(43, 54, 71, 0.66);
  background: rgba(11, 15, 20, 0.5);
  transition: border-color 160ms ease;
}

.agenda-item:hover { border-color: rgba(144, 169, 74, 0.36); }

.agenda-item > div { flex: 1; min-width: 0; }

.agenda-item strong {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agenda-item p {
  margin: 3px 0 0;
  color: var(--text-2);
  font-size: 12px;
}

.agenda-countdown {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hover);
  border: 1px solid rgba(144, 169, 74, 0.4);
  background: rgba(122, 143, 59, 0.1);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}

.agenda-remove {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-2);
  font-size: 15px;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

.agenda-remove:hover { color: #ffb4b4; border-color: rgba(239, 68, 68, 0.4); }

/* ============================================================
   SEVİYE PANELİ
   ============================================================ */
.level-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.level-ring {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--accent-hover) 0deg, rgba(43, 54, 71, 0.55) 0deg);
}

.level-ring-inner {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: #131a23;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
}

.level-ring-inner b {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.level-ring-inner small {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  color: var(--text-2);
}

.level-meta { flex: 1; min-width: 0; }
.level-meta strong { font-family: var(--display); font-size: 17px; }
.level-meta p { margin: 4px 0 10px; color: var(--accent-hover); font-family: var(--mono); font-size: 13px; }

.xp-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(43, 54, 71, 0.6);
  overflow: hidden;
}

.xp-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #c9dc7e);
  box-shadow: 0 0 14px rgba(122, 143, 59, 0.5);
  transition: width 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.level-meta small {
  display: block;
  margin-top: 8px;
  color: var(--text-2);
  font-size: 12px;
}

/* ============================================================
   İKİLİ KOLON (Topluluk + Pazar)
   ============================================================ */
.dash-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .dash-two-col { grid-template-columns: 1fr; }
  .agenda-form { grid-template-columns: 1fr 1fr; }
  .dash-hero-inner { flex-direction: column; align-items: flex-start; }
  .cal-cell { min-height: 46px; }
}

/* ============================================================
   DASH APP SHELL (Kontrol Paneli)
   ============================================================ */
.dash-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 80;
  width: 264px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 14px;
  border-right: 1px solid rgba(43, 54, 71, 0.7);
  background: rgba(13, 18, 25, 0.94);
  backdrop-filter: blur(20px);
  overflow-y: auto;
}

.dash-brand { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.dash-brand .drawer-close { display: none; }

.dash-nav { display: grid; gap: 4px; }

.dash-nav-label {
  margin: 14px 6px 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.72;
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.dash-nav a:hover { background: rgba(122, 143, 59, 0.1); color: var(--text); }
.dash-nav a.is-active { background: rgba(122, 143, 59, 0.14); color: var(--text); border-color: rgba(144, 169, 74, 0.34); }
.dash-nav a svg { width: 17px; height: 17px; color: var(--accent-hover); }
.dash-nav a.dash-logout svg { color: var(--danger); }

.dash-side-foot {
  margin-top: auto;
  padding: 12px 6px 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.6;
}

.dash-content { margin-left: 264px; min-height: 100dvh; display: flex; flex-direction: column; }

.dash-topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(43, 54, 71, 0.6);
  background: rgba(11, 15, 20, 0.82);
  backdrop-filter: blur(18px);
}

.dash-topbar .hamburger { display: none; }

.dash-topbar-title { display: grid; gap: 2px; }

.dash-crumb {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
}

.dash-topbar-title strong { font-family: var(--display); font-size: 18px; }

.dash-topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(29, 38, 51, 0.6);
  color: var(--text-2);
  transition: border-color 180ms ease, color 180ms ease;
}

.icon-btn:hover { border-color: rgba(144, 169, 74, 0.5); color: var(--text); }
.icon-btn svg { width: 18px; height: 18px; }

.dash-main {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 22px 56px;
}

@media (max-width: 1080px) {
  .dash-sidebar {
    transform: translateX(-105%);
    transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 0;
    border-radius: 0 20px 20px 0;
    box-shadow: var(--shadow);
  }

  body.drawer-open .dash-sidebar { transform: none; }
  .dash-brand .drawer-close { display: grid; }
  .dash-content { margin-left: 0; }
  .dash-topbar .hamburger { display: inline-flex; }
  .profile-name { display: none; }
  .chip-sep { display: none; }
}
