/* KafalarMC — Minecraft &6 gold / &f white */
:root {
  --bg: #0c0b09;
  --bg-2: #14120e;
  --bg-3: #1c1914;
  --panel: rgba(28, 24, 18, 0.62);
  --panel-solid: #1a1712;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 170, 0, 0.22);
  --line-strong: rgba(255, 170, 0, 0.45);
  --text: #ffffff; /* &f */
  --muted: #c8c4b8;
  --accent: #ffaa00; /* &6 */
  --accent-2: #ffe28a;
  --accent-hot: #ffd978;
  --mc-gold: #ffaa00;
  --mc-white: #ffffff;
  --glow-purple: rgba(255, 170, 0, 0.35);
  --glow-blue: rgba(255, 226, 138, 0.28);
  --danger: #f87171;
  --success: #55ff55; /* &a-ish */
  --warning: #ffaa00;
  --radius: 1rem;
  --radius-sm: 0.7rem;
  --nav-h: 4.25rem;
  --font-display: "Chakra Petch", sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --shadow-glow: 0 0 40px rgba(255, 170, 0, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 480px at 12% -8%, rgba(255, 170, 0, 0.16), transparent 55%),
    radial-gradient(800px 420px at 92% 4%, rgba(255, 255, 255, 0.06), transparent 50%),
    radial-gradient(700px 500px at 50% 110%, rgba(120, 80, 20, 0.18), transparent 55%),
    linear-gradient(180deg, #12100c 0%, var(--bg) 45%, #080706 100%);
  background-attachment: fixed;
}

/* Soft atmosphere (no pixel grid) */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 480px at 12% -8%, rgba(255, 170, 0, 0.1), transparent 55%),
    radial-gradient(800px 420px at 92% 4%, rgba(255, 255, 255, 0.04), transparent 50%);
}

a { color: var(--accent-2); transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--accent-hot); }

/* ——— Brand ——— */
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  color: var(--text) !important;
  text-shadow: 0 0 24px var(--glow-purple);
}
.brand span {
  background: linear-gradient(120deg, var(--mc-white), var(--mc-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ——— Nav ——— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: var(--nav-h);
  background:
    linear-gradient(180deg, rgba(22, 18, 12, 0.94), rgba(10, 9, 7, 0.88)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 170, 0, 0.035) 0 1px,
      transparent 1px 12px
    );
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.55), transparent) 1;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}
.site-nav__inner { position: relative; }
.site-nav__brand {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}
.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
}
.brand-logo--footer {
  width: 52px;
  height: 52px;
}
.brand-mark {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, #ffe28a 0%, #ffaa00 45%, #8a5a00 100%);
  box-shadow:
    0 0 0 2px rgba(26, 18, 0, 0.85),
    0 0 14px rgba(255, 170, 0, 0.45);
  image-rendering: pixelated;
  border-radius: 2px;
  display: none;
}
.site-nav .navbar-toggler {
  border-color: var(--line-strong);
  box-shadow: none;
}
.site-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 170, 0, 0.25);
}
.site-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--muted) !important;
  padding: 0.45rem 0.85rem !important;
  border-radius: 0.45rem;
  transition: color .15s ease, background .15s ease, box-shadow .15s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: var(--text) !important;
  background: rgba(255, 170, 0, 0.1);
}
.site-nav .nav-link.active {
  color: #1a1200 !important;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a);
  box-shadow: 0 0 16px rgba(255, 170, 0, 0.25);
}
.site-nav .nav-discord {
  color: var(--accent-2) !important;
}

.nav-center {
  gap: 0.15rem;
}

.nav-credit,
.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none !important;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.nav-credit {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--line-strong);
  color: var(--text) !important;
  box-shadow: 0 0 18px rgba(255, 170, 0, 0.15);
}
.nav-credit:hover {
  color: var(--accent-2) !important;
  border-color: rgba(255, 226, 138, 0.55);
}
.nav-user {
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--text) !important;
}
.nav-user:hover {
  border-color: var(--line-strong);
  color: var(--accent-2) !important;
}
.nav-avatar {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  image-rendering: pixelated;
  box-shadow: 0 0 0 1px var(--line-strong);
}

.site-main {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

/* ——— Buttons ——— */
.btn-accent {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-color: #0b0b12;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-hover-color: #0b0b12;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-color: #0b0b12;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 0 !important;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a) !important;
  color: #1a1200 !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0 24px rgba(255, 170, 0, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-accent:hover,
.btn-accent:focus {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 32px rgba(255, 226, 138, 0.4),
    0 10px 24px rgba(0, 0, 0, 0.4);
  color: #1a1200 !important;
}
.btn-outline-light {
  --bs-btn-color: var(--text);
  --bs-btn-border-color: var(--line-strong);
  --bs-btn-hover-bg: rgba(255, 170, 0, 0.12);
  --bs-btn-hover-border-color: var(--accent);
  --bs-btn-hover-color: var(--text);
  --bs-btn-active-bg: rgba(255, 170, 0, 0.18);
  --bs-btn-active-border-color: var(--accent);
  --bs-btn-active-color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.btn-outline-danger {
  --bs-btn-color: #fecaca;
  --bs-btn-border-color: rgba(248, 113, 113, 0.45);
  --bs-btn-hover-bg: rgba(248, 113, 113, 0.15);
  --bs-btn-hover-border-color: var(--danger);
  --bs-btn-hover-color: #fff;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 3.5rem 0 2.25rem;
}
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  width: min(640px, 90vw);
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 170, 0, 0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  background: linear-gradient(120deg, #fff 20%, var(--accent) 55%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 28px rgba(255, 170, 0, 0.35));
}
.hero p {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.12rem;
  line-height: 1.55;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(255, 226, 138, 0.1);
  border: 1px solid rgba(255, 226, 138, 0.28);
  box-shadow: 0 0 20px rgba(255, 226, 138, 0.12);
}

/* ——— Glass panels & cards ——— */
.panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(28, 28, 52, 0.72), rgba(14, 14, 28, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    var(--shadow-glow),
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.panel h1,
.panel h2,
.panel h3,
.panel .h2,
.panel .h3,
.panel .h4,
.panel .h5 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

.card-lite {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(18, 18, 36, 0.55));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.15rem;
  height: 100%;
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}
.card-lite:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow:
    0 0 28px rgba(255, 170, 0, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(255, 170, 0, 0.1), rgba(18, 18, 36, 0.65));
}
.card-lite:disabled,
.card-lite[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.card-lite a,
a.card-lite { color: inherit; text-decoration: none; }
button.card-lite {
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}

/* Store / package cards */
.store-card,
.package-fill.card-lite {
  position: relative;
  overflow: hidden;
}
.store-card::before,
.package-fill.card-lite::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--glow-blue), transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}
.store-card .price,
.pkg-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-2);
  text-shadow: 0 0 16px var(--glow-blue);
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
}
.meta a { color: var(--accent); text-decoration: none; }
.meta a:hover { color: var(--accent-2); }

