:root {
  /* surfaces - true neutral, no blue and no brown cast */
  --bg: #0a0a0b;
  --s-1: #101011;
  --s-2: #161618;
  --s-3: #1e1e21;
  --s-4: #2a2a2e;

  /* the one accent: card-room red */
  --red: #e4232f;
  --red-2: #ff3b47;
  --red-3: #b3141f;
  --red-glow: rgba(228, 35, 47, .38);

  /* rank only */
  --gold: #ffc83d;
  --gold-2: #e0a418;
  --gold-glow: rgba(255, 200, 61, .3);

  /* live signal only */
  --green: #2ecc71;

  /* text */
  --tx: #f6f6f7;
  --tx-2: #bdbec2;
  --tx-3: #8a8b90;
  --tx-4: #5d5e63;

  /* lines */
  --ln: rgba(255, 255, 255, .075);
  --ln-2: rgba(255, 255, 255, .15);
  --ln-red: rgba(228, 35, 47, .4);
  --ln-gold: rgba(255, 200, 61, .32);

  --sh-1: 0 1px 2px rgba(0, 0, 0, .5);
  --sh-2: 0 16px 38px -16px rgba(0, 0, 0, .85);
  --sh-3: 0 38px 90px -38px rgba(0, 0, 0, 1);

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --f: "Heebo", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --wrap: 1220px;
  --gut: clamp(18px, 4vw, 44px);

  /* legacy aliases used by admin.css and a few inline view styles */
  --ink: var(--tx);
  --ink-2: var(--tx-2);
  --muted: var(--tx-3);
  --muted-2: var(--tx-3);
  --cream: var(--tx);
  --cream-2: var(--tx-2);
  --cream-3: var(--tx-3);
  --brass: var(--gold);
  --brass-light: var(--gold);
  --brass-deep: var(--gold-2);
  --line: var(--ln);
  --line-paper: var(--ln);
  --rail: var(--s-2);
  --serif: var(--f);
  --sans: var(--f);
  --latin: var(--f);
  --shadow: var(--sh-2);
  --radius: var(--r);
  --green-glow: var(--red-glow);
  --ln-green: var(--ln-red);
  --green-2: var(--red-3);
  --felt: #101011;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--tx-2);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "tnum" 0;
}
/* ambient glow, fixed behind everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(860px 500px at 86% -10%, rgba(228, 35, 47, .09), transparent 70%),
    radial-gradient(700px 470px at 3% 2%, rgba(255, 255, 255, .03), transparent 74%);
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--tx); text-decoration: none; transition: color .16s; }
a:hover { color: #fff; }
.post-body a, .rules a, .callout a, p a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--red); text-decoration-thickness: 1.5px; }

h1, h2, h3, h4 { font-family: var(--f); color: var(--tx); margin: 0 0 .5em; line-height: 1.12; letter-spacing: -.03em; font-weight: 800; }
h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 900; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); font-weight: 900; }
h3 { font-size: 1.22rem; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1.05em; }
b, strong { font-weight: 700; color: var(--tx); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gut); }
.skip { position: absolute; top: -60px; inset-inline-end: 12px; background: var(--red); color: #fff; padding: 9px 16px; z-index: 200; border-radius: var(--r-sm); font-weight: 700; }
.skip:focus { top: 10px; }
[hidden] { display: none !important; }

.en, .lat { font-variant-numeric: tabular-nums; letter-spacing: 0; }
.num { font-variant-numeric: tabular-nums; font-weight: 800; letter-spacing: -.02em; }
.muted { color: var(--tx-3); }
.small { font-size: .9rem; }
.tiny { font-size: .78rem; }
.ltr { direction: ltr; unicode-bidi: isolate; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.mt { margin-top: 1.5rem; }
.mb { margin-bottom: 1.5rem; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.between { justify-content: space-between; }
.grow { flex: 1; }

/* eyebrow ---------------------------------------------------------------- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red-2);
}
.kicker::before { content: ""; width: 16px; height: 2px; border-radius: 2px; background: currentColor; }
.kicker.no-rule::before { display: none; }
.kicker-gold { color: var(--gold); }

.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--ln-2), transparent); margin: 2rem 0; border: 0; }
.rule i { display: none; }

/* ---------------------------------------------------------------- top bar */
.topline {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topline-in {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  min-height: 30px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
}
.topline-en { color: var(--tx-4); display: inline-flex; align-items: center; gap: 9px; }
.topline-en::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red-2); box-shadow: 0 0 9px var(--red-glow); flex: none; }
.topline-links { display: flex; gap: 16px; align-items: center; }
.topline-links a { color: var(--tx-3); }
.topline-links a:hover { color: var(--red-2); }
.clubid { color: var(--tx-4); }
.clubid b { color: var(--tx); font-weight: 700; }

/* ---------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 10, 11, .82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--ln);
  box-shadow: 0 1px 0 rgba(228, 35, 47, .28);
}
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 12px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--tx); }
.brand-mark {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  display: grid; place-items: center; position: relative;
  background: linear-gradient(145deg, #ff4b56, #e4232f 55%, #a5121c);
  box-shadow: 0 8px 20px -8px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.brand-mark svg { width: 20px; height: 20px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.16; }
.brand-he { font-weight: 800; font-size: 1rem; letter-spacing: -.02em; color: var(--tx); }
.brand-en { font-size: .63rem; letter-spacing: .22em; text-transform: uppercase; color: var(--tx-4); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 1px; }
.nav a {
  padding: 8px 12px; font-size: .92rem; font-weight: 500; color: var(--tx-2);
  border-radius: var(--r-sm); position: relative; transition: color .16s, background .16s;
}
.nav a:hover { color: var(--tx); background: rgba(255, 255, 255, .05); }
.nav a.is-active { color: var(--tx); }
.nav a.is-active::after {
  content: ""; position: absolute; inset-inline: 12px; bottom: 1px; height: 2px; border-radius: 2px;
  background: var(--red); box-shadow: 0 0 12px var(--red-glow);
}
.nav-sep { width: 1px; height: 18px; background: var(--ln); margin-inline: 7px; }
.nav-cta {
  background: var(--red); color: #fff !important; font-weight: 700 !important;
  padding: 8px 17px !important; border-radius: var(--r-pill);
  box-shadow: 0 8px 20px -10px var(--red-glow);
}
.nav-cta:hover { background: var(--red-2); color: #fff !important; }
.nav-user { display: inline-flex; align-items: center; gap: 8px; max-width: 168px; }
.nav-user span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-dim { color: var(--tx-4) !important; font-size: .85rem !important; }
.nav-admin { color: var(--gold) !important; }
.nav a:hover { color: #fff; }
.nav-bell { font-size: .88rem !important; }
.nav-bell b {
  display: inline-block; min-width: 17px; height: 17px; line-height: 17px; text-align: center;
  border-radius: 9px; background: var(--red); color: #fff; font-size: .66rem; font-weight: 700;
  margin-inline-start: 5px; padding-inline: 4px; box-shadow: 0 0 12px var(--red-glow);
}
.navtoggle, .navburger { display: none; }

/* ---------------------------------------------------------------- avatars */
.ava { border-radius: 50%; object-fit: cover; background: var(--s-3); box-shadow: 0 0 0 1px var(--ln-2); }
.ava-xs { width: 25px; height: 25px; }
.ava-sm { width: 38px; height: 38px; }
.ava-md { width: 52px; height: 52px; }
.ava-lg { width: 100px; height: 100px; box-shadow: 0 0 0 1px var(--ln-2), 0 0 0 6px rgba(255, 255, 255, .03); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 22px; border: 1px solid var(--ln-2); border-radius: var(--r-pill);
  font-family: var(--f); font-weight: 600; font-size: .93rem; line-height: 1.2;
  color: var(--tx); background: rgba(255, 255, 255, .04); cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .1s, box-shadow .18s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .24); color: var(--tx); }
