/* HovaAFK — tek tema: koyu. Tokenlar burada, bileşenler aşağıda. */
:root {
  --bg: #0b0c0e;
  --bg-2: #0f1013;
  --panel: #121317;
  --panel-2: #17181d;
  --line: #22242b;
  --line-2: #2d3039;
  --text: #e8e9ec;
  --muted: #8b909b;
  --dim: #5f646f;
  --accent: #4ade80;
  --accent-2: #22c55e;
  --accent-ink: #04210f;
  --accent-soft: rgba(74, 222, 128, 0.1);
  --err: #f87171;
  --err-soft: rgba(248, 113, 113, 0.1);
  --warn: #fbbf24;
  --info: #7dd3fc;
  --radius: 10px;
  --radius-sm: 7px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text); font: 15px/1.6 var(--font);
  -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; flex-direction: column;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
p a, .prose a, .small a { color: var(--accent); }
img, svg { display: block; }
h1, h2, h3 { margin: 0; line-height: 1.2; letter-spacing: -0.02em; font-weight: 600; }
h1 { font-size: 28px; }
h2 { font-size: 22px; }
h3 { font-size: 15px; }
p { margin: 0 0 12px; }
code, .mono { font-family: var(--mono); font-size: 0.92em; }
code { background: var(--panel-2); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; }
::selection { background: rgba(74, 222, 128, 0.3); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1360px; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.xsmall { font-size: 12px; }
.ic { width: 18px; height: 18px; flex: none; }
[hidden] { display: none !important; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 38px; padding: 0 16px;
  border-radius: var(--radius-sm); border: 1px solid transparent; background: var(--panel-2); color: var(--text);
  font: 500 14px/1 var(--font); cursor: pointer; white-space: nowrap; transition: background .15s, border-color .15s, color .15s;
}
.btn .ic { width: 16px; height: 16px; }
.btn:hover { background: #1d1f25; color: #fff; }
.btn:disabled, .btn.is-busy { opacity: .55; pointer-events: none; }
.btn-primary { background: var(--accent); color: var(--accent-ink); font-weight: 600; }
.btn-primary:hover { background: #6ee7a0; color: var(--accent-ink); }
.btn-outline { background: transparent; border-color: var(--line-2); }
.btn-outline:hover { border-color: #3b3f4a; background: var(--panel); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--panel-2); color: var(--text); }
.btn-danger { background: transparent; border-color: rgba(248, 113, 113, .35); color: var(--err); }
.btn-danger:hover { background: var(--err-soft); color: #fca5a5; }
.btn-sm { height: 32px; padding: 0 12px; font-size: 13px; }
.btn-xs { height: 26px; padding: 0 9px; font-size: 12px; }
.btn-lg { height: 46px; padding: 0 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn.is-static { pointer-events: none; color: var(--muted); }
.btn.on { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* ---------- Marka / nav ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; font-size: 16px; }
.logo-mark { width: 26px; height: 26px; }
.mnav { position: sticky; top: 0; z-index: 20; background: rgba(11, 12, 14, .82); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.mnav-in, .anav-in { display: flex; align-items: center; gap: 28px; height: 60px; }
.mnav-links, .anav-links { display: flex; gap: 22px; font-size: 14px; color: var(--muted); }
.mnav-links a:hover { color: var(--text); }
.mnav-right, .anav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.lang { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); font-size: 12px; font-weight: 600; padding: 6px 8px; border-radius: 6px; }
.lang .ic { width: 15px; height: 15px; }
.lang:hover { background: var(--panel-2); }
.anav { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.anav-links a { padding: 19px 0; border-bottom: 2px solid transparent; }
.anav-links a.on { color: var(--text); border-color: var(--accent); }
.anav-links a:hover { color: var(--text); }
.anav-right form { margin: 0; }
.who { color: var(--muted); font-size: 13px; max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 72px; border-bottom: 1px solid var(--line); background:
  radial-gradient(900px 400px at 85% -10%, rgba(74, 222, 128, .07), transparent 60%); }
.hero-in { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--accent); font: 500 13px/1 var(--mono); letter-spacing: .02em; margin-bottom: 18px; }
.hero h1 { font-size: 52px; line-height: 1.04; letter-spacing: -0.035em; font-weight: 700; max-width: 12ch; }
.lead { font-size: 17px; color: var(--muted); margin: 20px 0 28px; max-width: 46ch; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.live { display: inline-flex; align-items: center; gap: 6px; color: var(--text); }

.preview { border: 1px solid var(--line-2); border-radius: 14px; background: var(--panel); overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8); }
.pv-top { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 13px; }
.pv-up { margin-left: auto; }
.pv-body { display: grid; grid-template-columns: 1fr 150px; }
.pv-console { padding: 14px 16px; font-size: 12.5px; line-height: 1.75; border-right: 1px solid var(--line); min-height: 260px; }
.pv-input { margin-top: 10px; border: 1px solid var(--line); border-radius: 6px; padding: 6px 10px; font-size: 12px; }
.pv-side { padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.pv-stat { display: flex; flex-direction: column; gap: 5px; }
.pv-hotbar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: auto; }
.pv-hotbar span { aspect-ratio: 1; border: 1px solid var(--line-2); border-radius: 4px; background: var(--bg-2); }
.pv-hotbar span.sel { border-color: var(--accent); }
.ln-sys { color: var(--muted); }
.ln-ok { color: var(--accent); }
.ln-macro { color: var(--info); }
.ln-macro::before { content: '▸ '; color: var(--dim); }

/* ---------- Bölümler ---------- */
.section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.page-top { padding-top: 64px; padding-bottom: 80px; }
.sec-head { margin-bottom: 40px; max-width: 640px; }
.sec-head h1, .sec-head h2 { font-size: 34px; letter-spacing: -0.03em; margin-bottom: 10px; }
.flist { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fitem { display: flex; gap: 14px; padding: 26px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fitem .ic { color: var(--accent); margin-top: 2px; }
.fitem h3 { margin-bottom: 6px; }
.fitem p { color: var(--muted); font-size: 14px; margin: 0; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.steps .num { color: var(--accent); font-size: 13px; display: block; margin-bottom: 14px; }
.steps h3 { font-size: 17px; margin-bottom: 8px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: '+'; color: var(--muted); font-family: var(--mono); }
.faq details[open] summary::after { content: '–'; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin: 12px 0 0; }
.cta-band { border-bottom: 0; }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-in h2 { font-size: 28px; max-width: 20ch; }

/* ---------- Fiyatlar ---------- */
.period-toggle { display: inline-flex; padding: 3px; border: 1px solid var(--line-2); border-radius: 9px; margin-bottom: 24px; background: var(--bg-2); }
.period-toggle button { border: 0; background: transparent; color: var(--muted); font: 500 13px var(--font); padding: 7px 14px; border-radius: 6px; cursor: pointer; }
.period-toggle button.on { background: var(--panel-2); color: var(--text); }
.period-toggle .save { color: var(--accent); font-size: 12px; margin-left: 4px; }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pcard { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--panel); display: flex; flex-direction: column; gap: 18px; }
.pcard.is-featured { border-color: rgba(74, 222, 128, .45); box-shadow: inset 0 0 0 1px rgba(74, 222, 128, .15); }
.pcard.is-current { border-color: var(--line-2); }
.pcard header { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 24px; }
.pcard h3 { font-size: 16px; }
.pprice { display: flex; align-items: baseline; gap: 4px; }
.pprice .amount { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
.pprice .per { color: var(--muted); font-size: 14px; }
.pfeat { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
.pfeat li { display: flex; gap: 9px; align-items: flex-start; }
.pfeat .ic { width: 16px; height: 16px; color: var(--accent); margin-top: 2px; }
.pfeat li.off { color: var(--dim); }
.pfeat li.off .ic { color: var(--dim); }

/* ---------- Etiketler, noktalar, uyarılar ---------- */
.tag { display: inline-flex; align-items: center; height: 21px; padding: 0 8px; border-radius: 99px; border: 1px solid var(--line-2); font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.tag-accent { color: var(--accent); border-color: rgba(74, 222, 128, .35); background: var(--accent-soft); }
.tag-err { color: var(--err); border-color: rgba(248, 113, 113, .35); }
.count { color: var(--muted); font-size: 12px; font-weight: 500; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--dim); flex: none; }
.dot-online, .dot.s-online { background: var(--accent); box-shadow: 0 0 0 3px rgba(74, 222, 128, .15); }
.dot.s-starting, .dot.s-auth { background: var(--warn); animation: pulse 1.2s infinite; }
.dot.s-reconnecting { background: var(--warn); }
.dot.s-error { background: var(--err); }
@keyframes pulse { 50% { opacity: .35; } }
.alert { border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 14px; margin-bottom: 16px; }
.alert-err { border-color: rgba(248, 113, 113, .35); background: var(--err-soft); color: #fecaca; }
.alert-ok { border-color: rgba(74, 222, 128, .35); background: var(--accent-soft); color: #bbf7d0; }
.lock { font-size: 11px; color: var(--warn); }
.is-locked { opacity: .45; pointer-events: none; }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 40px 0 28px; margin-top: auto; }
.foot-in { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 380px; }
.foot-brand p { margin-top: 12px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; color: var(--muted); }
.foot-copy { margin-top: 28px; }

/* ---------- Metin sayfaları ---------- */
.prose h1 { font-size: 36px; letter-spacing: -0.03em; margin-bottom: 12px; }
.prose h2 { font-size: 20px; margin: 36px 0 10px; }
.prose h3 { font-size: 16px; margin: 24px 0 8px; }
.prose p, .prose li { color: #c9ccd3; }
.prose ul, .prose ol { padding-left: 20px; }
.prose li { margin-bottom: 6px; }

/* ---------- Auth ---------- */
.k-auth main { display: flex; align-items: center; justify-content: center; padding: 40px 16px; }
.auth { width: 100%; max-width: 400px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.auth-card { width: 100%; border: 1px solid var(--line); background: var(--panel); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.auth-card h1 { font-size: 22px; margin-bottom: 4px; }
.auth-card p { margin: 0; }
.auth-foot { color: var(--muted); }

/* ---------- Form ---------- */
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); min-width: 0; }
.field > span { font-weight: 500; }
input, select, textarea {
  width: 100%; height: 38px; padding: 0 12px; border-radius: var(--radius-sm); border: 1px solid var(--line-2);
  background: var(--bg-2); color: var(--text); font: 14px var(--font); transition: border-color .15s;
}
textarea { height: auto; padding: 10px 12px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
input::placeholder { color: var(--dim); }
input[type=checkbox], input[type=radio] { width: auto; height: auto; accent-color: var(--accent); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: end; }
.grid-2 .field-sm { max-width: 140px; }
.grid-top { align-items: start; }
.stack { display: flex; flex-direction: column; gap: 14px; }
.form-err { color: var(--err); font-size: 13px; margin: 0; }
.form-actions, .row-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.row-actions { justify-content: flex-start; }
.switch { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; min-height: 38px; }
.switch input { appearance: none; width: 34px; height: 20px; border-radius: 99px; background: var(--line-2); position: relative; cursor: pointer; border: 0; flex: none; transition: background .15s; }
.switch input::after { content: ''; position: absolute; top: 3px; left: 3px; width: 14px; height: 14px; border-radius: 50%; background: #cfd2d8; transition: transform .15s; }
.switch input:checked { background: var(--accent-2); }
.switch input:checked::after { transform: translateX(14px); background: #fff; }
.chk { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }
.chips { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; margin-top: 10px; }
fieldset { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; margin: 0; }
legend { padding: 0 6px; font-size: 13px; color: var(--muted); font-weight: 500; }
.seg { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 3px; background: var(--bg-2); }
.seg label { cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: block; text-align: center; padding: 7px 8px; border-radius: 5px; font-size: 13px; color: var(--muted); }
.seg input:checked + span { background: var(--panel-2); color: var(--text); }

/* ---------- Uygulama ---------- */
.app-main { padding: 32px 0 64px; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.page-head h1 { display: flex; align-items: center; gap: 10px; }
.page-head p { margin: 4px 0 0; }
.page-actions { display: flex; gap: 8px; }
.back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.back .ic { width: 14px; height: 14px; }
.sub-h { font-size: 15px; margin: 32px 0 12px; color: var(--muted); font-weight: 500; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 16px; margin-bottom: 14px; }
.panel > h3 { margin-bottom: 12px; }
.panel-h { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.planbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 14px; font-size: 14px; background: var(--bg-2); }

.rows { display: flex; flex-direction: column; }
.panel:has(> .rows) { padding: 0; }
.row { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) 150px auto; align-items: center; gap: 16px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.row:last-child { border-bottom: 0; }
.row-main { display: flex; align-items: center; gap: 12px; min-width: 0; }
.row-main strong { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row-main a:hover strong { color: var(--accent); }
.row-sub { color: var(--muted); font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.row-status { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.row-actions-r { display: flex; justify-content: flex-end; gap: 6px; }
.row.is-locked-row { opacity: .5; }
.empty { padding: 36px 16px; text-align: center; color: var(--muted); font-size: 14px; }
.row-server { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 90px auto; }

/* Dialog */
.dlg { border: 1px solid var(--line-2); border-radius: 12px; background: var(--panel); color: var(--text); padding: 0; width: min(460px, calc(100vw - 32px)); }
.dlg-wide { width: min(720px, calc(100vw - 32px)); }
.dlg::backdrop { background: rgba(0, 0, 0, .6); backdrop-filter: blur(2px); }
.dlg-form { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.dlg-form h2 { font-size: 18px; }
.dlg-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 4px; }

/* Tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.tabs button { background: transparent; border: 0; border-bottom: 2px solid transparent; color: var(--muted); padding: 10px 12px; font: 500 14px var(--font); cursor: pointer; margin-bottom: -1px; }
.tabs button.on { color: var(--text); border-color: var(--accent); }
.pane-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }

/* Bot sayfası */
.bot-title h1 { font-size: 24px; }
.bot-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 14px; align-items: start; }
.console-panel { padding: 0; display: flex; flex-direction: column; height: calc(100vh - 260px); min-height: 460px; }
.console-tools { display: flex; justify-content: flex-end; align-items: center; gap: 10px; padding: 8px 12px; border-bottom: 1px solid var(--line); }
.console { flex: 1; overflow-y: auto; padding: 12px 14px; font-size: 12.5px; line-height: 1.65; background: #0c0d10; word-break: break-word; }
.console .l { white-space: pre-wrap; }
.console .ts { color: var(--dim); margin-right: 8px; user-select: none; }
.console .l-info { color: var(--muted); }
.console .l-ok { color: var(--accent); }
.console .l-warn { color: var(--warn); }
.console .l-error { color: var(--err); }
.console .l-self { color: var(--info); }
.chat-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); }
.chat-form input { font-family: var(--mono); font-size: 13px; }
.side { display: flex; flex-direction: column; }
.side .panel { margin-bottom: 12px; }
.vitals { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.vitals > div { display: grid; grid-template-columns: 1fr auto; gap: 4px 8px; }
.vitals .bar { grid-column: 1 / -1; }
.bar { height: 6px; border-radius: 99px; background: var(--line); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; background: #ef4444; border-radius: 99px; transition: width .4s; }
.bar-food i { background: #f59e0b; }
.bar-xp i { background: var(--accent); }
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin: 0; }
.kv dt { font-size: 12px; color: var(--muted); }
.kv dd { margin: 2px 0 0; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.kv-wide { grid-template-columns: 1fr; }
.controls { display: grid; grid-template-columns: auto auto 1fr; gap: 14px; align-items: start; }
.controls button, .look-grid button { height: 34px; min-width: 34px; border-radius: 6px; border: 1px solid var(--line-2); background: var(--bg-2); color: var(--text); font: 500 12px var(--font); cursor: pointer; user-select: none; touch-action: none; }
.controls button:hover { border-color: #3b3f4a; }
.controls button.on, .controls button:active { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.dpad { display: grid; grid-template-columns: repeat(3, 34px); gap: 4px; }
.ctl-col { display: flex; flex-direction: column; gap: 4px; }
.ctl-col button { padding: 0 10px; }
.look { display: flex; flex-direction: column; align-items: center; gap: 4px; justify-self: end; }
.look-grid { display: grid; grid-template-columns: repeat(3, 30px); gap: 3px; align-items: center; justify-items: center; }
.look-grid button { height: 28px; min-width: 30px; }
.clicks { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 12px; }
.slots, .inv { display: grid; grid-template-columns: repeat(9, 1fr); gap: 3px; }
.slot { position: relative; aspect-ratio: 1; border: 1px solid var(--line-2); border-radius: 4px; background: var(--bg-2); font: 500 8.5px/1.05 var(--font); color: #c9ccd3; padding: 2px; overflow: hidden; cursor: pointer; text-align: left; }
.slot:hover { border-color: #4b505c; }
.slot.sel { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.slot .qty { position: absolute; right: 2px; bottom: 1px; font: 600 10px var(--mono); color: #fff; }
.slot .sn { position: absolute; left: 2px; bottom: 1px; font: 9px var(--mono); color: var(--dim); }
.slot.empty { cursor: default; }
.inv-sep { grid-column: 1 / -1; height: 4px; }
.slots + p, .inv + p { margin: 10px 0 0; }
.faq-gap { margin-top: 56px; }
.players { display: flex; flex-wrap: wrap; gap: 4px 10px; margin-top: 10px; color: var(--muted); max-height: 180px; overflow: auto; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary h3 { display: inline-flex; gap: 6px; align-items: center; }
.msa { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; border: 1px solid rgba(251, 191, 36, .35); background: rgba(251, 191, 36, .06); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 14px; }
.msa h3 { margin-bottom: 4px; }
.msa p { margin: 0; }
.msa-code { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.msa-code a { color: var(--accent); font-weight: 500; }
.msa-code code { font-size: 20px; letter-spacing: .12em; padding: 6px 12px; background: var(--bg); }
.settings { display: flex; flex-direction: column; gap: 16px; }
.danger h3 { color: var(--err); margin-bottom: 12px; }
.danger-row { display: flex; gap: 8px; flex-wrap: wrap; }
.actions { display: flex; flex-direction: column; gap: 6px; }
.action { display: grid; grid-template-columns: 24px 170px 1fr auto; gap: 8px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 6px 8px; background: var(--bg-2); }
.action .n { color: var(--dim); font: 12px var(--mono); text-align: center; }
.action .t { font-size: 13px; }
.action .params { display: flex; gap: 6px; }
.action input, .action select { height: 30px; font-size: 13px; }
.action .mv { display: flex; gap: 2px; }
.action .mv button { height: 26px; width: 24px; border: 0; background: transparent; color: var(--muted); cursor: pointer; border-radius: 4px; }
.action .mv button:hover { background: var(--panel-2); color: var(--text); }
.add-action { display: flex; gap: 8px; }
.add-action select { max-width: 260px; }
.macro-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto; }

/* Admin */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 14px; }
.stat { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; background: var(--panel); display: flex; flex-direction: column; gap: 4px; }
.stat strong { font-size: 20px; letter-spacing: -0.02em; }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.table th { text-align: left; font-weight: 500; color: var(--muted); font-size: 12px; padding: 8px 10px; border-bottom: 1px solid var(--line); }
.table td { padding: 9px 10px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.table tr:last-child td { border-bottom: 0; }
.table form { margin: 0; }
.is-banned td { opacity: .6; }
.inline-search input { height: 32px; width: 240px; }

/* Ödeme */
.paylist { display: flex; flex-direction: column; gap: 8px; }
.payopt { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 2px 12px; text-align: left; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line-2); background: var(--bg-2); color: var(--text); cursor: pointer; font: 14px var(--font); }
.payopt:hover { border-color: var(--accent); }
.payopt .mono { grid-row: 1 / 3; grid-column: 2; align-self: center; font-size: 15px; }

/* Minecraft renk kodları */
.mc-0 { color: #4a4a4a; } .mc-1 { color: #4b5bdc; } .mc-2 { color: #2fb12f; } .mc-3 { color: #28b8b8; }
.mc-4 { color: #cf3a3a; } .mc-5 { color: #b44cb4; } .mc-6 { color: #f2ab11; } .mc-7 { color: #aaaaaa; }
.mc-8 { color: #6f6f6f; } .mc-9 { color: #7282ff; } .mc-a { color: #55ff55; } .mc-b { color: #55ffff; }
.mc-c { color: #ff5f5f; } .mc-d { color: #ff66ff; } .mc-e { color: #ffff55; } .mc-f { color: #ffffff; }
.mc-l { font-weight: 700; } .mc-o { font-style: italic; } .mc-n { text-decoration: underline; } .mc-m { text-decoration: line-through; }
.mc-k { filter: blur(3px); }

/* Toast */
.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--panel-2); border: 1px solid var(--line-2); padding: 10px 16px; border-radius: 8px; font-size: 14px; z-index: 100; box-shadow: 0 12px 40px rgba(0, 0, 0, .5); max-width: calc(100vw - 32px); }
.toast.err { border-color: rgba(248, 113, 113, .5); color: #fecaca; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .bot-grid { grid-template-columns: 1fr; }
  .console-panel { height: 60vh; }
  .stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .hero { padding: 56px 0; }
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 40px; }
  .flist { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .mnav-links { display: none; }
  .row { grid-template-columns: minmax(0, 1fr) auto; }
  .row .row-sub-col, .row .row-status { display: none; }
  .row .row-main .row-sub { display: block; }
  .anav-in { gap: 16px; }
  .who { display: none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 34px; }
  .flist, .pgrid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .sec-head h1, .sec-head h2 { font-size: 28px; }
  .pv-body { grid-template-columns: 1fr; }
  .pv-side { display: none; }
  .pv-console { border-right: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2 .field-sm { max-width: none; }
  .anav-links { gap: 14px; font-size: 13px; overflow-x: auto; }
  .anav-in { height: auto; flex-wrap: wrap; padding-top: 10px; gap: 6px 16px; }
  .anav-links a { padding: 10px 0; }
  .anav-right { margin-left: 0; order: -1; margin-left: auto; }
  .page-actions { width: 100%; }
  .page-actions .btn { flex: 1; }
  .controls { grid-template-columns: auto 1fr; }
  .look { grid-column: 1 / -1; justify-self: start; }
  .action { grid-template-columns: 20px 1fr auto; }
  .action .params { grid-column: 1 / -1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .mnav-right .btn-ghost { display: none; }
}