/* ——— Stats rings ——— */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.stat-ring {
  --p: 72;
  --ring: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 96px;
}
.stat-ring__circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, var(--bg-2) 58%, transparent 59%),
    conic-gradient(var(--ring) calc(var(--p) * 1%), rgba(255, 255, 255, 0.08) 0);
  box-shadow:
    0 0 24px color-mix(in srgb, var(--ring) 35%, transparent),
    inset 0 0 12px rgba(0, 0, 0, 0.35);
}
.stat-ring__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}
.stat-ring__label {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.stat-ring--blue { --ring: var(--accent-2); }
.stat-ring--purple { --ring: var(--accent); }
.stat-ring--hot { --ring: var(--accent-hot); }

/* Fallback without color-mix */
@supports not (color: color-mix(in srgb, red, blue)) {
  .stat-ring__circle {
    box-shadow: 0 0 24px var(--glow-purple), inset 0 0 12px rgba(0, 0, 0, 0.35);
  }
}

/* ——— Timeline ——— */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  list-style: none;
  margin: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent);
  border-radius: 2px;
  opacity: 0.55;
}
.timeline-item {
  position: relative;
  padding: 0.65rem 0 0.65rem 0.85rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.28rem;
  top: 1.05rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--glow-blue);
  border: 2px solid var(--bg);
}

/* ——— Forms ——— */
.form-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.92rem;
}
.form-control,
.form-select {
  background: rgba(8, 8, 16, 0.75);
  border-color: var(--line);
  color: var(--text);
  border-radius: var(--radius-sm);
}
.form-control::placeholder {
  color: rgba(154, 160, 196, 0.55);
}
.form-control:focus,
.form-select:focus {
  background: rgba(12, 12, 24, 0.9);
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 170, 0, 0.2), 0 0 20px rgba(255, 170, 0, 0.12);
}
.form-select option {
  background: var(--panel-solid);
  color: var(--text);
}
.form-text,
.text-secondary {
  color: var(--muted) !important;
}

/* ——— Tables ——— */
.table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--text);
  --bs-table-border-color: var(--line);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
  --bs-table-hover-bg: rgba(255, 170, 0, 0.08);
  --bs-table-hover-color: var(--text);
}
.table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  border-bottom-color: var(--line-strong);
}

/* ——— Alerts ——— */
.alert {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.alert-success {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.35);
  color: #a7f3d0;
}
.alert-danger {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fecaca;
}
.alert-warning {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fde68a;
}
.alert-info {
  background: rgba(255, 226, 138, 0.12);
  border-color: rgba(255, 226, 138, 0.35);
  color: #bae6fd;
}

/* ——— List group (wiki) ——— */
.list-group-item {
  background: transparent !important;
  color: var(--muted) !important;
  border-color: var(--line) !important;
}
.list-group-item:hover,
.list-group-item:focus {
  background: rgba(255, 170, 0, 0.1) !important;
  color: var(--text) !important;
}
.list-group-item.active {
  background: linear-gradient(120deg, rgba(255, 170, 0, 0.25), rgba(255, 226, 138, 0.15)) !important;
  border-color: var(--line-strong) !important;
  color: var(--text) !important;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

/* ——— Content body ——— */
.content-body {
  line-height: 1.75;
  color: var(--muted);
}
.content-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.content-body a { color: var(--mc-gold); }
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
  font-family: var(--font-display);
  color: var(--mc-white);
  margin-top: 1.25rem;
}
.content-body h1 {
  color: var(--mc-gold);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.25;
}
.content-body h2 { color: var(--mc-gold); }
.content-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  padding: 0.12rem 0.4rem;
  border-radius: 0.35rem;
  color: var(--mc-gold);
  background: rgba(255, 170, 0, 0.12);
  border: 1px solid rgba(255, 170, 0, 0.22);
}
.content-body ul,
.content-body ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.content-body li { margin-bottom: 0.45rem; }
.content-body blockquote {
  border-left: 3px solid var(--mc-gold);
  margin: 1rem 0;
  padding: 0.35rem 0 0.35rem 1rem;
  color: var(--muted);
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.content-body th,
.content-body td {
  border: 1px solid var(--line);
  padding: 0.45rem 0.65rem;
}
.content-body strong { color: var(--mc-white); }

.content-body--article {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e8e4da;
}
.content-body--article p { margin-bottom: 1.15rem; }
.content-body--article h2,
.content-body--article h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--mc-white);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}
.content-body--article img {
  display: block;
  width: 100%;
  margin: 1.5rem auto;
  border-radius: 0.85rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.content-body--article figcaption,
.content-body--article img + em {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  color: #9aa3ad;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
}
.content-body--article blockquote {
  margin: 1.35rem 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--mc-gold);
  border-radius: 0 0.75rem 0.75rem 0;
  background: rgba(255, 170, 0, 0.06);
  color: #f0ebe0;
}
.content-body--article a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-body--article a:hover { color: var(--mc-gold); }