.btn:active { transform: translateY(1px); }
.btn-solid {
  background: linear-gradient(180deg, #f5333f, var(--red) 55%, var(--red-3));
  color: #fff; border-color: transparent; font-weight: 700;
  box-shadow: 0 12px 30px -14px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn-solid:hover { background: linear-gradient(180deg, #ff4b56, #e4232f 55%, #c4161f); color: #fff; }
.btn-gold { background: linear-gradient(180deg, #f7d271, var(--gold) 55%, var(--gold-2)); color: #1c1403; border-color: transparent; font-weight: 700; box-shadow: 0 10px 26px -12px var(--gold-glow); }
.btn-gold:hover { color: #1c1403; filter: brightness(1.07); }
.btn-red { background: rgba(228, 35, 47, .12); border-color: var(--ln-red); color: #ff8f96; }
.btn-red:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--ln-2); color: var(--tx-2); }
.btn-ghost:hover { background: rgba(255, 255, 255, .06); color: var(--tx); }
.btn-sm { padding: 7px 14px; font-size: .83rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: default; }

/* ---------------------------------------------------------------- flashes */
.flashes { margin-top: 18px; }
.flash {
  padding: 12px 18px; border-radius: var(--r); font-size: .93rem; margin-bottom: 9px;
  background: var(--s-2); border: 1px solid var(--ln); border-inline-start: 3px solid var(--red);
  color: var(--tx-2); transition: opacity .5s, transform .5s;
}
.flash-success { border-inline-start-color: var(--green); }
.flash-error { border-inline-start-color: var(--red); }
.flash-info { border-inline-start-color: var(--gold); }
.flash.is-gone { opacity: 0; transform: translateY(-6px); }

/* ---------------------------------------------------------------- sections */
.sec { padding-block: clamp(46px, 6.5vw, 88px); position: relative; }
.sec-tight { padding-block: clamp(30px, 4.5vw, 56px); }
/* `.paper` kept as a class name: it is now the lighter dark band */
.paper { background: var(--s-1); border-block: 1px solid var(--ln); }
.paper::before { content: none; }

.sec-head { display: flex; align-items: flex-end; gap: 20px; margin-bottom: 30px; }
.sec-head > div { min-width: 0; }
.sec-head h2 { margin: 8px 0 0; }
.sec-head .line { flex: 1; height: 1px; background: var(--ln); margin-bottom: 11px; }
.sec-head .more { font-size: .9rem; white-space: nowrap; padding-bottom: 5px; font-weight: 600; color: var(--tx-3); }
.sec-head .more:hover { color: var(--red-2); }
.sec-head .more::after { content: " ←"; }
.sec-num {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: .85; font-weight: 900; flex: none;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .18); letter-spacing: -.04em;
}

/* ---------------------------------------------------------------- cards */
.panel, .card {
  background: linear-gradient(170deg, var(--s-2), var(--s-1));
  border: 1px solid var(--ln); border-radius: var(--r-lg);
  box-shadow: var(--sh-2); position: relative; overflow: hidden; color: var(--tx-2);
}
.panel h1, .panel h2, .panel h3, .panel h4 { color: var(--tx); }
.panel .muted { color: var(--tx-3); }
.panel-dark { background: linear-gradient(170deg, var(--s-2), #06070a); border: 1px solid var(--ln); border-radius: var(--r-lg); box-shadow: var(--sh-2); overflow: hidden; }
.pad { padding: clamp(20px, 3vw, 36px); }
.pad-sm { padding: 18px 20px; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; min-height: min(86vh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(265deg, rgba(8, 8, 9, .95) 6%, rgba(8, 8, 9, .84) 32%, rgba(8, 8, 9, .32) 66%, rgba(8, 8, 9, .08) 100%),
    linear-gradient(0deg, var(--bg) 1%, rgba(10, 10, 11, .05) 36%),
    radial-gradient(640px 360px at 76% 22%, rgba(228, 35, 47, .16), transparent 74%);
}
.hero-in { position: relative; padding-block: clamp(72px, 9vw, 116px); max-width: 640px; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 900; margin: 16px 0 14px;
  letter-spacing: -.045em; line-height: 1.02; color: #fff;
}
.hero h1 em { font-style: normal; color: var(--red-2); }
.hero .lead { font-size: clamp(1rem, 1.35vw, 1.13rem); color: var(--tx-2); max-width: 500px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-bottom: 26px; }

/* club id chip */
.idchip {
  display: inline-flex; align-items: center; gap: 0; border-radius: var(--r-pill);
  background: rgba(4, 8, 6, .62); border: 1px solid var(--ln-2);
  backdrop-filter: blur(12px) saturate(1.2); -webkit-backdrop-filter: blur(12px) saturate(1.2); overflow: hidden;
}
.idchip .k { padding: 9px 14px 9px 16px; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tx-3); font-weight: 700; }
.idchip .v { padding: 8px 4px 8px 0; font-size: 1.04rem; font-weight: 800; color: #fff; letter-spacing: .08em; font-variant-numeric: tabular-nums; }
.idchip .s { width: 1px; align-self: stretch; background: var(--ln); margin-inline: 14px; }
.idchip .t { padding: 9px 0; font-size: .66rem; letter-spacing: .11em; text-transform: uppercase; color: var(--tx-2); font-weight: 600; }
.copy-btn {
  margin: 4px; padding: 7px 14px; font-family: var(--f); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; border: 0; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .08); color: var(--tx-2); cursor: pointer; transition: .18s;
}
.copy-btn:hover, .copy-btn.is-done { background: var(--red); color: #fff; }

/* stat row */
.hero-stats { display: flex; gap: clamp(20px, 3.4vw, 46px); flex-wrap: wrap; padding-top: 24px; margin-top: 4px; border-top: 1px solid var(--ln); }
.hero-stats b { display: block; font-size: 1.55rem; font-weight: 900; color: #fff; line-height: 1.15; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.hero-stats span { font-size: .76rem; color: var(--tx-4); font-weight: 500; }

/* ---------------------------------------------------------------- VIP */
.vip-stage { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); border: 1px solid var(--ln-2); }
.slides { position: relative; }
.slide { display: grid; grid-template-columns: 1.08fr 1fr; min-height: 420px; }
.slide:not(.is-on) { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; }
.slide.is-on { opacity: 1; animation: sl .7s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes sl { from { opacity: 0; transform: scale(1.015); } to { opacity: 1; transform: none; } }
.slide-img { position: relative; }
.slide-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(265deg, #0b0b0c 2%, rgba(11, 11, 12, .5) 38%, transparent 84%); }
.slide-body {
  padding: clamp(26px, 3.6vw, 50px); display: flex; flex-direction: column; justify-content: center; gap: 12px;
  background: linear-gradient(200deg, #17171a, #0b0b0c);
  position: relative;
}
.slide-body::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(440px 300px at 84% 14%, rgba(228, 35, 47, .14), transparent 72%);
}
.slide-body > * { position: relative; }
.rank-badge { display: inline-flex; align-items: center; gap: 12px; }
.rank-badge .n {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; flex: none;
  font-size: 1.18rem; font-weight: 900; color: #1a1300;
  background: linear-gradient(150deg, #ffe08a, var(--gold) 58%, var(--gold-2));
  box-shadow: 0 8px 22px -10px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.rank-badge .t { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.slide-body h3 { font-size: clamp(1.5rem, 2.4vw, 2.05rem); margin: 0; font-weight: 900; letter-spacing: -.035em; }
.slide-body .tagline { color: var(--tx-2); font-size: 1rem; margin: 0; }
.slide-meta { display: flex; gap: 6px 20px; flex-wrap: wrap; font-size: .82rem; color: var(--tx-4); }
.slide-meta b { color: var(--tx); font-weight: 600; }
.slide-actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }

.slide-nav { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 16px 0 0; }
.slide-dot { width: 26px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .16); border: 0; padding: 0; cursor: pointer; transition: background .25s, width .25s; }
.slide-dot.is-on { background: var(--red); width: 38px; box-shadow: 0 0 12px var(--red-glow); }
.slide-prev, .slide-next {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--ln-2); background: transparent;
  color: var(--tx-2); cursor: pointer; font-size: 1rem; line-height: 1; transition: .18s;
}
.slide-prev:hover, .slide-next:hover { background: var(--red); color: #fff; border-color: var(--red); }

.seats { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 11px; margin-top: 18px; }
.seat {
  display: flex; align-items: center; gap: 11px; padding: 8px 12px 8px 8px;
  border: 1px solid var(--ln); border-radius: var(--r); color: var(--tx-2);
  background: var(--s-1); transition: border-color .2s, background .2s, transform .2s;
}
.seat:hover { border-color: var(--ln-2); background: var(--s-2); transform: translateY(-2px); color: var(--tx); }
.seat img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; flex: none; }
.seat .n { font-weight: 800; color: var(--gold); font-size: .95rem; min-width: 12px; }
.seat .name { font-size: .88rem; line-height: 1.3; min-width: 0; }
.seat .name b { display: block; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--tx); }

/* ---------------------------------------------------------------- stars */
.stars { display: inline-flex; gap: 2px; vertical-align: middle; direction: rtl; }
.st { width: 16px; height: 16px; display: block; background-size: contain; background-repeat: no-repeat; background-position: center; }
.st-full { background-image: url("../img/star-full.svg"); }
.st-half { background-image: url("../img/star-half.svg"); }
.st-empty { background-image: url("../img/star-empty.svg"); }
.stars.lg .st { width: 22px; height: 22px; }
.stars.sm .st { width: 13px; height: 13px; }
.star-input { display: inline-flex; gap: 4px; direction: rtl; }
.star-input .st { width: 28px; height: 28px; cursor: pointer; transition: transform .12s; }
.star-input .st:hover { transform: scale(1.14); }

/* ---------------------------------------------------------------- badges */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--r-pill); font-size: .7rem; font-weight: 600;
  border: 1px solid var(--ln-2); color: var(--tx-2); background: rgba(255, 255, 255, .06); vertical-align: middle;
}
.badge-main { background: var(--red); color: #fff; border-color: var(--red); font-weight: 700; }
.tag { display: inline-block; padding: 2px 9px; font-size: .7rem; border-radius: var(--r-pill); border: 1px solid var(--ln); color: var(--tx-3); }
.tag-pin { border-color: var(--ln-gold); color: var(--gold); }
.tag-lock { border-color: var(--ln-red); color: #ff8f96; }
.tag-staff { background: rgba(255, 200, 61, .12); color: var(--gold); border-color: var(--ln-gold); font-weight: 600; }
.tag-agent { background: rgba(255, 255, 255, .08); color: var(--tx-2); border-color: var(--ln-2); font-weight: 600; }

/* ---------------------------------------------------------------- ledger */
.ledger-wrap { overflow-x: auto; }
.ledger { width: 100%; border-collapse: separate; border-spacing: 0 8px; font-size: .93rem; }
.ledger th {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--tx-4);
  text-align: start; padding: 0 16px 6px; white-space: nowrap;
}
.ledger th.he { letter-spacing: .02em; font-size: .76rem; text-transform: none; }
.ledger td { padding: 12px 16px; vertical-align: middle; background: var(--s-1); border-block: 1px solid var(--ln); transition: background .18s; }
.ledger td:first-child { border-inline-start: 1px solid var(--ln); border-start-start-radius: var(--r); border-end-start-radius: var(--r); }
.ledger td:last-child { border-inline-end: 1px solid var(--ln); border-start-end-radius: var(--r); border-end-end-radius: var(--r); }
.ledger tbody tr:hover td { background: var(--s-2); }
.ledger .rank { font-weight: 800; color: var(--tx-3); font-size: 1rem; width: 52px; text-align: center; font-variant-numeric: tabular-nums; }
.ledger .rank em { font-style: normal; font-size: .62rem; display: block; letter-spacing: .12em; color: var(--gold); font-weight: 700; }
.club-cell { display: flex; align-items: center; gap: 13px; min-width: 240px; }
.club-cell img { width: 72px; height: 48px; object-fit: cover; border-radius: 8px; flex: none; }
.club-cell .nm { font-weight: 700; font-size: 1rem; color: var(--tx); display: block; line-height: 1.3; }
.club-cell .tl { font-size: .8rem; color: var(--tx-4); display: block; line-height: 1.4; }
.ledger .code { font-weight: 700; letter-spacing: .06em; font-size: .98rem; direction: ltr; unicode-bidi: isolate; display: inline-block; color: var(--tx-2); font-variant-numeric: tabular-nums; }
.ledger .act { white-space: nowrap; text-align: end; }
.ledger tr.vip-row td { background: var(--s-2); }
.ledger tr.vip-row td:first-child { box-shadow: inset 3px 0 0 var(--gold); }
.ledger tr.vip-row:hover td { background: var(--s-3); }

.filters { display: flex; gap: 11px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 22px; }
.filters label { font-size: .72rem; color: var(--tx-4); display: block; margin-bottom: 5px; letter-spacing: .04em; }
.filters select, .filters input { min-width: 152px; }

/* ---------------------------------------------------------------- club page */
.club-hero { position: relative; height: clamp(250px, 38vw, 400px); overflow: hidden; }
.club-hero > img { width: 100%; height: 100%; object-fit: cover; }
.club-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 2%, rgba(10, 10, 11, .92) 40%, rgba(10, 10, 11, .46) 78%, rgba(10, 10, 11, .3)),
    linear-gradient(265deg, rgba(10, 10, 11, .82), transparent 62%);
}
.club-hero .wrap { position: absolute; inset-inline: 0; bottom: 26px; }
.club-hero h1 { margin: 8px 0 0; }

.club-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 26px; align-items: start; }
.spec { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ln); border: 1px solid var(--ln); border-radius: var(--r); overflow: hidden; }
.spec div { padding: 13px 16px; background: var(--s-1); }
.spec .k { font-size: .64rem; color: var(--tx-4); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; display: block; margin-bottom: 3px; }
.spec .v { font-weight: 600; font-size: .96rem; color: var(--tx); }
.contact-list { display: flex; flex-direction: column; gap: 9px; }
.contact-list .btn { justify-content: center; }

.review { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--ln); }
.review:last-child { border-bottom: 0; }
.review .who { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--tx-4); margin-bottom: 5px; flex-wrap: wrap; }
.review .who b { color: var(--tx); font-weight: 600; font-size: .93rem; }

/* ---------------------------------------------------------------- forum */
.cat { display: grid; grid-template-columns: minmax(0, 1fr) 88px 88px; gap: 16px; align-items: center; padding: 18px 16px; border-radius: var(--r); transition: background .18s; }
.cat + .cat { border-top: 1px solid var(--ln); }
.cat:hover { background: var(--s-2); }
.cat h3 { margin: 0 0 3px; font-size: 1.14rem; }
.cat h3 a { color: var(--tx); }
.cat h3 a:hover { color: var(--red-2); }
.cat p { margin: 0; font-size: .88rem; color: var(--tx-4); }
.cat .stat { text-align: center; }
.cat .stat b { display: block; font-size: 1.3rem; font-weight: 800; color: var(--tx); line-height: 1; font-variant-numeric: tabular-nums; }
.cat .stat span { font-size: .68rem; color: var(--tx-4); }

.topic-row { display: grid; grid-template-columns: 40px minmax(0, 1fr) 58px 142px; gap: 14px; align-items: center; padding: 13px 14px; border-radius: var(--r); transition: background .18s; }
.topic-row + .topic-row { border-top: 1px solid var(--ln); }
.topic-row:hover { background: var(--s-2); }
.topic-row.is-pinned { background: var(--s-2); box-shadow: inset 3px 0 0 var(--gold); }
.topic-row .ttl { font-weight: 700; font-size: 1.02rem; color: var(--tx); line-height: 1.35; }
.topic-row .ttl:hover { color: var(--red-2); }
.topic-row .sub { font-size: .78rem; color: var(--tx-4); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 2px; }
.topic-row .sub b { font-weight: 600; color: var(--tx-3); }
.topic-row .cnt { text-align: center; font-weight: 800; font-size: 1.05rem; color: var(--tx-2); line-height: 1.1; font-variant-numeric: tabular-nums; }
.topic-row .cnt span { display: block; font-size: .64rem; font-weight: 400; color: var(--tx-4); }
.topic-row .last { font-size: .76rem; color: var(--tx-4); text-align: end; line-height: 1.4; }
.topic-row .last b { color: var(--tx-3); font-weight: 600; display: block; }

.post { display: grid; grid-template-columns: 152px minmax(0, 1fr); border: 1px solid var(--ln); border-radius: var(--r-lg); margin-bottom: 14px; overflow: hidden; background: var(--s-1); }
.post.is-op { border-color: var(--ln-red); }
.post-side { padding: 20px 14px; border-inline-end: 1px solid var(--ln); text-align: center; background: rgba(255, 255, 255, .02); }
.post-side .ava { margin: 0 auto 10px; }
.post-side .nm { font-weight: 700; font-size: .96rem; color: var(--tx); display: block; line-height: 1.3; }
.post-side .rl { font-size: .7rem; color: var(--tx-4); display: block; margin-top: 5px; }
.post-side .cnt { font-size: .68rem; color: var(--tx-4); display: block; margin-top: 8px; }
.post-main { padding: 18px 22px; display: flex; flex-direction: column; }
.post-head { display: flex; justify-content: space-between; gap: 12px; font-size: .74rem; color: var(--tx-4); border-bottom: 1px solid var(--ln); padding-bottom: 9px; margin-bottom: 14px; }
.post-body { font-size: 1rem; line-height: 1.75; flex: 1; overflow-wrap: anywhere; color: var(--tx-2); }
.post-body p { margin-bottom: .8em; }
.post-body a { text-decoration: underline; text-underline-offset: 2px; }
.post-foot { display: flex; gap: 14px; justify-content: flex-end; margin-top: 12px; }
.post-foot a, .post-foot button { font-size: .76rem; color: var(--tx-4); background: none; border: 0; cursor: pointer; font-family: inherit; padding: 0; }
.post-foot a:hover, .post-foot button:hover { color: var(--red); }
.reply-box { border: 1px solid var(--ln-2); border-radius: var(--r-lg); padding: 22px; background: var(--s-1); }

.crumbs { font-size: .8rem; color: var(--tx-4); margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--tx-3); }
.crumbs a:hover { color: var(--red-2); }
.crumbs span::before { content: "‹"; margin-inline-end: 8px; opacity: .5; }
.crumbs span:first-child::before { content: none; }

/* ---------------------------------------------------------------- sidebar */
.side { display: flex; flex-direction: column; gap: 20px; }
.side-box { border: 1px solid var(--ln); border-radius: var(--r-lg); padding: 20px 22px; background: var(--s-1); }
.side-box h4 { margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--ln); display: flex; justify-content: space-between; align-items: baseline; gap: 10px; color: var(--tx); }
.side-box h4 small { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-4); font-weight: 700; }
.side-box ul { list-style: none; margin: 0; padding: 0; }
.side-box li { padding: 8px 0; border-bottom: 1px solid var(--ln); font-size: .9rem; line-height: 1.5; }
.side-box li:last-child { border-bottom: 0; padding-bottom: 0; }
.side-box p:last-child { margin-bottom: 0; }

