:root {
  --bg: #050607;
  --bg-2: #0b0d12;
  --bg-3: #12151c;
  --surface: #10131a;
  --border: rgba(255,255,255,.08);
  --text: #f4f5f7;
  --muted: #9aa0b4;
  --accent: #d10000;
  --accent-2: #ff2a2a;
  --accent-glow: rgba(209,0,0,.4);
  --ok: #22c55e;
  --warn: #f59e0b;
  --err: #ef4444;
  --info: #3b82f6;
  --radius: 14px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,77,26,.18), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(59,130,246,.08), transparent 50%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.announce-bar {
  background: linear-gradient(90deg, #1a0f0a, #2a140c);
  border-bottom: 1px solid rgba(255,77,26,.25);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .85rem;
  color: #ffc7b0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,8,12,.78);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: .65rem; font-weight: 700; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), #a31800);
  box-shadow: 0 0 24px var(--accent-glow);
  font-family: var(--display);
  font-size: 1.35rem;
}
.logo-text { font-family: var(--display); font-size: 1.6rem; letter-spacing: .04em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: .35rem 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.main-nav > a:not(.btn) {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav > a:not(.btn):hover,
.main-nav > a:not(.btn).active { color: var(--text); border-color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; margin: 5px 0; background: #fff; border-radius: 2px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d93600);
  color: #fff;
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-outline {
  border-color: rgba(255,255,255,.22);
  background: transparent;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.04); }
.btn-ghost { background: rgba(255,255,255,.06); }
.btn-admin { background: #1e293b; border-color: #334155; }
.btn-block { width: 100%; }
.btn-sm { padding: .4rem .8rem; font-size: .8rem; }

.site-main { min-height: 60vh; padding-bottom: 3rem; }

.hero {
  position: relative;
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1px solid rgba(255,77,26,.4);
  color: #ffb199;
  padding: .35rem .7rem;
  border-radius: 8px;
  font-size: .8rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: .95;
  margin: 0 0 1rem;
  letter-spacing: .02em;
}
.hero h1 span { color: var(--accent); text-shadow: 0 0 30px var(--accent-glow); }
.hero p.lead { color: var(--muted); max-width: 36rem; font-size: 1.05rem; margin: 0 0 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 2rem;
}
.stat {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}
.stat strong { display: block; font-family: var(--display); font-size: 1.8rem; color: var(--accent-2); }
.stat span { color: var(--muted); font-size: .8rem; }

.hero-card {
  background: linear-gradient(160deg, rgba(255,77,26,.12), rgba(255,255,255,.03));
  border: 1px solid rgba(255,77,26,.25);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.hero-card h3 { margin: 0 0 .5rem; font-family: var(--display); font-size: 1.8rem; letter-spacing: .04em; }
.hero-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.hero-card li { margin: .4rem 0; }

.section { padding: 3.5rem 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: .03em;
}
.section-head p { margin: .25rem 0 0; color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  transition: .2s ease;
}
.card:hover { border-color: rgba(255,77,26,.35); transform: translateY(-2px); }
.card h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: .92rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; gap: .5rem; }
.price { color: var(--accent-2); font-weight: 700; }
.badge {
  display: inline-block;
  font-size: .7rem;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: rgba(255,77,26,.15);
  color: #ffb199;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-ok { background: rgba(34,197,94,.15); color: #86efac; }
.badge-warn { background: rgba(245,158,11,.15); color: #fcd34d; }
.badge-err { background: rgba(239,68,68,.15); color: #fca5a5; }

.page-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: .03em;
}
.page-hero p { margin: .5rem 0 0; color: var(--muted); max-width: 40rem; }

/* Anasayfa dili — tüm sayfalar */
.page-banner {
  position: relative;
  min-height: clamp(240px, 38vh, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 0;
  background: #060709 var(--banner-bg, none) center 30% / cover no-repeat;
}
.page-banner-veil {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(6,7,9,.2) 0%, rgba(6,7,9,.55) 45%, rgba(6,7,9,.94) 100%),
    linear-gradient(90deg, rgba(6,7,9,.82) 0%, rgba(6,7,9,.35) 60%, rgba(6,7,9,.5) 100%),
    radial-gradient(700px 320px at 75% 20%, rgba(180,16,16,.22), transparent 65%);
}
.page-banner-inner {
  position: relative; z-index: 1;
  padding: 3.2rem 0 2.4rem;
  max-width: 780px;
}
.page-banner-brand {
  margin: 0 0 .55rem;
  font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 28px rgba(209,0,0,.35);
}
.page-banner-title {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: .92;
  letter-spacing: .02em;
}
.page-banner-title .t-red { color: var(--accent); }
.page-banner-lead {
  margin: 0;
  color: #c4c9d4;
  font-size: 1.05rem;
  max-width: 36rem;
  line-height: 1.5;
}
.page-banner-actions {
  display: flex; flex-wrap: wrap; gap: .65rem; align-items: center;
  margin-top: 1.25rem;
}
.page-banner-meta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.12);
  color: #c9cedb;
  font-size: .9rem;
}
.page-banner-meta strong { color: #ffc857; }
.page-turnuva .turnuva-layout {
  padding-top: 1.75rem;
}
.page-turnuva .turnuva-side {
  border-radius: 16px;
}
.page-market .mkt-tabs {
  margin-top: 1.5rem;
}
.page-auth .auth-brand {
  font-family: var(--display);
  letter-spacing: .22em;
  font-size: 1.15rem;
}
.page-auth .auth-wrap-visual h1 {
  font-family: var(--display);
  letter-spacing: .04em;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: .95;
}
.page-section {
  padding: 2.5rem 0;
}
.page-section + .page-section { padding-top: 0; }
.page-panel-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(0,0,0,.28);
  padding: 1.25rem 1.35rem;
}
.page-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 900px) {
  .page-split { grid-template-columns: 1fr; }
  .page-banner { min-height: 220px; }
}

.alert {
  margin: 1rem 0;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-3);
}
.alert-success { border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.08); }
.alert-error { border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.08); }
.alert-info { border-color: rgba(59,130,246,.35); background: rgba(59,130,246,.08); }