/* TinyMCE admin chrome */
.tox-tinymce {
  border-radius: var(--radius-sm) !important;
  border-color: var(--line-strong) !important;
  box-shadow: 0 0 24px rgba(255, 170, 0, 0.08);
}
.tox .tox-toolbar,
.tox .tox-menubar,
.tox .tox-edit-area__iframe {
  background: #14120e !important;
}

/* Admin nav */
.admin-nav {
  padding: 1rem 1.1rem 1.05rem;
  background:
    radial-gradient(320px 120px at 0% 0%, rgba(255, 170, 0, 0.1), transparent 60%),
    var(--panel);
  border-color: rgba(255, 170, 0, 0.28);
}
.admin-nav__head {
  margin-bottom: 0.75rem;
}
.admin-nav__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mc-gold);
}
.admin-nav__sub {
  font-size: 0.8rem;
}
.admin-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.admin-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted) !important;
  text-decoration: none !important;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.admin-nav__icon {
  opacity: 0.8;
  font-size: 0.85rem;
}
.admin-nav__link:hover {
  color: var(--mc-white) !important;
  border-color: var(--line-strong);
}
.admin-nav__link.is-active {
  color: #1a1200 !important;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a);
  border-color: transparent;
}
.admin-nav__link.is-active .admin-nav__icon { opacity: 1; }

/* Blog cover preview (admin) */
.blog-cover-preview {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #1a1510;
}
.blog-cover-preview img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

@keyframes blog-cover-in {
  from { opacity: 0; transform: translate3d(-10px, 8px, 0) scale(0.98); }
  to { opacity: 1; transform: none; }
}

/* ——— Player head utility ——— */
.mc-head {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  image-rendering: pixelated;
  box-shadow:
    0 0 0 2px var(--line-strong),
    0 0 20px var(--glow-purple);
}
.mc-head-sm {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

/* ——— Glow utilities ——— */
.glow-text {
  text-shadow: 0 0 18px var(--glow-purple);
}
.glow-blue {
  text-shadow: 0 0 18px var(--glow-blue);
}
.text-accent { color: var(--accent) !important; }
.text-accent-2 { color: var(--accent-2) !important; }
.divider-glow {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  margin: 1.5rem 0;
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  margin-top: 3.5rem;
  padding: 2.4rem 0 1.5rem;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.45), transparent) 1;
  background:
    linear-gradient(180deg, rgba(12, 10, 7, 0.2), rgba(8, 7, 5, 0.95)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 170, 0, 0.03) 0 1px,
      transparent 1px 14px
    );
  color: var(--muted);
  overflow: hidden;
}
.site-footer__ore {
  position: absolute;
  inset: auto -10% -40% auto;
  width: 42%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.12), transparent 65%);
  pointer-events: none;
}
.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: 1.75rem 2rem;
  align-items: start;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}
.site-footer__tagline {
  margin: 0 0 0.35rem;
  color: var(--mc-white);
  font-family: var(--font-display);
  font-weight: 600;
}
.site-footer__note { margin: 0 0 0.85rem; max-width: 28rem; }
.site-footer__ip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 170, 0, 0.28);
  background: rgba(255, 170, 0, 0.06);
}
.site-footer__ip code {
  color: var(--accent-2);
  font-size: 0.92rem;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.15rem;
}
.site-footer__heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mc-gold);
  margin-bottom: 0.65rem;
}
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--accent-2);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.9rem;
}
.footer-links--col {
  flex-direction: column;
  gap: 0.45rem;
}
.site-footer__contact-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--mc-white);
  margin-bottom: 0.65rem;
}
.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.site-footer__contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8f877a;
  margin-bottom: 0.15rem;
}
.site-footer__contact-list a,
.site-footer__contact-list span {
  color: var(--mc-white);
  font-size: 0.95rem;
  word-break: break-word;
}
.site-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: #8f877a;
}
.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.site-footer__bottom-links a {
  color: #a39c8f;
  font-size: 0.8rem;
}
.site-footer__bottom-links a:hover { color: var(--mc-gold); }

.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--mc-white);
}
.legal-page__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.legal-page__nav-link {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 0, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted) !important;
  text-decoration: none !important;
  font-size: 0.82rem;
  font-weight: 600;
}
.legal-page__nav-link:hover,
.legal-page__nav-link.is-active {
  color: #1a1200 !important;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a);
  border-color: transparent;
}
.legal-page__body { padding: 1.35rem 1.4rem 1.5rem; }
.legal-admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* ——— Support (player) ——— */
.support-page-hero {
  position: relative;
  min-height: clamp(240px, 36vh, 340px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.support-page-hero--compact { min-height: clamp(180px, 26vh, 240px); }
.support-page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.support-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: credit-hero-drift 18s ease-in-out infinite alternate;
}
.support-page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 5, 0.72) 48%, rgba(8, 7, 5, 0.4) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.9), transparent 55%),
    radial-gradient(480px 220px at 20% 80%, rgba(255, 170, 0, 0.16), transparent 70%);
  pointer-events: none;
}
.support-page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 2.4rem 0 2rem;
  max-width: 640px;
}
.support-page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin: 0 0 0.55rem;
  color: var(--mc-white);
}
.support-page-hero__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 32rem;
}
.support-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.support-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 0, 0.3);
  background: rgba(12, 10, 7, 0.55);
}
.support-stat strong {
  font-family: var(--font-display);
  color: var(--mc-gold);
  font-size: 1.1rem;
}
.support-stat span {
  font-size: 0.82rem;
  color: var(--muted);
}
.support-page { animation: credit-rise 0.55s ease 0.08s both; }
.support-back {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted) !important;
  text-decoration: none !important;
}
.support-back:hover { color: var(--mc-gold) !important; }