.dark-box { border-radius: var(--r-lg); padding: 22px 24px; background: linear-gradient(170deg, var(--s-2), #06070a); border: 1px solid var(--ln); box-shadow: var(--sh-2); }
.dark-box h4 { color: var(--tx); margin-bottom: 12px; }
.dark-box p { color: var(--tx-2); font-size: .92rem; }
.dark-box p:last-child { margin-bottom: 0; }
.dark-box ol, .dark-box ul { color: var(--tx-2); font-size: .92rem; padding-inline-start: 19px; margin: 0; }
.dark-box li { margin-bottom: .45em; }
.stat-row { display: flex; justify-content: space-between; align-items: baseline; font-size: .9rem; padding: 8px 0; border-bottom: 1px solid var(--ln); }
.stat-row:last-child { border-bottom: 0; }
.stat-row b { font-size: 1.05rem; font-weight: 800; color: var(--tx); font-variant-numeric: tabular-nums; }

/* chips card: a photograph behind glass, not a coloured block */
.stub {
  position: relative; border-radius: var(--r-lg); padding: 24px 26px; color: var(--tx-2);
  background: #0e0e10; border: 1px solid var(--ln-2); box-shadow: var(--sh-2); overflow: hidden; isolation: isolate;
}
.stub::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("../img/bg-chips.jpg") center / cover no-repeat; opacity: .68;
}
.stub::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(200deg, rgba(10, 10, 11, .55), rgba(10, 10, 11, .9) 66%);
}
.stub h3 { margin: 10px 0 8px; color: var(--tx); }
.stub p { font-size: .92rem; }
.stub .perf { height: 1px; background: var(--ln); margin: 16px 0; }