.auth-wrap {
  max-width: 440px;
  margin: 3rem auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
}
.auth-wrap h1 {
  margin: 0 0 .25rem;
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: .03em;
}
.auth-wrap .sub { color: var(--muted); margin: 0 0 1.25rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: .35rem; font-size: .88rem; color: var(--muted); }
.form-control {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .75rem .9rem;
  outline: none;
}
.form-control:focus { border-color: rgba(255,77,26,.55); box-shadow: 0 0 0 3px var(--accent-glow); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-hint { font-size: .78rem; color: var(--muted); margin-top: .3rem; }
.form-actions { margin-top: 1.25rem; display: grid; gap: .75rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
table.data th, table.data td {
  padding: .75rem .9rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
table.data th { background: rgba(255,255,255,.03); color: var(--muted); font-weight: 600; }
table.data tr:last-child td { border-bottom: 0; }

.panel-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.35rem;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  align-items: start;
}
.side-nav {
  background:
    linear-gradient(165deg, rgba(255,77,26,.07), transparent 42%),
    linear-gradient(180deg, #12151d 0%, #0c0e14 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: .85rem .7rem 1rem;
  height: fit-content;
  position: sticky;
  top: 90px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .62rem .75rem;
  border-radius: 11px;
  color: var(--muted);
  margin-bottom: .15rem;
  font-size: .9rem;
  font-weight: 500;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.side-nav a:hover {
  background: rgba(255,255,255,.04);
  color: #fff;
}
.side-nav a.active {
  background: linear-gradient(90deg, rgba(255,77,26,.22), rgba(255,77,26,.06));
  color: #fff;
  border: 1px solid rgba(255,77,26,.28);
  box-shadow: inset 3px 0 0 #ff4d1a;
}
.panel-content {
  background:
    radial-gradient(ellipse at top right, rgba(255,77,26,.08), transparent 45%),
    linear-gradient(180deg, #12151d, #0e1017);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  min-width: 0;
}
.panel-content h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: .04em;
}
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; margin-bottom: 1.25rem; }
.kpi {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.04), transparent 60%), rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}
.kpi:hover {
  border-color: rgba(255,77,26,.35);
  transform: translateY(-1px);
}
.kpi strong {
  display: block;
  font-size: 1.45rem;
  margin-top: .35rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.kpi span { color: var(--muted); font-size: .78rem; font-weight: 600; }

.filters {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem;
}
.chip {
  padding: .42rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  background: rgba(0,0,0,.2);
  transition: .15s ease;
}
.chip.active, .chip:hover {
  border-color: rgba(255,77,26,.5);
  color: #fff;
  background: rgba(255,77,26,.14);
}

.download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.download-card {
  background: linear-gradient(180deg, rgba(255,77,26,.08), transparent 40%), var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
}
.download-card h3 { margin: 0 0 .5rem; font-family: var(--display); font-size: 1.6rem; letter-spacing: .04em; }
.download-card p { color: var(--muted); margin: 0 0 1.25rem; }

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: #06070b;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-desc { color: var(--muted); font-size: .92rem; }
.site-footer h4 { margin: 0 0 .75rem; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: .4rem 0; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
}

.prose { color: var(--muted); white-space: pre-wrap; line-height: 1.7; }
.prose h1, .prose h2, .prose h3 { color: var(--text); }

/* Icons */
.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.2em;
  flex-shrink: 0;
}
.icon-sm { width: .95em; height: .95em; }
.icon-nav { width: 1em; height: 1em; margin-right: .15rem; opacity: .9; }
.icon-logo { width: 1.25rem; height: 1.25rem; color: #fff; }
.btn .icon { margin-right: .15rem; }
.section-head h2 .icon { margin-right: .25rem; color: var(--accent-2); }
.page-hero h1 .icon { margin-right: .2rem; color: var(--accent); }
.text-ok { color: var(--ok) !important; }
.text-err { color: var(--err) !important; }

/* Visual hero */
.hero-visual {
  position: relative;
  isolation: isolate;
  padding: 4.5rem 0 3.5rem;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
  filter: saturate(.85) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,8,12,.94) 0%, rgba(7,8,12,.72) 48%, rgba(7,8,12,.45) 100%),
    linear-gradient(180deg, rgba(7,8,12,.2), rgba(7,8,12,.95));
}
.hero-copy { position: relative; }
.hero-card-visual {
  overflow: hidden;
  padding: 0;
}
.hero-card-media {
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,77,26,.25);
}
.hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-card-visual h3,
.hero-card-visual ul,
.hero-card-visual > div { padding-left: 1.25rem; padding-right: 1.25rem; }
.hero-card-visual h3 { padding-top: 1rem; display: flex; align-items: center; gap: .4rem; }
.hero-card-visual > div { padding-bottom: 1.25rem; }
.feature-list { list-style: none; padding-left: 1.25rem !important; margin: 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: .55rem 0;
  color: var(--muted);
}
.feature-list .icon { color: var(--accent-2); }

.stat-icon {
  width: 34px; height: 34px; margin: 0 auto .4rem;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,77,26,.12);
  color: var(--accent-2);
}
.stat-icon .icon { width: 18px; height: 18px; margin: 0; }

.features-strip { padding: 1.25rem 0; }
.features-row {
  display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center;
}
.feature-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: #d7dbe8;
  font-size: .9rem;
  font-weight: 600;
}
.feature-pill .icon { color: var(--accent); width: 1.1rem; height: 1.1rem; }

/* Product cards */
.product-card { padding: 0; overflow: hidden; }
.product-card h3, .product-card > p, .product-card .card-meta {
  padding-left: 1.1rem; padding-right: 1.1rem;
}
.product-card h3 { margin-top: .85rem; }
.product-card > p { margin-bottom: 0; }
.product-card .card-meta { padding-bottom: 1.1rem; }
.product-media {
  position: relative;
  height: 160px;
  background: #0a0b10;
  overflow: hidden;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-media .badge {
  position: absolute; left: .75rem; top: .75rem;
  backdrop-filter: blur(8px);
}

.news-card { position: relative; }
.news-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,77,26,.12);
  color: var(--accent-2);
  margin-bottom: .75rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: .85rem;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 180px;
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform .4s ease, filter .3s ease;
  filter: saturate(.9);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.05); }
.gallery-item span {
  position: absolute; left: .8rem; bottom: .8rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  font-weight: 600;
}
.gallery-wide { min-height: 280px; }
.gallery-wide img { min-height: 280px; }

/* Auth visual */
.page-auth .site-main { padding-bottom: 0; }
.auth-stage {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  padding: 2rem 1rem 3rem;
  position: relative;
  isolation: isolate;
}
.auth-stage::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--auth-bg);
  background-size: cover;
  background-position: center;
  filter: brightness(.35) saturate(.8);
}
.auth-stage::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 40%, rgba(255,40,10,.18), transparent 45%),
              linear-gradient(180deg, rgba(7,8,12,.55), rgba(7,8,12,.92));
}
.auth-wrap-visual {
  border: 1px solid rgba(255,60,30,.45);
  box-shadow: 0 0 0 1px rgba(255,60,30,.15), 0 25px 80px rgba(0,0,0,.55);
  background: rgba(8,9,14,.88);
  backdrop-filter: blur(10px);
}
.auth-brand {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--display);
  letter-spacing: .08em;
  font-size: 1.2rem;
  color: var(--accent-2);
  margin-bottom: .5rem;
}

.download-showcase {
  margin-bottom: 1.25rem;
}
.download-preview {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.download-ico {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255,77,26,.12);
  color: var(--accent-2);
  border: 1px solid rgba(255,77,26,.25);
}
.download-ico .icon { width: 26px; height: 26px; }

.main-nav > a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

@media (max-width: 960px) {
  .hero-grid, .grid-3, .grid-4, .download-grid, .footer-grid, .kpi-grid, .grid-2, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-wide, .gallery-wide img, .gallery-item, .gallery-item img { min-height: 180px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,11,16,.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }
  .main-nav.open { display: flex; }
  .side-nav { position: static; }
  .hero-visual { min-height: auto; padding-top: 3rem; }
}