.support-board {
  border: 1px solid rgba(255, 170, 0, 0.26);
  border-radius: 1.15rem;
  background:
    radial-gradient(480px 180px at 0% 0%, rgba(255, 170, 0, 0.08), transparent 60%),
    rgba(18, 15, 11, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.support-board__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 170, 0, 0.16);
}
.support-list {
  display: flex;
  flex-direction: column;
}
.support-ticket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: background .15s ease;
}
.support-ticket:first-child { border-top: 0; }
.support-ticket:hover {
  background: rgba(255, 170, 0, 0.05);
  color: var(--text);
}
.support-ticket__id {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mc-gold);
}
.support-ticket__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--mc-white);
  line-height: 1.25;
}
.support-ticket:hover .support-ticket__title { color: var(--mc-gold); }
.support-ticket__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
}
.support-ticket__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}
.support-ticket__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  flex: 0 0 auto;
}
.support-ticket__cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mc-gold);
  opacity: 0.75;
}
.support-ticket:hover .support-ticket__cta { opacity: 1; }

.support-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.support-badge--open {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.1);
}
.support-badge--answered {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.1);
}
.support-badge--waiting {
  color: #7dd3fc;
  border-color: rgba(125, 211, 252, 0.4);
  background: rgba(125, 211, 252, 0.1);
}
.support-badge--closed {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.1);
}

.support-empty {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-color: rgba(255, 170, 0, 0.28);
}
.support-empty__icon {
  font-size: 2rem;
  color: var(--mc-gold);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}
.support-empty__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--mc-white);
}

.support-form {
  border-color: rgba(255, 170, 0, 0.3);
  box-shadow: 0 0 36px rgba(255, 170, 0, 0.08);
}
.support-tips {
  padding: 1.25rem 1.3rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 170, 0, 0.22);
  background:
    radial-gradient(260px 120px at 100% 0%, rgba(255, 170, 0, 0.1), transparent 60%),
    rgba(18, 15, 11, 0.72);
}
.support-tips__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.support-tips__list li { margin-bottom: 0.65rem; line-height: 1.45; }
.support-tips__list li:last-child { margin-bottom: 0; }

.support-thread { max-width: 820px; }
.support-thread__head {
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 170, 0, 0.28);
  background:
    radial-gradient(420px 160px at 0% 0%, rgba(255, 170, 0, 0.1), transparent 60%),
    rgba(18, 15, 11, 0.82);
}
.support-thread__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.support-thread__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--mc-white);
  line-height: 1.2;
}
.support-thread__feed {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.support-bubble {
  padding: 1rem 1.1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(22, 18, 12, 0.72);
}
.support-bubble--staff {
  border-color: rgba(255, 170, 0, 0.35);
  background:
    radial-gradient(280px 120px at 100% 0%, rgba(255, 170, 0, 0.12), transparent 60%),
    rgba(28, 22, 12, 0.88);
  box-shadow: 0 0 24px rgba(255, 170, 0, 0.06);
}
.support-bubble__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.support-bubble__avatar {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 170, 0, 0.3);
  image-rendering: pixelated;
  background: #1a1510;
}
.support-bubble__head strong { color: var(--mc-white); }
.support-bubble__time {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--muted);
}
.support-bubble__body {
  color: #e8e4da;
  line-height: 1.65;
  word-break: break-word;
}
.support-reply {
  border-color: rgba(255, 170, 0, 0.3);
}
.support-closed {
  text-align: center;
  border-color: rgba(248, 113, 113, 0.3);
  background: rgba(248, 113, 113, 0.06);
}

@media (max-width: 575.98px) {
  .support-ticket {
    flex-direction: column;
    align-items: flex-start;
  }
  .support-ticket__side {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-page-hero__media img { animation: none; }
}

@media (max-width: 991.98px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .site-footer__cols { grid-template-columns: 1fr; }
}

/* ——— Mobile ——— */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.85rem;
    border-radius: var(--radius);
    background: rgba(12, 12, 24, 0.92);
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
  .nav-center {
    margin-bottom: 0.75rem !important;
  }
  .site-nav .nav-link {
    padding: 0.55rem 0.9rem !important;
  }
  .hero {
    padding: 2.25rem 0 1.5rem;
  }
  .panel {
    padding: 1.1rem 1.15rem;
  }
}

@media (max-width: 575.98px) {
  .brand { font-size: 1.3rem; }
  .stats-row { justify-content: center; }
  .nav-credit,
  .nav-user {
    font-size: 0.82rem;
  }
}

/* ——— Full-bleed Minecraft hero + slider ——— */
.site-main--wide { padding: 0; }
.site-main--wide > .hero-bleed { margin-top: 0; }
.hero-bleed {
  position: relative;
  min-height: min(82vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: hero-drift 28s ease-in-out infinite alternate;
}
.hero-bleed__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.94) 0%, rgba(10, 8, 5, 0.72) 46%, rgba(10, 8, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 8, 5, 0.2) 0%, rgba(10, 8, 5, 0.5) 55%, rgba(10, 8, 5, 0.96) 100%);
}
.hero-slider__dots {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  gap: 0.4rem;
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.hero-dot.is-active {
  width: 22px;
  background: var(--mc-gold);
  box-shadow: 0 0 12px rgba(255, 170, 0, 0.55);
}
.hero-bleed__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 4.5rem;
  padding-bottom: 2.75rem;
}
@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

.hero-online {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  box-shadow: 0 0 24px rgba(255, 170, 0, 0.12);
}
.hero-online__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.2rem;
  align-self: center;
  background: #888;
}
.hero-online.is-live .hero-online__dot {
  background: #55ff55;
  box-shadow: 0 0 10px rgba(85, 255, 85, 0.8);
  animation: pulse-online 1.6s ease-in-out infinite;
}
.hero-online.is-offline .hero-online__dot {
  background: #ff5555;
}
.hero-online__count {
  color: var(--mc-gold);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.hero-online__sep,
.hero-online__max {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.hero-online__label {
  color: var(--mc-white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-left: 0.15rem;
}
@keyframes pulse-online {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.text-gold { color: var(--mc-gold) !important; }
.online-heads {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 0.85rem 0 0.25rem;
}
.online-heads__avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  image-rendering: pixelated;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.35);
  transition: transform .15s ease;
}
.online-heads__avatar:hover { transform: translateY(-2px); }
.online-heads__more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mc-gold);
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 170, 0, 0.08);
}