/* ---------------------------------------------------------------- forms */
.form { display: flex; flex-direction: column; gap: 15px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--tx-2); }
.field .hint { font-size: .75rem; color: var(--tx-4); margin-top: 5px; line-height: 1.5; }
input[type=text], input[type=email], input[type=password], input[type=number], input[type=url],
input[type=tel], input[type=date], input[type=datetime-local], select, textarea {
  width: 100%; padding: 11px 14px; font: inherit; font-size: .95rem; color: var(--tx);
  background: rgba(255, 255, 255, .04); border: 1px solid var(--ln-2); border-radius: var(--r);
  outline: 0; transition: border-color .16s, box-shadow .16s, background .16s;
}
input::placeholder, textarea::placeholder { color: var(--tx-4); }
input:focus, select:focus, textarea:focus { border-color: var(--red); background: rgba(255, 255, 255, .06); box-shadow: 0 0 0 3px rgba(228, 35, 47, .18); }
textarea { min-height: 128px; resize: vertical; line-height: 1.7; }
select {
  appearance: none; padding-inline-start: 32px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--tx-3) 50%), linear-gradient(135deg, var(--tx-3) 50%, transparent 50%);
  background-position: 14px calc(50% + 1px), 19px calc(50% + 1px); background-size: 5px 5px; background-repeat: no-repeat;
}
select option { background: var(--s-3); color: var(--tx); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; line-height: 1.6; }
.check input { width: 17px; height: 17px; accent-color: var(--red); margin-top: 4px; flex: none; }
.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.error-list { border: 1px solid var(--ln-red); background: rgba(228, 35, 47, .08); border-radius: var(--r); padding: 12px 16px; margin-bottom: 18px; font-size: .9rem; color: #ffb3b7; }
.error-list ul { margin: 0; padding-inline-start: 18px; }
input[type=file] { font-size: .84rem; color: var(--tx-3); }
.auth { max-width: 460px; margin: clamp(36px, 7vw, 84px) auto; }

/* amount slider ---------------------------------------------------------- */
.amount { display: flex; flex-direction: column; gap: 14px; }
.amount-read { display: flex; align-items: baseline; gap: 10px; }
.amount-read output { font-size: clamp(2rem, 4.6vw, 2.9rem); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums; text-shadow: 0 0 40px var(--red-glow); }
.amount-read span { font-size: .84rem; color: var(--tx-4); font-weight: 600; }
.range { --pc: 10%; width: 100%; height: 26px; background: transparent; appearance: none; cursor: pointer; direction: ltr; }
.range::-webkit-slider-runnable-track {
  height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0 var(--pc), rgba(255, 255, 255, .1) var(--pc) 100%);
}
.range::-moz-range-track { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, .1); }
.range::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--red); }
.range::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; margin-top: -8px; border-radius: 50%;
  background: #fff; border: 4px solid var(--red);
  box-shadow: 0 4px 16px -4px var(--red-glow), 0 0 0 6px rgba(228, 35, 47, .14); cursor: grab;
}
.range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--red); box-shadow: 0 0 0 6px rgba(228, 35, 47, .14); cursor: grab; }
.range:active::-webkit-slider-thumb { cursor: grabbing; }
.range-scale { display: flex; justify-content: space-between; font-size: .7rem; color: var(--tx-4); font-variant-numeric: tabular-nums; direction: ltr; }
.quick { display: flex; gap: 8px; flex-wrap: wrap; }
.quick button {
  padding: 7px 15px; border-radius: var(--r-pill); border: 1px solid var(--ln-2); background: transparent;
  color: var(--tx-2); font: inherit; font-size: .84rem; font-weight: 600; cursor: pointer; transition: .16s;
  font-variant-numeric: tabular-nums;
}
.quick button:hover { border-color: var(--red); color: var(--tx); }
.quick button.is-on { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------------------------------------------------------------- bands */
.band { position: relative; min-height: clamp(180px, 24vw, 270px); display: flex; align-items: flex-end; overflow: hidden; }
.band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--bg) 2%, rgba(10, 10, 11, .93) 44%, rgba(10, 10, 11, .62) 78%, rgba(10, 10, 11, .46)),
    linear-gradient(265deg, rgba(10, 10, 11, .78), transparent 66%),
    radial-gradient(520px 280px at 78% 28%, rgba(228, 35, 47, .13), transparent 74%);
}
.band .wrap { position: relative; padding-block: 28px; }
.band h1 { margin: 10px 0 0; }
.band p { margin: 10px 0 0; color: var(--tx-2); max-width: 640px; font-size: 1rem; }