/* ===== Cinematic ZOFKING redesign ===== */
.t-red { color: var(--accent-2); text-shadow: 0 0 24px var(--accent-glow); }
.t-white { color: #fff; }

.btn-blood {
  background: linear-gradient(135deg, #ff1f1f, #8f0000);
  color: #fff;
  border: 1px solid rgba(255,80,80,.35);
  box-shadow: 0 10px 30px rgba(209,0,0,.35);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
}
.btn-blood:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-glass {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.btn-glass:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.cinematic-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.cinematic-slides { position: absolute; inset: 0; z-index: -3; }
.cinematic-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 28%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 10s ease;
}
.cinematic-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.cinematic-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,7,9,.15) 0%, rgba(6,7,9,.45) 40%, rgba(6,7,9,.92) 78%, #060709 100%),
    linear-gradient(90deg, rgba(6,7,9,.78) 0%, rgba(6,7,9,.25) 55%, rgba(6,7,9,.4) 100%),
    radial-gradient(900px 480px at 72% 22%, rgba(180,16,16,.22), transparent 62%);
}
.cinematic-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.cinematic-content {
  position: relative;
  z-index: 1;
  padding: 0 0 5.5rem;
  max-width: 820px;
  width: 100%;
}
.cinematic-brand {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  letter-spacing: .28em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(209,0,0,.35);
  animation: home-brand-in .9s ease both;
}
.cinematic-title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 9.5vw, 6.2rem);
  line-height: .88;
  margin: 0 0 1.1rem;
  letter-spacing: .02em;
  animation: home-title-in 1s .12s ease both;
}
.cinematic-title span { display: block; }
.cinematic-lead {
  color: #c4c9d4;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 32rem;
  margin: 0 0 1.6rem;
  line-height: 1.55;
  animation: home-lead-in 1s .22s ease both;
}
.cinematic-actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 0;
  animation: home-lead-in 1s .32s ease both;
}
.btn-lg { padding: .95rem 1.45rem; font-size: 1rem; }
.cinematic-scroll {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  display: grid; place-items: center;
}
.cinematic-scroll span {
  width: 3px; height: 8px; border-radius: 3px;
  background: #ff4d1a;
  animation: home-scroll 1.6s ease infinite;
}
@keyframes home-brand-in {
  from { opacity: 0; letter-spacing: .5em; transform: translateY(10px); }
  to { opacity: 1; letter-spacing: .28em; transform: none; }
}
@keyframes home-title-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes home-lead-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes home-scroll {
  0% { transform: translateY(-6px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

.home-pulse {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.35);
}
.home-pulse-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.25rem 2rem; padding: 1.1rem 0;
}
.home-pulse-item em {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: normal;
  letter-spacing: .04em;
  line-height: 1;
}
.home-pulse-item span {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.home-pulse-discord {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: .4rem;
  color: #c9cedb; font-weight: 700; font-size: .9rem;
}
.home-pulse-discord:hover { color: #fff; }

.home-enter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 100%;
}
.home-enter-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  text-decoration: none; color: #fff;
}
.home-enter-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.home-enter-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 100%);
}
.home-enter-tile:hover img { transform: scale(1.06); }
.home-enter-copy {
  position: relative; z-index: 1;
  padding: 1.4rem 1.5rem;
}
.home-enter-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  letter-spacing: .06em;
}
.home-enter-copy span { color: #b8beca; font-size: .9rem; }

.home-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.home-market-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,.28);
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.home-market-card:hover {
  border-color: rgba(255,77,26,.35);
  transform: translateY(-3px);
}
.home-market-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0b0f;
}
.home-market-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.home-market-body { padding: 1rem 1.1rem 1.15rem; flex: 1; display: flex; flex-direction: column; }
.home-market-body h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}
.home-market-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .88rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-market-meta {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.home-market-meta .price {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: .03em;
  color: #ffc857;
}

.home-world {
  position: relative;
  min-height: 520px;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.home-world-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.04);
}
.home-world::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,7,9,.94) 0%, rgba(6,7,9,.72) 42%, rgba(6,7,9,.35) 100%),
    linear-gradient(180deg, transparent, rgba(6,7,9,.5));
}
.home-world-inner { padding: 4.5rem 0; max-width: 560px; }
.home-world-inner h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: .95;
  margin: .4rem 0 1rem;
  letter-spacing: .02em;
}
.home-world-inner > p { color: #c4c9d4; margin: 0 0 1.25rem; line-height: 1.55; }
.home-world-points {
  list-style: none; margin: 0 0 1.5rem; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .9rem;
}
.home-world-points li {
  display: flex; align-items: center; gap: .45rem;
  color: #d7dbe5; font-size: .92rem;
}
.home-world-points .icon { color: var(--accent); }

.home-news-list {
  display: grid; gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,.22);
}
.home-news-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  text-decoration: none; color: inherit;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s ease;
}
.home-news-row:last-child { border-bottom: 0; }
.home-news-row:hover { background: rgba(255,77,26,.06); }
.home-news-row strong {
  display: block; margin-bottom: .25rem; font-size: 1.02rem;
}
.home-news-row p {
  margin: 0; color: var(--muted); font-size: .88rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.home-news-row time {
  flex-shrink: 0; color: var(--muted); font-size: .8rem; white-space: nowrap;
  font-style: normal;
}

.home-cta-final {
  padding: 4rem 0 5rem;
  text-align: center;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(209,0,0,.16), transparent 70%);
  border-top: 1px solid rgba(255,255,255,.05);
}
.home-cta-final h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 .5rem;
  letter-spacing: .04em;
}
.home-cta-final p { color: var(--muted); margin: 0 0 1.4rem; }

.page-home .section-head h2 {
  font-family: var(--display);
  letter-spacing: .04em;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.page-home .panel-kicker { margin-bottom: .2rem; }

@media (max-width: 960px) {
  .home-enter { grid-template-columns: 1fr; }
  .home-enter-tile { min-height: 200px; }
  .home-market-grid { grid-template-columns: 1fr; }
  .home-world-points { grid-template-columns: 1fr; }
  .home-pulse-discord { margin-left: 0; width: 100%; }
  .cinematic-hero { min-height: 88vh; }
  .cinematic-content { padding-bottom: 4rem; }
}
@media (max-width: 640px) {
  .home-news-row { flex-direction: column; gap: .45rem; }
}


.poster-band { padding: 0 0 2rem; margin-top: -1.5rem; position: relative; z-index: 2; }
.poster-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.poster-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  min-height: 240px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.poster-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform .5s ease;
  filter: saturate(.95) contrast(1.05);
}
.poster-tile:hover img { transform: scale(1.07); }
.poster-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.88));
}
.poster-caption strong { display: block; margin-top: .35rem; font-size: 1.15rem; }

.split-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 520px;
  margin: 1rem 0 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.split-media { overflow: hidden; }
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 520px;
  filter: saturate(.9);
}
.split-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.5rem;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(209,0,0,.18), transparent 55%),
    var(--bg-2);
}
.split-copy h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: .95;
  margin: .6rem 0 1rem;
  letter-spacing: .03em;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 180px;
  gap: .8rem;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
}
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item.m-big { grid-row: span 2; }
.mosaic-item.m-wide { grid-column: span 2; }