.hero-brand { font-size: 1.15rem; letter-spacing: 0.04em; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin: 0.35rem 0 0.75rem;
  background: linear-gradient(90deg, #fff 0%, #fff 35%, var(--mc-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead { color: var(--muted); font-size: 1.08rem; margin: 0; max-width: 34rem; }
.hero-slide-caption {
  margin-top: 0.75rem;
  color: var(--mc-gold) !important;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.hero-showcase__visual {
  margin: -0.35rem -0.35rem 1rem;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}
.hero-showcase__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-card__media {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 0;
  border-bottom: 1px solid rgba(255, 170, 0, 0.14);
}
.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: saturate(1.05) contrast(1.05);
}
.feature-card:hover .feature-card__media img { transform: scale(1.08); }
.world-banner {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  align-items: end;
}
.world-banner__media {
  position: absolute;
  inset: 0;
}
.world-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.world-banner__body {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding: 0.25rem;
}
.module-card--off { opacity: 0.72; }
.module-badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.module-badge--on {
  color: #065f46;
  background: rgba(52, 211, 153, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.45);
}
.module-badge--off {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
}
.store-hero__media {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(42%, 280px);
  opacity: 0.35;
  pointer-events: none;
}
.store-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(90deg, transparent, #000 35%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%);
}
.hero-ip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.ip-copy code {
  color: var(--accent-2);
  font-size: 0.95rem;
}
.ip-copy:hover {
  border-color: rgba(255, 226, 138, 0.55);
  box-shadow: 0 0 18px rgba(255, 226, 138, 0.25);
}

.stat-card {
  text-align: left;
}
.stat-label { margin-bottom: 0.35rem; }
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  text-shadow: 0 0 20px var(--glow-purple);
  line-height: 1.15;
}
.stat-value-sm { font-size: 1.5rem; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.card-title { color: var(--text); }
.teaser-card {
  background:
    radial-gradient(280px 120px at 100% 0%, rgba(255, 226, 138, 0.12), transparent 60%),
    var(--panel);
}

/* ——— Store / kredi ——— */
.store-status {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--line);
}
.store-status--pending { color: #fbbf24; border-color: rgba(251, 191, 36, 0.4); background: rgba(251, 191, 36, 0.08); }
.store-status--approved { color: #4ade80; border-color: rgba(74, 222, 128, 0.4); background: rgba(74, 222, 128, 0.08); }
.store-status--rejected { color: #f87171; border-color: rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.08); }

.credit-hero {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.credit-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.credit-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  transform: scale(1.04);
  animation: credit-hero-drift 18s ease-in-out infinite alternate;
}
.credit-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 5, 0.72) 42%, rgba(8, 7, 5, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.88) 0%, transparent 55%),
    radial-gradient(520px 240px at 18% 80%, rgba(255, 170, 0, 0.18), transparent 70%);
  pointer-events: none;
}
.credit-hero__inner {
  position: relative;
  z-index: 2;
  padding: 2.75rem 0 2.4rem;
  max-width: 720px;
  animation: credit-rise 0.6s ease both;
}
.credit-hero__brand {
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  margin-bottom: 0.35rem;
}
.credit-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: 0.01em;
  margin: 0 0 0.65rem;
  color: var(--mc-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.credit-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.credit-balance {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-top: 1.15rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 0, 0.35);
  background: rgba(12, 10, 7, 0.55);
  backdrop-filter: blur(8px);
  animation: credit-rise 0.7s ease 0.1s both;
}
.credit-balance__label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.credit-balance__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--mc-gold);
}
.credit-balance__unit {
  font-size: 0.85rem;
  color: var(--muted);
}

.credit-page {
  animation: credit-rise 0.55s ease 0.12s both;
}
.credit-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 0, 0.28);
  background: rgba(14, 12, 9, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.credit-tabs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted) !important;
  text-decoration: none !important;
  transition: color .15s ease, background .15s ease, box-shadow .15s ease;
}
.credit-tabs__btn:hover {
  color: var(--mc-white) !important;
  background: rgba(255, 255, 255, 0.04);
}
.credit-tabs__btn.is-active {
  color: #1a1200 !important;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a);
  box-shadow: 0 6px 18px rgba(255, 170, 0, 0.28);
}
.credit-send__user {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}
.credit-send__avatar {
  width: 40px;
  height: 40px;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 170, 0, 0.35);
  image-rendering: pixelated;
  background: #1a1510;
}
.credit-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--mc-white);
}

.credit-eft {
  border: 1px solid rgba(255, 170, 0, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 160px at 100% 0%, rgba(255, 170, 0, 0.1), transparent 60%),
    rgba(22, 18, 12, 0.72);
  padding: 1.25rem 1.35rem 0.85rem;
}
.credit-eft__head {
  margin-bottom: 0.85rem;
}
.credit-eft__rows {
  display: flex;
  flex-direction: column;
}
.credit-eft__row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.credit-eft__label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.credit-eft__value {
  font-weight: 600;
  color: var(--mc-white);
  word-break: break-word;
}
.credit-eft__iban {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--accent-2);
}
.credit-copy.is-copied {
  border-color: rgba(74, 222, 128, 0.55) !important;
  color: #4ade80 !important;
}

.credit-form {
  border-color: rgba(255, 170, 0, 0.32);
  box-shadow: 0 0 36px rgba(255, 170, 0, 0.08);
}
.credit-gate {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 170, 0, 0.28);
  background: rgba(255, 170, 0, 0.04);
}
.credit-gate__text {
  color: var(--muted);
  margin: 0;
}
.credit-input {
  position: relative;
}
.credit-input .form-control {
  padding-right: 4.75rem;
}
.credit-rate {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 0, 0.4);
  background: rgba(255, 170, 0, 0.1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-2);
  animation: credit-rise 0.7s ease 0.08s both;
}
.credit-rate__eq {
  color: var(--muted);
  font-weight: 600;
}
.credit-amount__hint {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--accent-2);
}
.credit-input__suffix {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--mc-gold);
  pointer-events: none;
  white-space: nowrap;
}