/* ---------------------------------------------------------------- grids */
.two { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; }
.two-even { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }

.latest { list-style: none; margin: 0; padding: 0; }
.latest li { display: grid; grid-template-columns: 38px minmax(0, 1fr) auto; gap: 13px; align-items: center; padding: 13px 12px; border-radius: var(--r); transition: background .18s; }
.latest li + li { border-top: 1px solid var(--ln); }
.latest li:hover { background: var(--s-2); }
.latest .t { font-weight: 700; font-size: 1rem; color: var(--tx); line-height: 1.35; display: block; }
.latest .t:hover { color: var(--red-2); }
.latest .s { font-size: .76rem; color: var(--tx-4); }
.latest .n { font-weight: 800; color: var(--tx-2); font-size: 1.02rem; text-align: center; min-width: 40px; line-height: 1.1; font-variant-numeric: tabular-nums; }
.latest .n span { display: block; font-size: .62rem; color: var(--tx-4); font-weight: 400; }

.world-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.world-card { position: relative; height: 180px; overflow: hidden; border-radius: var(--r-lg); display: block; color: var(--tx); border: 1px solid var(--ln); }
.world-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .8, .2, 1); }
.world-card:hover img { transform: scale(1.07); }
.world-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6, 6, 7, .94), rgba(6, 6, 7, .08) 62%); }
.world-card .lbl { position: absolute; inset-inline: 0; bottom: 0; padding: 15px 17px; z-index: 2; }
.world-card .lbl b { font-size: 1.06rem; display: block; line-height: 1.3; font-weight: 700; }
.world-card .lbl span { font-size: .76rem; color: var(--tx-3); }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3.6vw, 52px); align-items: center; }
.feature-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); }
.feature-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------------------------------------------------------------- rules */
.rules { max-width: 880px; }
.rules h2 { margin-top: 2.2rem; font-size: 1.36rem; padding-bottom: 8px; border-bottom: 1px solid var(--ln); }
.rules ol { padding-inline-start: 22px; }
.rules li { margin-bottom: .6em; }
.rules .en-block {
  direction: ltr; text-align: left; font-size: 1rem; line-height: 1.7;
  border: 1px solid var(--ln-2); border-radius: var(--r-lg); padding: 26px 30px; margin-top: 2.4rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), transparent);
}
.rules .en-block h2 { margin-top: 0; border: 0; }
.callout { border-inline-start: 3px solid var(--red); border-radius: 0 var(--r) var(--r) 0; padding: 14px 18px; background: rgba(255, 255, 255, .04); margin: 1.3rem 0; }
.callout:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- misc */
.notif { display: flex; gap: 14px; padding: 14px 16px; border: 1px solid var(--ln); border-radius: var(--r); margin-bottom: 9px; background: var(--s-1); }
.notif.is-new { border-color: var(--ln-red); background: rgba(228, 35, 47, .06); }
.notif .t { font-weight: 600; color: var(--tx); }
.notif .b { font-size: .89rem; color: var(--tx-3); }
.notif .d { font-size: .73rem; color: var(--tx-4); white-space: nowrap; }