.news-visual { padding: 0; overflow: hidden; }
.news-visual-media {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.news-visual-body { padding: 1.1rem; }
.news-visual-body h3 { margin: .5rem 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.announce-bar {
  background: linear-gradient(90deg, #1a0505, #2a0a0a 40%, #1a0505);
  border-bottom: 1px solid rgba(255,40,40,.3);
  color: #ffc4c4;
}

.logo-mark {
  background: linear-gradient(135deg, #ff2a2a, #7a0000);
}

@media (max-width: 960px) {
  .poster-band-grid, .split-feature, .mosaic {
    grid-template-columns: 1fr;
  }
  .mosaic-item.m-big, .mosaic-item.m-wide { grid-row: auto; grid-column: auto; }
  .split-media img { min-height: 280px; }
  .cinematic-hero { min-height: 85vh; }
}

/* Font Awesome small icons polish */
.i, .fa-solid, .fa-brands, .fa-regular {
  font-size: .92em;
  line-height: 1;
  width: 1.1em;
  text-align: center;
}
.btn .i, .btn .fa-solid, .btn .fa-brands { margin-right: .35rem; }
.main-nav > a .i,
.main-nav > a .fa-solid,
.main-nav > a .fa-brands {
  font-size: .78rem;
  opacity: .85;
  margin-right: .35rem;
  color: var(--accent-2);
}
.main-nav > a.active .i,
.main-nav > a:hover .i { opacity: 1; color: var(--accent-2); }
.logo-mark .fa-biohazard { font-size: 1.05rem; color: #fff; }
.side-nav a .i,
.side-nav a .fa-solid {
  width: 1.25rem;
  margin-right: .45rem;
  color: var(--accent-2);
  font-size: .85rem;
}
.feature-list .i, .feature-list .fa-solid {
  color: var(--accent-2);
  width: 1.15rem;
  margin-right: .15rem;
}
.section-head h2 .i,
.section-head h2 .fa-solid,
.page-hero h1 .i,
.page-hero h1 .fa-solid {
  color: var(--accent-2);
  margin-right: .35rem;
  font-size: .75em;
  vertical-align: .05em;
}
.badge-ico .i, .badge .i, .badge .fa-solid {
  margin-right: .25rem;
  font-size: .75em;
}
.price .i, .price .fa-solid { margin-right: .2rem; color: #ffd27a; }
.cstat-ico .i, .cstat-ico .fa-solid { font-size: .95rem; margin: 0; width: auto; }
.download-ico .i, .download-ico .fa-solid { font-size: 1.35rem; margin: 0; width: auto; }
.cinematic-badge .i, .cinematic-badge .fa-solid { margin-right: .3rem; color: #ff8a8a; }
@keyframes bounceY {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(6px); opacity: .9; }
}

.icon-strip {
  padding: .85rem 0 1.5rem;
  margin-top: -0.5rem;
  position: relative;
  z-index: 3;
}
.icon-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}
.icon-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(10,10,14,.72);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  font-size: .82rem;
  font-weight: 600;
  color: #e8eaf2;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.icon-chip .i, .icon-chip .fa-solid {
  color: var(--accent-2);
  font-size: .85rem;
  width: auto;
  margin: 0;
}

.social-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  transition: .2s ease;
}
.social-btn:hover {
  background: rgba(209,0,0,.2);
  border-color: rgba(255,60,60,.45);
  color: #ff6b6b;
  transform: translateY(-2px);
}
.social-btn .i, .social-btn .fa-brands { margin: 0; font-size: 1rem; width: auto; }

.auth-brand .i, .auth-brand .fa-solid { margin-right: .35rem; }
.hero-badge .i, .hero-badge .fa-solid { margin-right: .3rem; color: var(--accent-2); }

/* Override old SVG icon sizes */
.icon { display: none !important; }

/* Market visuals + logo icon */
.logo-mark {
  overflow: hidden;
  padding: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-media {
  height: 200px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,40,40,.18), transparent 55%),
    #07080c;
}
.product-media::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  pointer-events: none;
}
.product-card {
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.product-card:hover {
  border-color: rgba(255,50,50,.4);
  box-shadow: 0 16px 40px rgba(209,0,0,.18);
}
.product-card h3 { font-size: 1.05rem; }
.market-hero-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.1);
  min-height: 180px;
}
.market-hero-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
}
.market-hero-banner .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.25));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem 1.4rem;
}
.market-hero-banner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.2rem;
  letter-spacing: .04em;
}
.market-hero-banner p { margin: .35rem 0 0; color: #d7dbe8; max-width: 36rem; }
.logo-mark {
  width: 38px;
  height: 38px;
  background: #140404;
  border: 1px solid rgba(255,60,60,.45);
  box-shadow: 0 0 18px rgba(209,0,0,.35);
}
.logo-mark img {
  padding: 4px;
  object-fit: contain;
  background: transparent;
}
.product-media img {
  object-fit: cover;
  object-position: center;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}
.product-media .badge {
  z-index: 2;
}

/* ===== ZOFKING Market (RigorZ-inspired layout, unique look) ===== */
.mkt-hero {
  position: relative;
  padding: 3.2rem 0 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(700px 280px at 70% 20%, rgba(209,0,0,.22), transparent 60%),
    radial-gradient(500px 240px at 10% 80%, rgba(255,80,40,.08), transparent 55%),
    #07080c;
}
.mkt-hero-inner { max-width: 760px; }
.mkt-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .75rem; border-radius: 999px;
  border: 1px solid rgba(255,60,60,.4);
  background: rgba(209,0,0,.12);
  color: #ffb4b4; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; margin-bottom: .9rem;
}
.mkt-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  letter-spacing: .03em; line-height: .95;
}
.mkt-hero h1 span {
  color: #ff2a2a;
  text-shadow: 0 0 28px rgba(255,40,40,.45);
}
.mkt-hero p { color: var(--muted); max-width: 40rem; margin: .85rem 0 1.1rem; }
.mkt-hero-meta {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  color: #d7dbe8; font-size: .92rem;
}
.mkt-hero-meta strong { color: #ffd27a; }

.mkt-tabs {
  display: flex; flex-wrap: wrap; gap: .45rem;
  padding: 1rem 0; position: sticky; top: 72px; z-index: 20;
  background: rgba(7,8,12,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.mkt-tabs a {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem .85rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted);
  font-size: .85rem; font-weight: 600;
}
.mkt-tabs a:hover { color: #fff; border-color: rgba(255,60,60,.45); background: rgba(209,0,0,.1); }
.mkt-tabs a .i { color: var(--accent-2); }

.mkt-section { padding: 2rem 0 1rem; }
.mkt-section-head { margin-bottom: 1.1rem; }
.mkt-section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: .04em;
}
.mkt-section-head p { margin: .35rem 0 0; color: var(--muted); }

.mkt-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mkt-premium {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  background: linear-gradient(135deg, #12151c, #0c0e14);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: .2s ease;
}
.mkt-premium:hover {
  border-color: rgba(255,50,50,.4);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.mkt-premium.is-hot {
  border-color: rgba(255,180,40,.35);
  box-shadow: 0 0 0 1px rgba(255,180,40,.12), 0 18px 40px rgba(209,0,0,.15);
}
.mkt-ribbon {
  position: absolute; top: 12px; right: -28px; z-index: 3;
  background: linear-gradient(90deg, #ffb020, #ff6a00);
  color: #1a0a00; font-size: .68rem; font-weight: 800;
  padding: .28rem 2rem; transform: rotate(35deg);
  letter-spacing: .06em;
}
.mkt-premium-media {
  position: relative;
  min-height: 210px;
  background: #08090d;
}
.mkt-premium-media img {
  width: 100%; height: 100%;
  object-fit: cover; min-height: 210px;
}
.mkt-price-tag {
  position: absolute; left: .6rem; bottom: .6rem;
  background: rgba(0,0,0,.75);
  border: 1px solid rgba(255,210,100,.35);
  color: #ffd27a;
  font-weight: 800; font-size: .82rem;
  padding: .35rem .55rem; border-radius: 8px;
}
.mkt-premium-body {
  padding: 1rem 1rem .85rem;
  display: flex; flex-direction: column;
}
.mkt-premium-body h3 {
  margin: 0 0 .65rem;
  color: #ffc857;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.mkt-perks {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .28rem; flex: 1;
}
.mkt-perks li {
  color: #c9cedb; font-size: .84rem;
  display: flex; align-items: center; gap: .4rem;
}
.mkt-perks .i { color: #22c55e; font-size: .72rem; width: auto; }
.mkt-premium-foot {
  margin-top: .9rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: .6rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mkt-bonus { color: #ffb4b4; font-size: .8rem; font-weight: 600; }
.mkt-bonus .i { color: var(--accent-2); margin-right: .25rem; }
.mkt-buy {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #ffb020, #e07000);
  color: #1a0a00; border: 0; cursor: pointer;
  box-shadow: 0 8px 20px rgba(255,150,0,.3);
  transition: .15s ease;
}
.mkt-buy:hover { filter: brightness(1.08); transform: scale(1.04); }
.mkt-buy .i, .mkt-buy .fa-solid { margin: 0; font-size: 1.05rem; width: auto; color: inherit; }

.mkt-gc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.mkt-gc-card {
  background: #10131a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1rem;
  transition: .2s ease;
}
.mkt-gc-card:hover { border-color: rgba(255,210,100,.35); transform: translateY(-2px); }
.mkt-gc-top { height: 110px; overflow: hidden; }
.mkt-gc-top img { width: 100%; height: 100%; object-fit: cover; }
.mkt-gc-card h3 { margin: .75rem 0 .2rem; font-size: .95rem; }
.mkt-gc-amount {
  font-family: var(--display);
  font-size: 1.6rem; letter-spacing: .04em;
  color: #ffd27a;
}
.mkt-gc-bonus { color: #86efac; font-size: .8rem; margin: .15rem 0; }
.mkt-gc-price { color: #fff; font-weight: 700; margin: .4rem 0 .75rem; }
.mkt-gc-card .btn { width: calc(100% - 1.5rem); margin: 0 auto; }

.mkt-skin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.mkt-skin {
  background: #10131a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: .2s ease;
}
.mkt-skin:hover { border-color: rgba(255,50,50,.35); transform: translateY(-2px); }
.mkt-skin-media { height: 170px; }
.mkt-skin-media img { width: 100%; height: 100%; object-fit: cover; }
.mkt-skin-body { padding: .95rem; }
.mkt-skin-body h3 { margin: 0 0 .35rem; font-size: 1rem; }
.mkt-skin-body p { margin: 0; color: var(--muted); font-size: .86rem; min-height: 2.4em; }
.mkt-skin-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .85rem; gap: .5rem;
}

.mkt-foot-actions { display: flex; align-items: flex-end; gap: .35rem; }
.mkt-buy-form { display: flex; flex-direction: column; align-items: flex-end; }
.mkt-coupon { width: 140px; padding: .3rem .45rem !important; }
.mkt-pay-details code {
  background: rgba(255,255,255,.06); padding: .15rem .4rem; border-radius: 6px; color: #ffc857;
}
.mkt-pay-card {
  background: linear-gradient(135deg, rgba(209,0,0,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,60,60,.25);
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
}
.mkt-pay-card h3 { margin: 0 0 .5rem; font-family: var(--display); letter-spacing: .04em; font-size: 1.5rem; }
.mkt-pay-card p { margin: 0; color: var(--muted); }
.mkt-pay-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }

@media (max-width: 960px) {
  .mkt-premium-grid, .mkt-gc-grid, .mkt-skin-grid { grid-template-columns: 1fr; }
  .mkt-premium { grid-template-columns: 1fr; }
  .mkt-premium-media { min-height: 180px; }
  .mkt-tabs { top: 64px; }
}
.mkt-gc-grid-10 { grid-template-columns: repeat(5, 1fr); }
.mkt-tier-badge {
  position: absolute; top: .6rem; left: .6rem;
  padding: .25rem .55rem; border-radius: 7px;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  background: rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.15);
}
.tier-normal .mkt-tier-badge { color: #c9cedb; border-color: rgba(200,210,220,.35); }
.tier-gold .mkt-tier-badge { color: #ffd27a; border-color: rgba(255,210,100,.45); }
.tier-extreme .mkt-tier-badge { color: #ff8a8a; border-color: rgba(255,80,80,.5); background: rgba(120,0,0,.55); }
.tier-gold.is-hot { border-color: rgba(255,200,80,.4); }
.tier-extreme.is-hot { border-color: rgba(255,60,60,.5); box-shadow: 0 0 24px rgba(209,0,0,.2); }
.tier-normal .mkt-premium-body h3 { color: #d7dbe8; }
.tier-gold .mkt-premium-body h3 { color: #ffc857; }
.tier-extreme .mkt-premium-body h3 { color: #ff6b6b; }
.mkt-gc-bonus.muted { color: var(--muted); }
@media (max-width: 1100px) {
  .mkt-gc-grid-10 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .mkt-gc-grid-10 { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Enhanced Panels (player + admin) ===== */
.page-panel .site-main,
.page-admin .site-main {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(255,77,26,.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(120,0,0,.12), transparent 50%);
}
.page-admin .site-main {
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(180,20,20,.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 100% 0%, rgba(255,77,26,.05), transparent 45%);
}

.side-brand {
  display: flex; align-items: center; gap: .7rem;
  padding: .55rem .65rem .85rem;
  margin-bottom: .35rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.side-brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,77,26,.35), rgba(120,0,0,.4));
  border: 1px solid rgba(255,77,26,.4);
  color: #ff8a5c; font-size: 1rem;
}
.side-brand.admin .side-brand-mark {
  background: linear-gradient(145deg, rgba(220,30,30,.4), rgba(60,0,0,.5));
  color: #ff6b6b;
}
.side-brand strong {
  display: block; font-family: var(--display); letter-spacing: .12em;
  font-size: 1.05rem; line-height: 1;
}
.side-brand em {
  display: block; font-style: normal; color: var(--muted);
  font-size: .72rem; margin-top: .15rem;
}

.panel-side .side-user {
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem .65rem;
  margin: .35rem 0 .55rem;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.05);
}
.side-avatar {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(255,77,26,.15); border: 1px solid rgba(255,77,26,.35);
  color: #ff8a5c; font-size: 1rem;
}
.side-user.admin .side-avatar { background: rgba(209,0,0,.2); color: #ff6b6b; }
.side-user-meta { min-width: 0; }
.side-user-meta strong {
  display: block; font-size: .9rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.side-gc, .side-role {
  display: inline-flex; align-items: center; gap: .3rem;
  color: #ffc857; font-size: .75rem; margin-top: .15rem; font-weight: 600;
}
.side-role { color: var(--muted); font-weight: 500; }

.side-label {
  margin: .85rem .65rem .35rem;
  font-size: .65rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.side-ico {
  width: 1.35rem; display: inline-grid; place-items: center;
  opacity: .85; flex-shrink: 0;
}
.side-nav a.active .side-ico { color: #ff4d1a; opacity: 1; }

.side-foot {
  margin-top: 1rem; padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: grid; gap: .35rem;
}
.side-logout { justify-content: flex-start !important; }
.side-mini {
  display: flex !important; align-items: center; gap: .55rem;
  padding: .5rem .75rem !important;
  font-size: .82rem !important;
  color: var(--muted) !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.side-mini:hover { color: #fff !important; background: rgba(255,255,255,.04) !important; }

.nav-badge {
  display: inline-grid; place-items: center;
  min-width: 1.25rem; height: 1.25rem; padding: 0 .35rem;
  margin-left: auto;
  border-radius: 999px; background: #ff4d1a; color: #fff;
  font-size: .68rem; font-weight: 800;
  box-shadow: 0 0 12px rgba(255,77,26,.45);
}

.panel-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; flex-wrap: wrap;
  margin: -.15rem 0 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.panel-head h1 { margin: 0; }
.panel-kicker {
  margin: 0 0 .35rem;
  font-family: var(--display);
  font-size: clamp(.85rem, 1.5vw, 1.05rem);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 0 24px rgba(209,0,0,.35);
}
.panel-head h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  letter-spacing: .03em;
  line-height: .95;
}
.panel-head h1 .t-red { color: var(--accent); }
.panel-sub { margin: .55rem 0 0; color: #b8beca; font-size: .95rem; max-width: 48ch; line-height: 1.45; }
.panel-head-actions { display: flex; flex-wrap: wrap; gap: .55rem; }

/* Panel / Admin — anasayfa dili */
.page-panel .site-main,
.page-admin .site-main {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(180,16,16,.14), transparent 55%),
    radial-gradient(700px 380px at 0% 40%, rgba(255,77,26,.05), transparent 50%),
    #060709;
}
.page-panel .panel-layout,
.page-admin .panel-layout {
  gap: 1.25rem;
}
.page-panel .panel-side,
.page-admin .panel-side {
  background:
    linear-gradient(165deg, rgba(255,77,26,.1), transparent 40%),
    linear-gradient(180deg, #10131a 0%, #0a0c10 100%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.page-panel .side-brand strong,
.page-admin .side-brand strong {
  font-family: var(--display);
  letter-spacing: .18em;
  font-size: .95rem;
}
.page-panel .side-brand em,
.page-admin .side-brand em {
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .68rem;
}
.page-panel .panel-content,
.page-admin .panel-content {
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 28%),
    radial-gradient(ellipse at top right, rgba(255,77,26,.1), transparent 48%),
    linear-gradient(180deg, #12151c, #0c0e14);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0,0,0,.32);
  padding: 1.5rem 1.5rem 1.65rem;
}
.page-admin .panel-content {
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 28%),
    radial-gradient(ellipse at top right, rgba(180,20,20,.14), transparent 48%),
    linear-gradient(180deg, #141018, #0e0c10);
}
.page-panel .kpi,
.page-admin .kpi {
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.05), transparent 55%),
    rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.08);
}
.page-panel .kpi strong,
.page-admin .kpi strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: .04em;
  font-weight: 400;
}
.page-panel .kpi-accent,
.page-admin .kpi-accent {
  border-color: rgba(255,77,26,.5) !important;
  background:
    linear-gradient(145deg, rgba(255,77,26,.22), transparent 65%),
    rgba(0,0,0,.32) !important;
}
.page-panel .panel-card,
.page-admin .panel-card {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 42%),
    rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
}
.page-panel .panel-card h3,
.page-admin .panel-card h3 {
  font-family: var(--display);
  letter-spacing: .05em;
  font-size: 1.15rem;
  font-weight: 400;
}
.page-panel .chip.active,
.page-admin .chip.active {
  background: rgba(255,77,26,.18);
  color: #fff;
}
.page-panel .btn-primary,
.page-admin .btn-primary {
  background: linear-gradient(135deg, #d10000, #ff4d1a);
  border-color: rgba(255,80,80,.35);
  color: #fff;
  box-shadow: 0 10px 30px rgba(209,0,0,.3);
}
.page-panel .btn-primary:hover,
.page-admin .btn-primary:hover {
  filter: brightness(1.08);
}
.page-panel .side-nav a.active,
.page-admin .side-nav a.active {
  background: linear-gradient(90deg, rgba(255,77,26,.28), rgba(255,77,26,.06));
}
.page-panel .table-wrap,
.page-admin .table-wrap {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.22);
  overflow: hidden;
}

.kpi-rich .kpi { min-height: 96px; }
.kpi-rich .kpi em {
  display: block; margin-top: .4rem; color: var(--muted);
  font-size: .72rem; font-style: normal;
}
.kpi-accent {
  border-color: rgba(255,77,26,.45) !important;
  background:
    linear-gradient(145deg, rgba(255,77,26,.18), transparent 65%),
    rgba(0,0,0,.28) !important;
}
.kpi-accent::after {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,26,.25), transparent 70%);
  pointer-events: none;
}
.kpi .i, .kpi .fa-solid { margin-right: .25rem; opacity: .9; color: #ff8a5c; }

.panel-alert { margin-bottom: 1rem; border-radius: 12px; }
.alert-warn { border-color: rgba(245,158,11,.4); background: rgba(245,158,11,.1); color: #fcd34d; }
.alert-warn a { color: #fff; text-decoration: underline; }

.panel-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.panel-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%), rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 1.05rem 1.15rem;
  transition: border-color .15s ease;
}
.panel-card:hover { border-color: rgba(255,77,26,.22); }
.panel-card h3 { margin: 0 0 .75rem; font-size: 1.02rem; font-weight: 700; }
.panel-card-head {
  display: flex; justify-content: space-between; align-items: center;
  gap: .5rem; margin-bottom: .85rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.panel-card-head h3 { margin: 0; display: flex; align-items: center; gap: .4rem; }
.panel-card-head a {
  font-size: .8rem; color: var(--accent); font-weight: 600;
  padding: .25rem .55rem; border-radius: 8px;
  background: rgba(255,77,26,.08);
}
.panel-card-head a:hover { background: rgba(255,77,26,.16); color: #fff; }

.quick-actions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem;
}
.quick-actions a {
  display: flex; align-items: center; gap: .5rem;
  padding: .8rem .85rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(18,21,29,.9);
  color: var(--text); font-size: .84rem; font-weight: 600;
  transition: .15s ease;
}
.quick-actions a .i,
.quick-actions a .fa-solid { color: #ff8a5c; }
.quick-actions a:hover {
  border-color: rgba(255,77,26,.45);
  background: rgba(255,77,26,.1);
  color: #fff;
  transform: translateY(-1px);
}
.admin-quick { margin-top: .15rem; }

.mini-list { list-style: none; margin: 0; padding: 0; }
.mini-list li {
  display: flex; justify-content: space-between; align-items: center; gap: .75rem;
  padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .9rem;
}
.mini-list li:last-child { border-bottom: 0; }
.mini-list em { color: var(--muted); font-style: normal; font-size: .8rem; white-space: nowrap; }
.mini-list.ranked li strong { color: var(--accent); margin-right: .35rem; }
.empty-hint { color: var(--muted); margin: 0; font-size: .9rem; }

.news-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.news-mini {
  display: block; padding: .95rem; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(18,21,29,.85);
  transition: .15s ease;
}
.news-mini:hover {
  border-color: rgba(255,77,26,.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.news-mini strong { display: block; margin-bottom: .35rem; color: #fff; }
.news-mini span { display: block; color: var(--muted); font-size: .82rem; margin-bottom: .4rem; }
.news-mini em { color: var(--muted); font-size: .75rem; font-style: normal; }

.profile-hero {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.25rem 1.3rem; border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(255,77,26,.16), transparent 55%),
    rgba(0,0,0,.25);
  border: 1px solid rgba(255,77,26,.22);
}
.profile-avatar {
  width: 76px; height: 76px; border-radius: 20px;
  display: grid; place-items: center; font-size: 1.9rem;
  background: rgba(255,77,26,.15); border: 1px solid rgba(255,77,26,.4); color: #ff8a5c;
  box-shadow: 0 0 24px rgba(255,77,26,.15);
}
.profile-meta h2 { margin: 0 0 .2rem; font-family: var(--display); letter-spacing: .04em; font-size: 1.8rem; }
.profile-meta p { margin: 0; color: var(--muted); }
.profile-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .6rem; }

.info-dl { margin: 0; }
.info-dl > div {
  display: grid; grid-template-columns: 120px 1fr; gap: .5rem;
  padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .9rem;
}
.info-dl dt { color: var(--muted); margin: 0; }
.info-dl dd { margin: 0; }
.tip-list { list-style: none; margin: 0; padding: 0; }
.tip-list li {
  padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--muted); font-size: .9rem; display: flex; gap: .55rem; align-items: flex-start;
}
.tip-list li:last-child { border-bottom: 0; }
.stack-btns { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

.gc-pack-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .85rem;
}
.gc-pack-card {
  position: relative; padding: 1.15rem; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(165deg, rgba(255,200,87,.06), transparent 50%), rgba(0,0,0,.28);
  transition: .15s ease;
}
.gc-pack-card:hover {
  border-color: rgba(255,200,87,.35);
  transform: translateY(-2px);
}
.gc-pack-card h3 { margin: 0 0 .35rem; font-size: .95rem; }
.gc-amount { font-size: 1.4rem; font-weight: 800; color: #ffc857; }
.gc-price { color: var(--muted); margin: .25rem 0 .75rem; }
.gc-bonus {
  position: absolute; top: .55rem; right: .55rem;
  font-size: .68rem; font-weight: 700; padding: .2rem .45rem;
  border-radius: 6px; background: rgba(34,197,94,.15); color: #86efac;
}

.ticket-bubble {
  border-radius: 14px; padding: .9rem 1rem; margin: .65rem 0;
  border: 1px solid rgba(255,255,255,.07);
}
.ticket-bubble strong {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: .35rem; margin-bottom: .35rem; font-size: .82rem;
}
.ticket-msg-time { font-weight: 500; color: var(--muted); font-size: .75rem; }
.ticket-bubble p { margin: 0; color: var(--muted); line-height: 1.5; word-break: break-word; }
.ticket-bubble.you { background: rgba(255,255,255,.03); }
.ticket-bubble.admin { background: rgba(255,77,26,.08); border-color: rgba(255,77,26,.25); }
.ticket-meta { color: var(--muted); font-size: .85rem; margin: 0 0 .5rem; }
.ticket-admin-card { margin-bottom: 1rem; }
.ticket-thread { max-height: 420px; overflow-y: auto; padding-right: .25rem; overflow-x: hidden; }
.ticket-list {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
  min-width: 0;
}
.ticket-list-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: border-color .15s ease, background .15s ease;
}
.ticket-list-item:hover {
  border-color: rgba(255,77,26,.35);
  background: rgba(255,77,26,.06);
}
.ticket-list-main { flex: 1; min-width: 0; }
.ticket-list-top {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .65rem;
  margin-bottom: .35rem;
}
.ticket-list-subject {
  font-size: .95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  min-width: 0;
  flex: 1;
}
.ticket-list-preview {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.ticket-list-date {
  display: inline-block;
  margin-top: .4rem;
  font-size: .75rem;
  color: var(--muted);
}
.ticket-list-cta {
  flex-shrink: 0;
  font-size: .82rem;
  font-weight: 700;
  color: #ff6b3d;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .ticket-list-item { flex-direction: column; align-items: stretch; }
  .ticket-list-cta { align-self: flex-end; }
}
.ticket-wait-hint {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1px dashed rgba(245,158,11,.35);
  background: rgba(245,158,11,.06);
  color: #fcd34d;
}
.ticket-bubble p { overflow-wrap: anywhere; word-break: break-word; }
.panel-content { min-width: 0; }
.page-panel .table-wrap,
.page-admin .table-wrap {
  max-width: 100%;
  overflow-x: auto;
}
.page-panel table.data,
.page-admin table.data {
  table-layout: fixed;
  width: 100%;
}
.page-panel table.data td,
.page-admin table.data td {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ticket-reply-form { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1rem; }
.live-dot {
  display: inline-block; width: .55rem; height: .55rem; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: live-pulse 1.6s ease infinite; margin-left: .35rem; vertical-align: middle;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.ticket-bubble.is-live-in { animation: live-msg-in .35s ease; }
@keyframes live-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.live-toasts {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 9999;
  display: flex; flex-direction: column; gap: .55rem; max-width: min(360px, calc(100vw - 2rem));
}
.live-toast {
  background: #141820; border: 1px solid rgba(255,77,26,.35);
  border-radius: 12px; padding: .75rem .9rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  display: grid; gap: .25rem; animation: live-msg-in .25s ease;
}
.live-toast strong { font-size: .9rem; }
.live-toast span { color: var(--muted); font-size: .82rem; }
.live-toast a { color: #ff6b3d; font-size: .82rem; font-weight: 700; }
.live-toast.is-out { opacity: 0; transform: translateY(8px); transition: .35s ease; }
.faq-item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: .65rem .85rem;
  margin: .55rem 0;
  background: rgba(0,0,0,.2);
}
.faq-item summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: .55rem 0 0; color: var(--muted); line-height: 1.5; font-size: .92rem; }

.toolbar-row {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: 1rem;
}
.inline-edit-row {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; padding: .65rem .75rem;
}
.user-actions { position: relative; }
.user-actions summary { cursor: pointer; list-style: none; }
.user-actions summary::-webkit-details-marker { display: none; }
.user-actions-panel {
  position: absolute; right: 0; top: calc(100% + .35rem); z-index: 20;
  width: 250px; padding: .95rem; border-radius: 14px;
  background: #141820; border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
}
.product-admin-list { display: grid; gap: .85rem; }
.product-edit-top { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .65rem; }
.row-highlight { background: rgba(245,158,11,.06); }
table.data.compact td, table.data.compact th { padding: .5rem .6rem; font-size: .88rem; }
.page-panel .table-wrap,
.page-admin .table-wrap {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  overflow: auto;
}
.page-panel table.data th,
.page-admin table.data th {
  background: rgba(255,255,255,.03);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.pay-info code {
  background: rgba(255,255,255,.06); padding: .15rem .4rem; border-radius: 6px;
  font-size: .9rem; color: #ffc857;
}

.admin-side {
  background:
    linear-gradient(165deg, rgba(180,20,20,.12), transparent 40%),
    linear-gradient(180deg, #141018 0%, #0c0a0e 100%);
  border-color: rgba(255,80,80,.15);
}
.page-admin .panel-content {
  background:
    radial-gradient(ellipse at top right, rgba(180,20,20,.1), transparent 45%),
    linear-gradient(180deg, #141018, #0e0c10);
}

@media (max-width: 960px) {
  .panel-grid-2, .news-mini-grid { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr !important; }
  .panel-layout { grid-template-columns: 1fr; }
  .side-nav { position: static; }
}
@media (max-width: 640px) {
  .quick-actions { grid-template-columns: 1fr; }
  .info-dl > div { grid-template-columns: 1fr; }
  .panel-content { padding: 1.05rem; }
}

/* ===== Fun / Eğlence ===== */
.fun-hero { padding-bottom: 1rem; }
.fun-hero h1 { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: .04em; line-height: .95; margin: .35rem 0 .75rem; }
.fun-tip-ticker {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,77,26,.06); margin-bottom: 1.5rem;
}
.fun-tip-inner {
  display: flex; align-items: center; gap: .85rem;
  padding: .7rem 0; font-size: .92rem; color: var(--muted);
}
.fun-tip-label {
  flex-shrink: 0; font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  color: var(--accent);
}
[data-fun-tip] { transition: opacity .2s ease; }

.fun-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.1rem;
}
.fun-grid-3 { grid-template-columns: repeat(3, 1fr); }
.fun-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.2rem;
}
.fun-card-head h2 { margin: 0 0 .35rem; font-family: var(--display); letter-spacing: .04em; font-size: 1.55rem; }
.fun-card-head p { margin: 0 0 1rem; color: var(--muted); font-size: .9rem; }

.smash-stage {
  position: relative; min-height: 260px; border-radius: 16px;
  background:
    radial-gradient(circle at 50% 40%, rgba(209,0,0,.2), transparent 55%),
    linear-gradient(180deg, #12141c, #0a0b0f);
  border: 1px solid var(--border); overflow: hidden;
  display: grid; place-items: center;
}
.smash-hud {
  position: absolute; top: .75rem; left: .75rem; right: .75rem;
  display: flex; justify-content: space-between; gap: .5rem;
  font-size: .82rem; color: var(--muted); z-index: 2;
}
.smash-hud strong { color: #fff; }
.smash-zombie {
  width: 140px; height: 140px; border-radius: 50%;
  border: 3px solid rgba(255,77,26,.55);
  background: radial-gradient(circle at 35% 30%, #3a1010, #140606 70%);
  color: #ff4d1a; font-size: 3rem; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
  transition: transform .08s ease, box-shadow .15s ease;
  box-shadow: 0 0 0 0 rgba(255,77,26,.35);
  z-index: 2;
}
.smash-zombie span { font-size: .75rem; font-weight: 800; letter-spacing: .08em; color: #ffb39a; }
.smash-zombie.is-hot { animation: smashPulse 1s ease infinite; }
.smash-zombie.punch { transform: scale(.88); }
@keyframes smashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,26,.45); }
  50% { box-shadow: 0 0 0 18px rgba(255,77,26,0); }
}
.smash-fx { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.smash-pop {
  position: absolute; color: #ffc857; font-weight: 800; font-size: 1.1rem;
  animation: smashPop .7s ease forwards; pointer-events: none;
}
@keyframes smashPop {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -120%) scale(1.4); }
}
.smash-controls {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .85rem; align-items: center;
}
.smash-controls .form-control { max-width: 180px; }

.wheel-wrap {
  position: relative; width: 260px; height: 260px; margin: 0 auto 1rem;
}
.wheel-pointer {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; z-index: 3;
  border-left: 10px solid transparent; border-right: 10px solid transparent;
  border-top: 18px solid #ff4d1a;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.wheel {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(
    #7a1010 0 45deg, #1a1d28 45deg 90deg,
    #9a1c1c 90deg 135deg, #12141c 135deg 180deg,
    #7a1010 180deg 225deg, #1a1d28 225deg 270deg,
    #9a1c1c 270deg 315deg, #12141c 315deg 360deg
  );
  border: 4px solid rgba(255,77,26,.45);
  box-shadow: inset 0 0 40px rgba(0,0,0,.55), 0 0 30px rgba(209,0,0,.15);
  position: relative;
}
.wheel-face { position: absolute; inset: 0; }
.wheel-label {
  position: absolute; left: 50%; top: 50%;
  transform: rotate(calc(var(--i) * 45deg + 22.5deg)) translateY(-95px) translateX(-50%);
  font-size: 1.25rem;
}
.wheel-hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: #0a0b0f; border: 2px solid rgba(255,77,26,.5);
  display: grid; place-items: center; color: #ff4d1a; font-size: 1.2rem;
}
.wheel-result {
  margin-top: 1rem; text-align: center; padding: 1rem;
  border-radius: 12px; border: 1px solid rgba(255,77,26,.3);
  background: rgba(255,77,26,.08);
}
.wheel-result .prize-emoji { font-size: 2rem; }
.wheel-result strong { display: block; margin: .35rem 0; font-size: 1.15rem; }
.wheel-result p { margin: 0; color: var(--muted); font-size: .9rem; }

.name-out {
  font-family: var(--display); font-size: 2rem; letter-spacing: .06em;
  text-align: center; padding: 1.1rem; margin-bottom: 1rem;
  border-radius: 12px; border: 1px dashed rgba(255,77,26,.35);
  background: rgba(0,0,0,.25); color: #ffc857;
}
.name-out.pop { animation: namePop .35s ease; }
@keyframes namePop {
  0% { transform: scale(.92); opacity: .5; }
  100% { transform: scale(1); opacity: 1; }
}

.quiz-progress { color: var(--muted); font-size: .8rem; margin: 0 0 .5rem; }
.quiz-q { font-size: 1.05rem; margin: 0 0 1rem; min-height: 3.2em; }
.quiz-feedback { margin-top: 1rem; padding: .75rem; border-radius: 10px; font-size: .9rem; }
.quiz-feedback.ok { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); }
.quiz-feedback.bad { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); }
.quiz-final { margin-top: 1rem; text-align: center; }
.quiz-final strong { display: block; font-size: 1.3rem; margin-bottom: .35rem; }

.fun-range-label {
  display: block; margin-bottom: .75rem; font-size: .85rem; color: var(--muted);
}
.fun-range-label input[type=range] {
  display: block; width: 100%; margin-top: .35rem; accent-color: #ff4d1a;
}
.meter-bar {
  height: 12px; border-radius: 999px; background: rgba(255,255,255,.06);
  overflow: hidden; margin: 1rem 0 .5rem;
}
.meter-fill {
  height: 100%; width: 50%; border-radius: 999px;
  background: linear-gradient(90deg, #ff4d1a, #ffc857);
  transition: width .2s ease;
}
.meter-text { margin: 0; color: #fff; font-size: .95rem; }

.fun-home-band {
  padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(209,0,0,.08), transparent 50%), var(--bg);
}
.fun-home-inner {
  display: grid; grid-template-columns: 1.1fr 1.2fr; gap: 1.5rem; align-items: center;
}
.fun-home-copy h2 {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .04em; line-height: .95; margin: .25rem 0 .75rem;
}
.fun-home-copy p { color: var(--muted); margin: 0 0 1.1rem; max-width: 36ch; }
.fun-home-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.fun-home-tile {
  display: flex; flex-direction: column; gap: .25rem;
  padding: 1rem; border-radius: 14px;
  border: 1px solid var(--border); background: var(--surface);
  transition: .15s ease;
}
.fun-home-tile:hover { border-color: rgba(255,77,26,.45); transform: translateY(-2px); }
.fun-home-tile i { color: var(--accent); font-size: 1.25rem; margin-bottom: .2rem; }
.fun-home-tile strong { color: #fff; }
.fun-home-tile span { color: var(--muted); font-size: .8rem; }

/* Konami chaos */
body.zof-chaos { animation: chaosShake .4s ease infinite; }
@keyframes chaosShake {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(25deg) saturate(1.3); }
}
.zof-chaos-toast {
  position: fixed; top: 80px; left: 50%; transform: translateX(-50%);
  z-index: 9999; padding: .75rem 1.25rem; border-radius: 999px;
  background: rgba(209,0,0,.92); color: #fff; font-weight: 800;
  letter-spacing: .08em; box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.zof-rain {
  position: fixed; top: -40px; z-index: 9998; color: rgba(255,77,26,.75);
  font-size: 1.5rem; pointer-events: none;
  animation: zofFall linear forwards;
}
@keyframes zofFall {
  to { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* ===== Turnuva nav dropdown ===== */
.nav-drop {
  position: relative;
}
.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: none;
  border: 0;
  color: var(--muted);
  font: inherit;
  font-size: .92rem;
  font-weight: 500;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.nav-drop.active .nav-drop-toggle,
.nav-drop-toggle:hover {
  color: var(--text);
  border-color: var(--accent);
}
.nav-drop-caret {
  font-size: .65rem;
  opacity: .7;
  transition: transform .2s;
}
.nav-drop.open .nav-drop-caret { transform: rotate(180deg); }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + .55rem);
  left: 0;
  min-width: 220px;
  padding: .65rem .35rem;
  background: #12141c;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 80;
}
.nav-drop.open .nav-drop-menu,
.nav-drop:hover .nav-drop-menu { display: block; }
.nav-drop-label {
  margin: 0 .65rem .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #d4a017;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-drop-menu a {
  display: block;
  padding: .55rem .75rem;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: 6px;
}
.nav-drop-menu a:hover,
.nav-drop-menu a.active {
  background: rgba(255,77,26,.12);
  color: var(--accent-2);
}

.turnuva-side .turnuva-title {
  color: #d4a017;
  letter-spacing: .06em;
}
.turnuva-layout .panel-content { min-width: 0; }

@media (max-width: 960px) {
  .fun-grid, .fun-grid-3, .fun-home-inner { grid-template-columns: 1fr; }
  .nav-drop { width: 100%; }
  .nav-drop-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: .5rem 0;
  }
  .nav-drop-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: .25rem 0 .25rem .75rem;
    min-width: 0;
  }
  .nav-drop.open .nav-drop-menu { display: block; }
  .nav-drop:hover .nav-drop-menu { display: none; }
  .nav-drop.open:hover .nav-drop-menu { display: block; }
}