.credit-steps {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(20, 17, 12, 0.55);
  height: 100%;
}
.credit-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: none;
}
.credit-steps__list > li {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}
.credit-steps__num {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1200;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a);
  box-shadow: 0 0 18px rgba(255, 170, 0, 0.25);
}
.credit-steps__list strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--mc-white);
  font-family: var(--font-display);
  font-size: 0.98rem;
}

.credit-requests__table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
.credit-requests__table td {
  border-bottom-color: rgba(255, 255, 255, 0.05) !important;
  vertical-align: middle;
}

@keyframes credit-hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}
@keyframes credit-rise {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 767.98px) {
  .credit-eft__row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "label copy"
      "value value";
    gap: 0.35rem 0.75rem;
  }
  .credit-eft__label { grid-area: label; }
  .credit-eft__value { grid-area: value; }
  .credit-copy { grid-area: copy; justify-self: end; }
  .credit-hero__inner { padding: 2.1rem 0 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .credit-hero__media img,
  .credit-hero__inner,
  .credit-balance,
  .credit-page {
    animation: none;
  }
}

/* ——— Announcement ticker (infinite) ——— */
.announce-bar {
  --announce-duration: 28s;
  display: flex;
  align-items: stretch;
  min-height: 2.5rem;
  background:
    linear-gradient(90deg, rgba(255, 170, 0, 0.08), transparent 18%, transparent 82%, rgba(255, 170, 0, 0.08)),
    linear-gradient(180deg, #16120a 0%, #0f0d09 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.announce-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.07), transparent);
  background-size: 220% 100%;
  animation: announce-sheen 7s ease-in-out infinite;
  z-index: 0;
}
.announce-bar__label {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1200;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a 55%, var(--mc-gold));
  background-size: 180% 100%;
  animation: announce-label-glow 3.2s ease-in-out infinite;
  box-shadow: 8px 0 24px rgba(0, 0, 0, 0.35);
}
.announce-bar__track-wrap {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.announce-bar__marquee {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: announce-scroll var(--announce-duration) linear infinite;
}
.announce-bar:hover .announce-bar__marquee {
  animation-play-state: paused;
}
.announce-bar__track {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.5rem 0;
}
.announce-bar__item {
  display: inline-block;
  padding: 0 1.25rem;
  color: var(--mc-white) !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color .15s ease, text-shadow .15s ease;
}
.announce-bar__item:hover {
  color: var(--mc-gold) !important;
  text-shadow: 0 0 16px rgba(255, 170, 0, 0.45);
}
.announce-bar__sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.15rem;
  border-radius: 1px;
  background: var(--mc-gold);
  box-shadow: 0 0 10px rgba(255, 170, 0, 0.65);
  transform: rotate(45deg);
  opacity: 0.75;
  animation: announce-diamond 1.8s ease-in-out infinite;
}
@keyframes announce-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes announce-sheen {
  0%, 100% { background-position: 100% 0; opacity: 0.35; }
  50% { background-position: 0% 0; opacity: 0.7; }
}
@keyframes announce-label-glow {
  0%, 100% { background-position: 0% 50%; filter: brightness(1); }
  50% { background-position: 100% 50%; filter: brightness(1.08); }
}
@keyframes announce-diamond {
  0%, 100% { opacity: 0.45; transform: rotate(45deg) scale(0.9); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .announce-bar__marquee,
  .announce-bar::before,
  .announce-bar__label,
  .announce-bar__sep { animation: none !important; }
}

/* ——— Minecraft world accents ——— */
.mc-site .mc-voxels { display: none !important; }
.hero-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(255, 226, 138, 0.35);
  background: rgba(255, 226, 138, 0.08);
}
.hero-blocks {
  position: absolute;
  right: 4%;
  bottom: 8%;
  display: flex;
  gap: 0.45rem;
  opacity: 0.55;
  z-index: 0;
}
.mc-block {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  box-shadow: inset -3px -3px 0 rgba(0,0,0,0.25), inset 3px 3px 0 rgba(255,255,255,0.12);
}
.mc-block--dirt { background: #8b6b3f; }
.mc-block--grass { background: linear-gradient(180deg, #5a9f3d 40%, #8b6b3f 40%); }
.mc-block--stone { background: #8a8a8a; }
.mc-block--diamond { background: linear-gradient(135deg, #ffe28a, #ffe28a); box-shadow: 0 0 16px rgba(56,189,248,0.45), inset -2px -2px 0 rgba(0,0,0,0.2); }

.hero-showcase {
  position: relative;
  overflow: hidden;
}
.hero-showcase__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.hero-showcase__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.mc-head--xl {
  width: 72px;
  height: 72px;
  border-radius: 0.85rem;
  border: 2px solid rgba(255, 170, 0, 0.45);
  box-shadow: 0 0 24px rgba(255, 170, 0, 0.25);
  image-rendering: pixelated;
}

.feature-card {
  --feature-accent: var(--mc-gold);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 170, 0, 0.2);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent 40%),
    rgba(16, 14, 10, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 170, 0, 0.5);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38), 0 0 32px rgba(255, 170, 0, 0.18);
}
.feature-card__tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  min-width: 2rem;
  padding: 0.15rem 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1200;
  background: linear-gradient(120deg, var(--feature-accent), #ffe28a);
  border-radius: 0.35rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.feature-card__glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(8, 7, 5, 0.55), transparent);
  pointer-events: none;
}
.feature-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.15rem;
}
.feature-card__bar {
  display: block;
  width: 2rem;
  height: 3px;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--feature-accent), transparent);
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--mc-white);
}
.feature-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}
.feature-card--emerald { --feature-accent: #55ff55; }
.feature-card--gold { --feature-accent: #ffaa00; }
.feature-card--blue { --feature-accent: #ffe28a; }
.feature-card--purple { --feature-accent: #ffd978; }
.feature-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  box-shadow: inset -3px -3px 0 rgba(0,0,0,0.28), inset 3px 3px 0 rgba(255,255,255,0.12);
}
.feature-card--emerald .feature-card__icon { background: linear-gradient(180deg, #4ade80, #166534); }
.feature-card--gold .feature-card__icon { background: linear-gradient(180deg, #fbbf24, #b45309); }
.feature-card--blue .feature-card__icon { background: linear-gradient(180deg, #ffe28a, #b45309); }
.feature-card--purple .feature-card__icon { background: linear-gradient(180deg, #ffd978, #b45309); }
.teaser-card--shop {
  background:
    radial-gradient(280px 120px at 100% 0%, rgba(255, 170, 0, 0.18), transparent 60%),
    var(--panel);
}

/* ——— Home news (centered featured post) ——— */
.home-news {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 0 0.5rem;
}
.home-news__head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.home-news__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: 0.01em;
  margin: 0 0 0.55rem;
  color: var(--mc-white);
}
.home-news__lead {
  margin: 0 auto;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}
.home-news__empty { margin-bottom: 1.25rem; }
.home-news__card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #14110d;
  color: var(--text);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.home-news__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.48), 0 0 32px rgba(255, 170, 0, 0.1);
  color: var(--text);
}
.home-news__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #1a1510;
}
.home-news__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.home-news__card:hover .home-news__media img { transform: scale(1.05); }
.home-news__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem 1.75rem 1.7rem;
}
.home-news__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.55rem;
  color: var(--mc-white);
}
.home-news__card:hover .home-news__card-title { color: var(--mc-gold); }
.home-news__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: #9aa3ad;
}
.home-news__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}
.home-news__excerpt {
  margin: 0 0 1.15rem;
  color: #d7d2c6;
  font-size: 0.98rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news__more {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--mc-gold);
}
.home-news__more span {
  display: inline-block;
  transition: transform .15s ease;
}
.home-news__card:hover .home-news__more span { transform: translateX(4px); }
.home-news__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.home-news__all {
  min-width: 14rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-radius: 0.65rem;
  padding: 0.8rem 1.6rem;
}

@media (max-width: 767.98px) {
  .home-news__card { grid-template-columns: 1fr; }
  .home-news__media { min-height: 200px; aspect-ratio: 16 / 10; }
  .home-news__body { padding: 1.25rem 1.2rem 1.35rem; }
}

/* ——— Blog / news cards ——— */
.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 42%),
    rgba(22, 18, 12, 0.78);
  backdrop-filter: blur(12px);
  color: var(--text);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38), 0 0 28px rgba(255, 170, 0, 0.12);
  color: var(--text);
}
.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1510;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1200;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.news-card__datechip {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.6rem;
  padding: 0.35rem 0.4rem;
  border-radius: 0.55rem;
  background: rgba(10, 9, 7, 0.78);
  border: 1px solid rgba(255, 170, 0, 0.35);
  backdrop-filter: blur(8px);
  line-height: 1;
}
.news-card__datechip strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--mc-gold);
}
.news-card__datechip small {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.05rem 1.15rem;
  border-top: 1px solid rgba(255, 170, 0, 0.12);
}
.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.news-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.55rem;
  color: var(--mc-white);
}
.news-card:hover .news-card__title { color: var(--mc-gold); }
.news-card__excerpt {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-card__more {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--mc-gold);
}
.news-card__more::after {
  content: " →";
  transition: margin-left .15s ease;
}
.news-card:hover .news-card__more::after { margin-left: 0.25rem; }