.status { display: inline-block; padding: 3px 11px; font-size: .72rem; border-radius: var(--r-pill); border: 1px solid; font-weight: 600; }
.status-open, .status-pending { border-color: var(--ln-gold); color: var(--gold); background: rgba(255, 200, 61, .08); }
.status-approved { border-color: rgba(46, 204, 113, .38); color: var(--green); background: rgba(46, 204, 113, .1); }
.status-rejected { border-color: var(--ln-red); color: #ff8f96; background: rgba(228, 35, 47, .08); }
.status-closed, .status-hidden { border-color: var(--ln); color: var(--tx-4); }
.approved-box { border: 1px solid rgba(46, 204, 113, .35); border-radius: var(--r); background: rgba(46, 204, 113, .08); padding: 18px 22px; margin-bottom: 18px; color: var(--tx-2); }
.approved-box b { font-size: 1.6rem; font-weight: 900; color: var(--green); font-variant-numeric: tabular-nums; }

.empty { padding: 42px 22px; text-align: center; color: var(--tx-4); border: 1px dashed var(--ln-2); border-radius: var(--r-lg); }
.empty.dark { color: var(--tx-4); }

.profile-head { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.profile-head h1 { margin: 0; font-size: 1.8rem; }
.online-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-inline-end: 7px; box-shadow: 0 0 9px var(--green); }
.alert-red { color: #ff7a7e; }
.upload-box { display: flex; align-items: center; gap: 16px; }
.upload-box img { width: 118px; height: 74px; object-fit: cover; border-radius: 8px; }
.upload-box img.round { width: 74px; border-radius: 50%; }

.ad { margin: clamp(24px, 3.6vw, 40px) auto; text-align: center; }
.ad-in { display: inline-block; position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--ln); line-height: 0; }
.ad-in img { max-height: 250px; width: auto; }
.ad-lbl { position: absolute; top: 0; inset-inline-start: 0; z-index: 2; font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; padding: 3px 8px; color: var(--tx-4); background: rgba(0, 0, 0, .6); font-weight: 600; }
.ad-side .ad-in { display: block; }
.ad-side .ad-in img { width: 100%; max-height: none; }

.pager { display: flex; gap: 7px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.pager a, .pager span { min-width: 38px; text-align: center; padding: 8px 12px; border: 1px solid var(--ln); border-radius: var(--r-sm); font-weight: 700; font-size: .9rem; color: var(--tx-3); transition: .16s; font-variant-numeric: tabular-nums; }
.pager a:hover { border-color: var(--red); color: var(--tx); }
.pager span.cur { background: var(--red); color: #fff; border-color: var(--red); }

/* ---------------------------------------------------------------- VIP list */
.vip-list { display: flex; flex-direction: column; gap: 12px; }
.vip-item {
  display: grid; grid-template-columns: 48px 180px minmax(0, 1fr) auto; gap: 20px; align-items: center;
  padding: 14px 18px; border-radius: var(--r-lg); border: 1px solid var(--ln); background: var(--s-1);
  transition: border-color .2s, transform .2s, background .2s;
}
.vip-item:hover { border-color: var(--ln-2); transform: translateY(-2px); background: var(--s-2); }
.vip-rank {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-weight: 900; font-size: 1.2rem; color: #1a1300;
  background: linear-gradient(150deg, #ffe08a, var(--gold) 58%, var(--gold-2));
  box-shadow: 0 8px 20px -10px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.vip-thumb { display: block; border-radius: var(--r); overflow: hidden; }
.vip-thumb img { width: 100%; height: 104px; object-fit: cover; transition: transform .5s; }
.vip-item:hover .vip-thumb img { transform: scale(1.06); }
.vip-body h3 { margin: 0 0 6px; font-size: 1.32rem; }
.vip-body h3 a { color: var(--tx); }
.vip-body h3 a:hover { color: var(--red-2); }
.vip-body p { margin: 8px 0 6px; color: var(--tx-2); font-size: .95rem; }
.vip-act { display: flex; flex-direction: column; gap: 8px; min-width: 126px; }

/* ---------------------------------------------------------------- footer */
.site-foot { margin-top: clamp(48px, 7vw, 86px); background: #000; border-top: 1px solid var(--ln); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 34px; padding-block: clamp(38px, 5.5vw, 60px) 26px; }
.foot-brand { display: flex; gap: 16px; align-items: flex-start; }
.foot-he { font-size: .92rem; color: var(--tx-3); }
.foot-en { font-size: .86rem; color: var(--tx-4); }
.foot-links h4 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--tx-4); margin-bottom: 13px; font-weight: 700; }
.foot-links a { display: block; padding: 5px 0; color: var(--tx-3); font-size: .9rem; }
.foot-links a:hover { color: var(--red-2); }
.foot-legal { border-top: 1px solid var(--ln); padding-block: 20px 32px; font-size: .8rem; color: var(--tx-4); text-align: left; direction: ltr; line-height: 1.6; }
.foot-copy { margin: 10px 0 0; letter-spacing: .12em; text-transform: uppercase; font-size: .66rem; color: #4d5663; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1060px) {
  .two, .club-grid { grid-template-columns: 1fr; }
  .slide { grid-template-columns: 1fr; }
  .slide-img { min-height: 220px; }
  .slide-img::after { background: linear-gradient(0deg, #070a09, transparent 72%); }
  .feature { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .post { grid-template-columns: 1fr; }
  .post-side { display: flex; align-items: center; gap: 12px; text-align: start; padding: 12px 16px; border-inline-end: 0; border-bottom: 1px solid var(--ln); }
  .post-side .ava { margin: 0; width: 38px; height: 38px; }
  .post-side .cnt { display: none; }
  .post-side .rl { margin: 0; }
}
@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .topline-in { flex-direction: column; gap: 2px; padding-block: 6px; text-align: center; font-size: .62rem; }
  .topline-links { justify-content: center; gap: 12px; }
  .head-in { flex-wrap: wrap; }
  .navburger { display: flex; flex-direction: column; gap: 5px; padding: 10px; cursor: pointer; border: 1px solid var(--ln-2); border-radius: var(--r-sm); }
  .navburger i { display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--tx); }
  .nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-top: 10px; margin-top: 10px; border-top: 1px solid var(--ln); }
  .navtoggle:checked ~ .nav { display: flex; }
  .nav a { padding: 12px 10px; }
  .nav a.is-active::after { display: none; }
  .nav-sep { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero { min-height: 0; }
  .hero-bg::after { background: linear-gradient(0deg, var(--bg) 4%, rgba(5, 8, 7, .88) 46%, rgba(5, 8, 7, .55)); }
  .hero-in { max-width: none; }
  .hero-stats { gap: 20px 26px; }
  .hero-stats b { font-size: 1.3rem; }
  .idchip { width: 100%; flex-wrap: wrap; justify-content: center; padding-block: 4px; }
  .idchip .s { display: none; }
  .idchip .t { width: 100%; text-align: center; padding-bottom: 6px; }
  .sec-head { flex-wrap: wrap; gap: 8px 14px; align-items: baseline; }
  .sec-head .line { display: none; }
  .ledger th:nth-child(3), .ledger td:nth-child(3), .ledger th:nth-child(4), .ledger td:nth-child(4) { display: none; }
  .club-cell img { width: 58px; height: 40px; }
  .topic-row { grid-template-columns: 36px minmax(0, 1fr) 50px; }
  .topic-row .last { display: none; }
  .cat { grid-template-columns: minmax(0, 1fr) 58px 58px; gap: 8px; padding-inline: 4px; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  .form .row { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; }
  .seats { grid-template-columns: 1fr 1fr; }
  .post-main { padding: 16px 18px; }
  .vip-item { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; }
  .vip-thumb { grid-column: 1 / -1; order: 3; }
  .vip-thumb img { height: 140px; }
  .vip-act { grid-column: 1 / -1; order: 4; flex-direction: row; }
  .vip-act .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .topline, .site-head, .site-foot, .ad, .nav, .hero-actions { display: none !important; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
}

/* ---------------------------------------------------------------- join button */
.btn .arr {
  width: 15px; height: 12px; flex: none; display: inline-block; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpath d='M15 6H1M6 1L1 6l5 5' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpath d='M15 6H1M6 1L1 6l5 5' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1);
}
.btn:hover .arr { transform: translateX(-4px); }

/* ---------------------------------------------------------------- photo backdrops */
.sec-photo { position: relative; isolation: isolate; }
.sec-photo { background: transparent !important; }
.sec-photo::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("../img/bg-felt.jpg") center / cover no-repeat;
  opacity: .62;
}
.sec-photo.shot-cards::before { background-image: url("../img/bg-cards.jpg"); }
.sec-photo.shot-chips::before { background-image: url("../img/bg-chips.jpg"); }
.sec-photo.shot-rail::before { background-image: url("../img/bg-rail.jpg"); }
.sec-photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--bg), rgba(10, 10, 11, .74) 26%, rgba(10, 10, 11, .74) 74%, var(--bg));
}
.join-box { position: relative; isolation: isolate; overflow: hidden; }
.join-box::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("../img/bg-cards.jpg") center / cover no-repeat; opacity: .66;
}
.join-box::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(200deg, rgba(10, 10, 11, .58), rgba(10, 10, 11, .92) 66%);
}