/* ——— Blog index (2-col Origin-style tiles) ——— */
.blog-index {
  max-width: 980px;
}
.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem 1.75rem;
}
.blog-tile {
  display: block;
  color: var(--text);
  transition: transform .2s ease;
}
.blog-tile:hover { color: var(--text); transform: translateY(-3px); }
.blog-tile__media {
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
  overflow: hidden;
  background: #16120d;
  margin-bottom: 0.95rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.blog-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.blog-tile:hover .blog-tile__media img { transform: scale(1.04); }
.blog-tile__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  color: var(--mc-white);
}
.blog-tile:hover .blog-tile__title { color: var(--mc-gold); }
.blog-tile__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  color: #9aa3ad;
}
.blog-tile__cat {
  font-weight: 600;
  color: #7dd3fc;
}
.blog-tile__cat--duyurular,
.blog-tile__cat--duyuru { color: #7dd3fc; }
.blog-tile__cat--guncelleme,
.blog-tile__cat--güncelleme,
.blog-tile__cat--dev { color: #86efac; }
.blog-tile__sep { opacity: 0.7; }
.blog-tile__excerpt {
  margin: 0;
  color: #c8c4b8;
  font-size: 0.95rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .blog-index__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ——— Blog article ——— */
.blog-article {
  padding-bottom: 0;
}
.blog-article__top {
  max-width: 860px;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}
.blog-article__hero {
  position: relative;
  margin: 0 0 1.75rem;
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  min-height: 220px;
  background: #14110d;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.blog-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-article__hero-tags {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  z-index: 1;
}
.blog-article__tag {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(59, 130, 246, 0.85);
  backdrop-filter: blur(6px);
}
.blog-article__tag--gold {
  color: #1a1200;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a);
}
.blog-article__header { margin-bottom: 1.5rem; }
.blog-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.65rem;
  color: var(--mc-white);
}
.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: #9aa3ad;
}
.blog-article__cat {
  font-weight: 600;
  color: #7dd3fc;
}
.blog-article__sep { opacity: 0.7; }
.blog-article__content { margin-bottom: 2rem; }
.blog-article__back a {
  color: var(--muted) !important;
  text-decoration: none !important;
}
.blog-article__back a:hover { color: var(--mc-gold) !important; }

.blog-more {
  margin-top: 1rem;
  padding: 3rem 0 3.25rem;
  background:
    linear-gradient(180deg, #efe7d6 0%, #e7dcc6 100%);
  color: #1a1610;
}
.blog-more__head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.blog-more__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #1a1610;
}
.blog-more__lead {
  margin: 0;
  color: #5c564a;
  font-size: 1rem;
}
.blog-more__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 860px;
  margin: 0 auto;
}
.blog-more__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  color: #1a1610;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-more__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  color: #1a1610;
}
.blog-more__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd4c4;
}
.blog-more__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.blog-more__card:hover .blog-more__media img { transform: scale(1.04); }
.blog-more__body {
  padding: 1rem 1.1rem 1.15rem;
  background: #16120d;
  color: #fff;
}
.blog-more__card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #fff;
  line-height: 1.3;
}
.blog-more__card:hover .blog-more__card-title { color: var(--mc-gold); }
.blog-more__date {
  font-size: 0.82rem;
  color: #9aa3ad;
}