/* the join strip: one big, unmissable way into the club */
.join-strip {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: center;
  padding: clamp(24px, 3.4vw, 40px); border-radius: var(--r-lg);
  border: 1px solid var(--ln-2); background: #0e0e10;
  position: relative; isolation: isolate; overflow: hidden;
}
.join-strip::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: url("../img/bg-rail.jpg") center / cover no-repeat; opacity: .7;
}
.join-strip::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(265deg, rgba(10, 10, 11, .94) 26%, rgba(10, 10, 11, .45));
}
.join-strip h2 { margin: 10px 0 6px; }
.join-strip p { margin: 0; color: var(--tx-2); }
.join-strip .side-note { font-size: .78rem; color: var(--tx-4); margin-top: 10px; }
.join-strip .go { display: flex; flex-direction: column; gap: 10px; min-width: 230px; }
@media (max-width: 760px) {
  .join-strip { grid-template-columns: 1fr; }
  .join-strip .go { min-width: 0; }
}

/* ---------------------------------------------------------------- club lookup */
.lookup-form { display: flex; gap: 10px; margin-bottom: 26px; }
.lookup-form input {
  flex: 1; font-size: clamp(1.1rem, 2.6vw, 1.5rem); font-weight: 700; letter-spacing: .06em;
  padding: 16px 20px; text-align: center; border-radius: var(--r-lg);
  background: var(--s-1); border-color: var(--ln-2); font-variant-numeric: tabular-nums;
}
.lookup-form input::placeholder { font-weight: 400; letter-spacing: 0; font-size: .92rem; }
.lookup-form .btn { border-radius: var(--r-lg); padding-inline: 30px; }
.lookup-hint { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lookup-hint div { padding: 16px; border: 1px solid var(--ln); border-radius: var(--r); background: var(--s-1); text-align: center; }
.lookup-hint b { display: block; color: var(--tx); font-size: .96rem; }
.lookup-hint span { font-size: .78rem; color: var(--tx-4); }

.verdict {
  display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 20px; align-items: center;
  padding: 20px; border-radius: var(--r-lg); border: 1px solid var(--ln); background: var(--s-1);
  margin-bottom: 14px; position: relative; overflow: hidden;
}
.verdict::before { content: ""; position: absolute; inset-block: 0; inset-inline-start: 0; width: 3px; background: var(--ln-2); }
.verdict .shot { display: block; border-radius: var(--r); overflow: hidden; }
.verdict .shot img { width: 100%; height: 92px; object-fit: cover; }
.verdict h2 { font-size: 1.4rem; margin: 6px 0 8px; }
.verdict .meta { display: flex; gap: 8px 18px; flex-wrap: wrap; align-items: center; font-size: .84rem; color: var(--tx-4); margin-bottom: 6px; }
.verdict .meta b { color: var(--tx); }
.verdict .meta .tl { color: var(--tx-3); }
.verdict .acts { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 10px; }
.verdict .why { color: var(--tx); font-size: 1rem; margin: 6px 0 8px; }

.verdict-ok::before { background: var(--tx-3); }
.verdict-vip::before { background: var(--gold); }
.verdict-vip { background: linear-gradient(200deg, rgba(255, 200, 61, .07), var(--s-1) 60%); border-color: var(--ln-gold); }
.verdict-off { opacity: .8; }
.verdict-off::before { background: var(--tx-4); }
.verdict-none, .verdict-bad { grid-template-columns: 1fr; }
.verdict-none { border-style: dashed; }
.verdict-bad {
  grid-template-columns: 72px minmax(0, 1fr); align-items: start;
  border-color: var(--ln-red); background: linear-gradient(200deg, rgba(228, 35, 47, .12), var(--s-1) 62%);
}
.verdict-bad::before { background: var(--red); }
.verdict-bad .mark {
  width: 56px; height: 56px; border-radius: 50%; display: block; position: relative;
  background: rgba(228, 35, 47, .16); border: 1px solid var(--ln-red);
}
.verdict-bad .mark::before, .verdict-bad .mark::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 24px; height: 2px; background: var(--red-2);
  border-radius: 2px; transform-origin: center;
}
.verdict-bad .mark::before { transform: translate(-50%, -50%) rotate(45deg); }
.verdict-bad .mark::after { transform: translate(-50%, -50%) rotate(-45deg); }
@media (max-width: 700px) {
  .lookup-form { flex-direction: column; }
  .lookup-hint { grid-template-columns: 1fr; }
  .verdict, .verdict-bad { grid-template-columns: 1fr; }
  .verdict .shot img { height: 140px; }
}

/* verification code box */
.code-input {
  font-size: 1.8rem; font-weight: 800; letter-spacing: .45em; text-align: center;
  padding: 16px 12px 16px 24px; font-variant-numeric: tabular-nums; direction: ltr;
}

/* quick club check bar on the home page */
.checkbar {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 14px; align-items: center;
  padding: 14px 18px; border: 1px solid var(--ln); border-radius: var(--r-lg);
  background: linear-gradient(200deg, var(--s-2), var(--s-1));
}
.checkbar .lbl { display: flex; flex-direction: column; gap: 3px; }
.checkbar .lbl b { font-size: 1.02rem; color: var(--tx); font-weight: 700; }
.checkbar input { font-weight: 700; letter-spacing: .05em; font-variant-numeric: tabular-nums; }
.checkbar input::placeholder { font-weight: 400; letter-spacing: 0; }
@media (max-width: 760px) {
  .checkbar { grid-template-columns: 1fr; }
  .checkbar .btn { width: 100%; }
}

/* ---------------------------------------------------------------- whatsapp support */
.wa-fab {
  position: fixed; inset-inline-start: 22px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px 11px 13px;
  border-radius: var(--r-pill); color: var(--tx);
  background: rgba(16, 16, 18, .9); border: 1px solid var(--ln-2);
  box-shadow: var(--sh-2); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .2s cubic-bezier(.2, .8, .2, 1), border-color .2s, background .2s;
}
.wa-fab:hover { transform: translateY(-2px); border-color: rgba(37, 211, 102, .55); background: rgba(20, 22, 20, .95); color: #fff; }
.wa-fab .ico { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #06180d; flex: none; }
.wa-fab .ico svg { width: 17px; height: 17px; }
.wa-fab .txt { font-size: .86rem; font-weight: 600; white-space: nowrap; }

.wa-card {
  display: grid; grid-template-columns: 46px minmax(0, 1fr) 16px; gap: 14px; align-items: center;
  padding: 18px 20px; border-radius: var(--r-lg); color: var(--tx);
  background: linear-gradient(200deg, rgba(37, 211, 102, .1), var(--s-1) 62%);
  border: 1px solid rgba(37, 211, 102, .32); transition: border-color .2s, transform .2s;
}
.wa-card:hover { border-color: rgba(37, 211, 102, .6); transform: translateY(-2px); color: var(--tx); }
.wa-card .ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: #25d366; color: #06180d; }
.wa-card .ico svg { width: 26px; height: 26px; }
.wa-card .body { display: flex; flex-direction: column; gap: 2px; }
.wa-card .body b { font-size: 1.02rem; }
.wa-card .body span { font-size: .84rem; color: var(--tx-3); }
.wa-card .arr {
  width: 14px; height: 11px; background: var(--tx-3);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpath d='M15 6H1M6 1L1 6l5 5' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpath d='M15 6H1M6 1L1 6l5 5' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s;
}
.wa-card:hover .arr { transform: translateX(-3px); background: var(--tx); }

/* permission editor */
.caps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin: 14px 0 4px; }
.caps-grid fieldset { margin: 0; padding: 12px 14px 14px; }
.caps-grid legend { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-4); }
.caps-grid .check { font-size: .84rem; padding: 3px 0; align-items: center; }
.caps-grid .check input { margin-top: 0; }
.caps-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