@media (max-width: 767.98px) {
  .blog-article__hero { aspect-ratio: 16 / 10; }
  .blog-more__grid { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
  .hero-blocks { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .home-news__card,
  .blog-tile,
  .blog-more__card,
  .news-card {
    animation: none;
    transition: none;
  }
}

/* ——— Auth shell (login / register) ——— */
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: calc(100vh - var(--nav-h) - 2.5rem);
  background: #0a0907;
}
.auth-shell__visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.auth-shell__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: credit-hero-drift 20s ease-in-out infinite alternate;
}
.auth-shell__visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 10%, rgba(10, 9, 7, 0.55) 70%, rgba(10, 9, 7, 0.96) 100%),
    linear-gradient(0deg, rgba(10, 9, 7, 0.75), transparent 45%),
    radial-gradient(420px 220px at 30% 70%, rgba(255, 170, 0, 0.16), transparent 70%);
}
.auth-shell__visual-copy {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.75rem;
  z-index: 1;
  max-width: 22rem;
  animation: credit-rise 0.55s ease both;
}
.auth-shell__visual-copy .brand {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.auth-shell__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.45;
}
.auth-shell__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background:
    radial-gradient(420px 220px at 80% 0%, rgba(255, 170, 0, 0.1), transparent 60%),
    #0c0b09;
}
.auth-card {
  width: min(100%, 430px);
  padding: 1.6rem 1.45rem 1.45rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 170, 0, 0.28);
  background:
    radial-gradient(280px 140px at 0% 0%, rgba(255, 170, 0, 0.08), transparent 60%),
    rgba(22, 18, 12, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  animation: credit-rise 0.55s ease 0.06s both;
}
.auth-card__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mc-gold);
  font-weight: 700;
}
.auth-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  color: var(--mc-white);
}
.auth-card__lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
}
.auth-card__link {
  font-size: 0.88rem;
  color: var(--accent-2);
  text-decoration: none;
}
.auth-card__link:hover { color: var(--accent-hot); }
.auth-card__footer {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.auth-card__footer a {
  color: var(--mc-gold);
  font-weight: 600;
  text-decoration: none;
}
.auth-form .form-control-lg {
  min-height: 3rem;
}

/* ——— Profile ——— */
.profile-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: clamp(260px, 38vh, 380px);
  display: flex;
  align-items: flex-end;
}
.profile-hero__media {
  position: absolute;
  inset: 0;
}
.profile-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: credit-hero-drift 18s ease-in-out infinite alternate;
}
.profile-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 5, 0.7) 48%, rgba(8, 7, 5, 0.4) 100%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.9) 0%, transparent 58%),
    radial-gradient(480px 220px at 20% 80%, rgba(255, 170, 0, 0.16), transparent 70%);
}
.profile-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 1.35rem 1.75rem;
  padding: 2.4rem 0 1.85rem;
  animation: credit-rise 0.55s ease both;
}
.profile-hero__skin {
  flex: 0 0 auto;
  width: 110px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}
.profile-hero__skin img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
}
.profile-hero__skin img.is-fallback {
  width: 88px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
}
.profile-hero__name {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--mc-white);
  letter-spacing: 0.01em;
}
.profile-hero__brand { font-size: 1.05rem; }
.profile-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.profile-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 170, 0, 0.3);
  background: rgba(12, 10, 7, 0.55);
  backdrop-filter: blur(8px);
}
.profile-stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.profile-stat strong {
  font-family: var(--font-display);
  color: var(--mc-gold);
  font-size: 1.05rem;
}
.profile-stat__unit {
  font-size: 0.82rem;
  color: var(--muted);
}

.profile-tabs {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(20, 17, 12, 0.65);
}
.profile-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}
.profile-tab.is-active {
  color: #1a1200;
  background: linear-gradient(120deg, var(--mc-gold), #ffe28a);
}
.profile-panel { display: none; }
.profile-panel.is-active { display: block; animation: credit-rise 0.35s ease both; }

.profile-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 170, 0, 0.22);
  background:
    radial-gradient(280px 120px at 100% 0%, rgba(255, 170, 0, 0.08), transparent 60%),
    rgba(22, 18, 12, 0.72);
}
.profile-info__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}
.profile-info__row span { color: var(--muted); }
.profile-info__row strong {
  color: var(--mc-white);
  text-align: right;
  word-break: break-word;
}
.profile-ticket-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.profile-ticket-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.profile-ticket-list a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0;
  text-decoration: none;
  color: inherit;
}
.profile-ticket-list a:hover strong { color: var(--mc-gold); }

@media (max-width: 991.98px) {
  .auth-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .auth-shell__visual {
    min-height: 220px;
  }
  .auth-shell__visual-shade {
    background:
      linear-gradient(0deg, rgba(10, 9, 7, 0.92), rgba(10, 9, 7, 0.25) 55%),
      radial-gradient(420px 180px at 50% 80%, rgba(255, 170, 0, 0.14), transparent 70%);
  }
  .profile-hero__inner {
    flex-wrap: wrap;
  }
  .profile-hero__skin { width: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .auth-shell__visual img,
  .auth-card,
  .auth-shell__visual-copy,
  .profile-hero__media img,
  .profile-hero__inner,
  .profile-panel.is-active {
    animation: none;
  }
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .card-lite:hover { transform: none; }
  .news-card:hover { transform: none; }
  .news-card:hover .news-card__media img { transform: none; }
  .btn-accent:hover { transform: none; }
  .package-card:hover { transform: none; }
}