@media (max-width: 760px) {
  .wa-fab { inset-inline-start: 14px; bottom: 14px; padding: 11px; }
  .wa-fab .txt { display: none; }
}

/* ---------------------------------------------------------------- composer */
.composer { border: 1px solid var(--ln-2); border-radius: var(--r); overflow: hidden; background: rgba(255, 255, 255, .03); }
.cmp-bar { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 7px 8px; border-bottom: 1px solid var(--ln); background: rgba(255, 255, 255, .03); }
.cmp-tools { display: flex; align-items: center; gap: 2px; }
.cmp-btn {
  min-width: 30px; height: 30px; padding: 0 8px; border: 0; border-radius: 7px; cursor: pointer;
  background: transparent; color: var(--tx-3); font: inherit; font-size: .92rem; line-height: 1;
  display: inline-grid; place-items: center; transition: background .15s, color .15s;
}
.cmp-btn:hover { background: rgba(255, 255, 255, .08); color: var(--tx); }
.cmp-btn b { font-weight: 800; }
.cmp-btn i { font-style: italic; font-family: Georgia, serif; }
.cmp-sep { width: 1px; height: 18px; background: var(--ln); margin-inline: 5px; }
.cmp-tabs { display: flex; gap: 2px; }
.cmp-tab { border: 0; background: transparent; color: var(--tx-4); font: inherit; font-size: .8rem; padding: 6px 11px; border-radius: 7px; cursor: pointer; }
.cmp-tab:hover { color: var(--tx-2); }
.cmp-tab.is-on { background: rgba(255, 255, 255, .08); color: var(--tx); font-weight: 600; }
.composer textarea { border: 0; border-radius: 0; background: transparent; min-height: 130px; }
.composer textarea:focus { box-shadow: none; background: transparent; }
.cmp-preview { padding: 14px 16px; min-height: 130px; font-size: 1rem; line-height: 1.75; }
.cmp-preview p { margin: 0 0 .8em; }
.cmp-files { display: flex; align-items: center; gap: 12px; padding: 9px 12px; border-top: 1px solid var(--ln); flex-wrap: wrap; }
.cmp-file { cursor: pointer; }
.cmp-file span {
  display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--tx-2);
  border: 1px dashed var(--ln-2); border-radius: var(--r-pill); padding: 6px 14px; transition: border-color .15s, color .15s;
}
.cmp-file span::before { content: "+"; font-size: 1rem; line-height: 1; }
.cmp-file:hover span { border-color: var(--red); color: var(--tx); }
.cmp-hint, .cmp-count { font-size: .74rem; color: var(--tx-4); }
.cmp-count { color: var(--tx-2); font-weight: 600; }
.cmp-thumbs { display: flex; gap: 8px; padding: 0 12px 12px; flex-wrap: wrap; }
.cmp-thumbs img { width: 74px; height: 56px; object-fit: cover; border-radius: 7px; border: 1px solid var(--ln-2); }

/* quotes and lists inside posts */
.post-body blockquote, .cmp-preview blockquote {
  margin: 0 0 .9em; padding: 10px 14px; border-inline-start: 3px solid var(--ln-2);
  background: rgba(255, 255, 255, .04); border-radius: 0 var(--r) var(--r) 0; color: var(--tx-3); font-size: .96rem;
}
.post-body ul, .cmp-preview ul { margin: 0 0 .9em; padding-inline-start: 22px; }
.post-body li, .cmp-preview li { margin-bottom: .3em; }
.post-body em { color: var(--tx); }

/* attachments */
.post-gallery { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.post-gallery a { display: block; border-radius: var(--r); overflow: hidden; border: 1px solid var(--ln); }
.post-gallery img { width: 148px; height: 106px; object-fit: cover; transition: transform .4s; }
.post-gallery a:hover img { transform: scale(1.05); }

/* topic header + tools */
.topic-head { margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--ln); }
.topic-head h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 8px; }
.topic-meta { display: flex; gap: 8px 16px; flex-wrap: wrap; align-items: center; font-size: .8rem; color: var(--tx-4); }
.post .pnum { color: var(--tx-4); font-variant-numeric: tabular-nums; }
.mod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mod-grid .btn { width: 100%; }

/* forum filter tabs */
.ftabs { display: flex; gap: 3px; flex-wrap: wrap; }
.ftabs a { padding: 7px 14px; border-radius: var(--r-pill); font-size: .85rem; color: var(--tx-3); border: 1px solid transparent; }
.ftabs a:hover { color: var(--tx); background: rgba(255, 255, 255, .05); }
.ftabs a.is-on { background: rgba(255, 255, 255, .08); border-color: var(--ln-2); color: var(--tx); font-weight: 600; }

/* ---------------------------------------------------------------- language switch */
.langsw {
  display: inline-flex; align-items: center; gap: 2px; flex: none;
  padding: 3px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .05); border: 1px solid var(--ln-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}
.langsw-seg {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: var(--r-pill);
  font-size: .8rem; font-weight: 700; color: var(--tx-3);
  transition: color .16s, background .16s, box-shadow .16s;
  white-space: nowrap;
}
.langsw-seg b { font-size: .78rem; letter-spacing: .06em; font-weight: 800; }
.langsw-seg i { font-style: normal; font-size: .78rem; font-weight: 600; opacity: .72; }
.langsw-seg:hover { color: var(--tx); background: rgba(255, 255, 255, .06); }
.langsw-seg.is-on {
  background: var(--tx); color: #0a0a0b;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .9), inset 0 -1px 0 rgba(0, 0, 0, .12);
  cursor: default;
}
.langsw-seg.is-on i { opacity: .62; }
.langsw-seg.is-on:hover { background: #fff; color: #0a0a0b; }

@media (max-width: 1160px) {
  .langsw-seg i { display: none; }
  .langsw-seg { padding: 6px 11px; }
}
@media (max-width: 760px) {
  .head-in .langsw { order: 2; margin-inline-start: auto; }
  .head-in .navburger { order: 3; }
  .head-in .nav { order: 4; }
}

/* ---------------------------------------------------------------- club attached to a member */
.post-club {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 5px; margin-top: 5px; line-height: 1.25;
}
.post-club a {
  font-size: .72rem; font-weight: 600; color: var(--tx-2);
  border-bottom: 1px solid transparent;
}
.post-club a:hover { color: var(--red-2); border-bottom-color: var(--ln-red); }
.post-club .st { width: 10px; height: 10px; }

.profile-club {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px; margin-top: 7px;
}
.profile-club .lbl {
  font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--tx-4);
}
.profile-club a { font-size: .98rem; font-weight: 700; color: var(--tx); }
.profile-club a:hover { color: var(--red-2); }
.profile-club .st { width: 15px; height: 15px; }

@media (max-width: 1060px) {
  .post-club { justify-content: start; margin-top: 3px; }
}
