@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* ── CMS palette variables (controllable via Colors tab) ── */
  --brand: #adc764;
  --brand-dark: #8ea352;
  --brand-light: #bcd180;
  --brand-glow: rgba(173, 199, 100, 0.45);
  --login-bg: #efefed;
  --login-border: rgba(172, 214, 88, 0.32);
  --login-text: #000000;
  --blue: #acd658;
  --blue-dark: #8daf48;
  --blue-glow: rgba(172, 214, 88, 0.35);
  --header-bg: #686e6c;
  --section-bg: #e7ecdb;
  --section-alt: #dcdcda;
  --hero-bg: #efefed;
  --bg: #efefed;
  --bg-card: #efefed;
  --bg-card-alt: #d2d2d1;
  --surface: rgba(210, 210, 209, 0.72);
  --surface-hover: rgba(239, 239, 237, 0.84);
  --headings: #000000;
  --text: #000000;
  --text-muted: #000000;
  --border: rgba(172, 214, 88, 0.18);
  --neon-line: rgba(173, 199, 100, 0.5);

  /* ── Template aliases (bridge source tokens to palette) ── */
  --gold: var(--brand);
  --gold-dark: var(--brand-dark);
  --gold-light: var(--brand-light);
  --gold-glow: var(--brand-glow);
  --ink: var(--bg);
  --ink-2: var(--header-bg);
  --ink-3: var(--bg-card);
  --plate: var(--bg-card-alt);
  --plate-2: var(--surface);
  --line: var(--border);
  --line-gold: var(--neon-line);
  --white: var(--text);
  --grey: var(--text-muted);
  --grey-2: rgba(138, 145, 153, 0.65);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --max-w: 1200px;
  --ease: cubic-bezier(.77, 0, .175, 1);
  --fast: 0.2s;
  --mid: 0.35s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 108px;
}

button {
  font-family: inherit;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.container {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
}

h1 { font-size: 42px; }
h2 { font-size: 42px; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.fcgnkblyn {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.zdhwtwynds {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: color var(--fast) var(--ease);
  white-space: nowrap;
}

.ggmgxwiela {
  background: var(--gold);
  color: var(--ink);
  padding: 16px 32px;
  transition: background var(--fast) var(--ease), color var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.ggmgxwiela::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--mid) var(--ease);
  z-index: 0;
}

.ggmgxwiela span,
.ggmgxwiela > * {
  position: relative;
  z-index: 1;
}

.ggmgxwiela:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ggmgxwiela:hover { color: var(--ink); }

.dqpvluklhaq {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border: 2px solid var(--plate-2);
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}

.dqpvluklhaq:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.phhttscqcpgvjnh {
  background: none;
  color: var(--gold);
  padding: 10px 0;
  border-bottom: 2px solid var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  gap: 6px;
  transition: gap var(--fast);
}

.phhttscqcpgvjnh:hover { gap: 14px; }

.qpamsangvhfdm { padding: 20px 44px; font-size: 0.88rem; }

/* ============ Header ============ */
.ormjoljgnle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.mpodvyidxysirdpc {
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
}

.cbuxngskz {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sxmyfzvxu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: filter var(--fast);
  line-height: 1;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.sxmyfzvxu:hover { filter: brightness(1.08); }

.sxdoalsemmofpyel { font-size: 1rem; }

.ritavjbvonyv {
  display: flex;
  align-items: center;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 28px;
  gap: 0;
}

.muracwiixh {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.muracwiixh img { border-radius: 0; }

.dgncetlkjocpf {
  display: flex;
  align-items: center;
  height: 100%;
}

.dgncetlkjocpf a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  transition: color var(--fast);
}

.dgncetlkjocpf a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--fast) var(--ease);
}

.dgncetlkjocpf a:hover,
.dgncetlkjocpf a.vgahmyoggbtzup { color: var(--white); }

.dgncetlkjocpf a:hover::after,
.dgncetlkjocpf a.vgahmyoggbtzup::after { transform: scaleX(1); }

.abjtuqtmc {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.fwviqjjvfvsxpfz {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.dhusduokposz {
  padding: 8px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.awueslqd {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 2px solid var(--line);
  cursor: pointer;
  padding: 8px 10px;
  margin-left: auto;
}

.awueslqd span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: all var(--fast);
}

.cekrpuhka {
  display: none;
  flex-direction: column;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 3px solid var(--gold);
  padding: 16px 28px 24px;
  gap: 2px;
}

.cekrpuhka.vlcduqgfbpszr { display: flex; }

.cekrpuhka a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--fast);
}

.cekrpuhka a:hover { color: var(--gold); }
.cekrpuhka a:last-child { border-bottom: none; }

/* ============ Hero ============ */
.xlmqovodupzyggs {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-bg);
  padding: 60px 0;
}

.xlmqovodupzyggs::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  bottom: 0;
  background: var(--ink-3);
  z-index: 0;
}

.xlmqovodupzyggs::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  bottom: 0;
  background: var(--gold);
  z-index: 1;
}

.pmfyybqtdgzfjtm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title media"
    "text  media"
    "cta   media";
  grid-template-rows: auto auto 1fr;
  align-items: start;
  gap: 0 60px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.zuotzlskgzgjygjy { grid-area: title; margin-bottom: 28px; line-height: 0.95; }
.lgygcthleppzyii { grid-area: text; font-size: 1rem; color: var(--grey); margin-bottom: 40px; line-height: 1.75; }
.cypzhwhwrl { grid-area: media; align-self: center; padding-left: 48px; position: relative; }
.ckbukcylgjmbvagj { grid-area: cta; align-self: start; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.zuotzlskgzgjygjy mark {
  background: var(--gold);
  color: var(--ink);
  padding: 0 6px;
  font-style: normal;
  display: inline-block;
}

.lgygcthleppzyii strong { color: var(--white); }

.cypzhwhwrl img {
  width: 100%;
  object-fit: cover;
  display: block;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

/* ============ Sections ============ */
.evkmevpeisuaxo {
  padding: 96px 0;
  position: relative;
  background: var(--section-bg);
}

.bfinkyqpcpfejpo { background: var(--section-alt); }
.djgpognqmdqtfml { background: var(--ink-3); }

.fvhczeilegfc {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 56px;
}

.fvhczeilegfc h2 { line-height: 1; margin: 0; }

.sfxbgsfy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sfxbgsfy > * { min-width: 0; }

.sfxbgsfy .jzetatfnbmkkxitr { order: 1; }
.sfxbgsfy .ofmzxptik { order: 2; }
.fduejfklgaxejig .jzetatfnbmkkxitr { order: 2; }
.fduejfklgaxejig .ofmzxptik { order: 1; }

.ofmzxptik { position: relative; }

.ofmzxptik img {
  width: 100%;
  display: block;
  border-left: 4px solid var(--gold);
}

.fduejfklgaxejig .ofmzxptik img {
  border-left: none;
  border-right: 4px solid var(--gold);
}

.ofmzxptik::before {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 10;
  pointer-events: none;
}

.fduejfklgaxejig .ofmzxptik::before {
  right: auto;
  left: -12px;
  border-right: none;
  border-left: 3px solid var(--gold);
}

.jzetatfnbmkkxitr p { margin-bottom: 16px; }
.jzetatfnbmkkxitr h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.4rem); }

.sfxbgsfy + .wlgurznhobhbd,
.sfxbgsfy + .dwdkemkffpn,
.sfxbgsfy + .qucbbtpsotl,
.sfxbgsfy + .arcitfdg,
.sfxbgsfy + .sgkfvwsvmbk,
.sfxbgsfy + .nmzkkrxpuh,
.sfxbgsfy + .vkouojjtuyz {
  margin-top: 48px;
}

.wlgurznhobhbd {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wlgurznhobhbd li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: padding-left var(--fast);
}

.wlgurznhobhbd li:first-child { border-top: 1px solid var(--line); }
.wlgurznhobhbd li:hover { padding-left: 8px; color: var(--gold); }

.wlgurznhobhbd li::before {
  content: '';
  width: 24px;
  height: 24px;
  background: var(--gold);
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}

.qucbbtpsotl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: s;
  margin-top: 32px;
}

.xxjqhofcbjadqvqa {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: s;
  align-items: start;
  transition: background var(--fast);
  cursor: default;
}

.xxjqhofcbjadqvqa:last-child { border-bottom: none; }
.xxjqhofcbjadqvqa:hover { background: var(--gold-glow); }

.emngggegi {
  display: flex;
  width: 48px;
  height: 48px;
  background: var(--plate-2);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background var(--fast), color var(--fast);
}

.emngggegi::before { content: counter(s, decimal-leading-zero); }

.xxjqhofcbjadqvqa:hover .emngggegi {
  background: var(--gold);
  color: var(--ink);
}

.okzsmicrtlvlta h3,
.okzsmicrtlvlta h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--white);
  line-height: 1.1;
}

.okzsmicrtlvlta p { margin: 0; }

/* ============ Pros/Cons ============ */
.dwdkemkffpn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gold);
  margin-top: 40px;
}

.iwsmtjgyyx {
  background: var(--ink-3);
  padding: 36px;
}

.mtzqdvajwranmk {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.vrsvgoanzipuzqsj {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
}

.hqpdubglgbc { background: var(--gold); color: var(--ink); }
.owsbjzutvqblgxef { background: var(--plate-2); color: var(--grey); }

.mtzqdvajwranmk h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0;
}

.zpatstxo { list-style: none; }

.zpatstxo li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.zpatstxo li:last-child { border-bottom: none; }

.zpatstxo li::before {
  content: attr(data-mark);
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
  font-weight: 700;
}

.iwsmtjgyyx:nth-child(2) .zpatstxo li::before { color: var(--grey); }

/* ============ Tables ============ */
.arcitfdg {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  border: 1px solid var(--plate-2);
  border-top: 3px solid var(--gold);
  max-width: 100%;
  width: 100%;
  min-width: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

thead tr { background: var(--plate); }

th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--plate-2);
}

td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--grey);
  border-bottom: 1px solid var(--line);
}

tr:last-child td { border-bottom: none; }

tbody tr:hover td {
  color: var(--white);
  background: var(--gold-glow);
}

/* Tables embedded in rich content_html (overview/registration/bonuses/app/payments
   intros, subsections, games intro) are NOT inside .arcitfdg. Without this the
   wide table (min-width above) overflows the page and gets clipped by body's
   overflow-x:hidden. Make the prose container scroll horizontally instead. */
.jzetatfnbmkkxitr,
.fdeemwjwjhdud,
.sjsyfpkzb {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
}

/* ============ Games ============ */
.sjsyfpkzb {
  max-width: 680px;
  margin: -24px 0 0;
}

.ffwxzvek {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: transparent;
  margin-top: 48px;
}

.dluoidfmdsaktz {
  background: transparent;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.dluoidfmdsaktz img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s var(--ease);
  display: block;
}

.dluoidfmdsaktz:hover img { transform: scale(1.06); }

.uvucbrgydpn {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity var(--fast);
  backdrop-filter: blur(2px);
}

.dluoidfmdsaktz:hover .uvucbrgydpn { opacity: 1; }

.fhpnsnwtruvbccxk {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.bssntuzisuaprivf {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.rgqquzkmsqnqed { margin-top: 32px; }

/* ============ Author (optional) ============ */
.tbsylhyaarb {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  border: 1px solid var(--plate-2);
  border-top: 4px solid var(--gold);
  margin-top: 40px;
  overflow: hidden;
}

.vrgrvhdbonpug {
  background: var(--gold);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  text-align: center;
}

.zmucohkbacimckdb {
  width: 80px;
  height: 80px;
  border-radius: 0;
  object-fit: cover;
  filter: grayscale(100%);
  border: 3px solid var(--ink);
}

.yhygxmggwektxebm {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.1;
}

.nvdxpxajybvvosuq {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.6);
}

.wyvlsqmrf {
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: 2px;
}

.dduxokpreuqbak {
  padding: 36px;
  background: var(--ink-3);
}

.dduxokpreuqbak p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.dduxokpreuqbak strong { color: var(--gold); font-weight: 700; }

/* ============ FAQ (native details/summary) ============ */
.sgkfvwsvmbk {
  list-style: none;
  margin-top: 40px;
}

.sgkfvwsvmbk > .crsgffykrufqs {
  border-bottom: 1px solid var(--line);
}

.sgkfvwsvmbk > .crsgffykrufqs:first-child {
  border-top: 1px solid var(--line);
}

details.crsgffykrufqs[vlcduqgfbpszr] { border-bottom: 2px solid var(--gold); }

summary.byrtprxgpcsug {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 22px 0;
  list-style: none;
  transition: color var(--fast);
}

summary.byrtprxgpcsug::-webkit-details-marker { display: none; }
summary.byrtprxgpcsug::marker { content: ''; }

summary.byrtprxgpcsug:hover,
details.crsgffykrufqs[vlcduqgfbpszr] summary.byrtprxgpcsug { color: var(--gold); }

.jekbrtihbupvdgy {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ixjgmiiyr {
  width: 32px;
  height: 32px;
  border: 2px solid var(--plate-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--grey);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--fast), border-color var(--fast), color var(--fast);
}

details.crsgffykrufqs[vlcduqgfbpszr] .ixjgmiiyr {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

details.crsgffykrufqs .osqavmakdqfiuqnr {
  padding-bottom: 22px;
  max-height: none;
  overflow: visible;
}

details.crsgffykrufqs .osqavmakdqfiuqnr p {
  padding-left: 0;
  padding-bottom: 0;
  margin: 0;
  color: var(--grey);
}

/* ============ Subsections (H3 blocks) ============ */
.vkouojjtuyz {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fdeemwjwjhdud {
  padding: 24px 28px;
  background: var(--ink-3);
  border-left: 3px solid var(--gold);
}

.fdeemwjwjhdud h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.fdeemwjwjhdud p,
.fdeemwjwjhdud ul,
.fdeemwjwjhdud ol { color: var(--grey); }

.fdeemwjwjhdud p { margin-bottom: 10px; }
.fdeemwjwjhdud ul,
.fdeemwjwjhdud ol { margin-left: 22px; }

/* ============ CTA banner ============ */
.xstgcshavuynn {
  background: var(--gold) !important;
  padding: 80px 0 !important;
}

.zkpgbuyrbpaq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.zkpgbuyrbpaq h2 {
  color: var(--ink);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin: 0;
}

.zkpgbuyrbpaq p {
  color: rgba(7, 7, 7, 0.65);
  font-size: 0.95rem;
  margin: 8px 0 0;
}

.xmpvkcoylihmar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.fiqqeejgmzzuxc {
  background: var(--ink);
  color: var(--gold);
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--fast), color var(--fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fiqqeejgmzzuxc:hover { background: var(--white); color: var(--ink); }

.mwjdxckuqt {
  background: transparent;
  color: rgba(7, 7, 7, 0.7);
  border: 2px solid rgba(7, 7, 7, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--fast);
}

.mwjdxckuqt:hover {
  background: rgba(7, 7, 7, 0.1);
  color: var(--ink);
}

.nmzkkrxpuh {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ============ Footer (3-layer) ============ */
.lhwzznev {
  background: var(--bg);
}

.loiyunbxfmenxhjh {
  border-bottom: 1px solid var(--line);
}

.loiyunbxfmenxhjh:last-child { border-bottom: none; }
.xcvdzklfvjckggol { padding: 32px 0; }

.xauhayfmfo {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.awkkhhzcbke {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: center;
}

.awkkhhzcbke a {
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color var(--fast);
  white-space: nowrap;
}

.awkkhhzcbke a:hover { color: var(--gold); }

.sombfkeqfepxwbfp {
  display: flex;
  gap: 10px;
  align-items: center;
}

.iagkjiubyaadrgce { padding: 24px 0; }

.pmoiwbsnrwa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.dmwmfwqywxyfwm {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tnptcjudckinj {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--plate);
  border: 1px solid var(--plate-2);
  color: var(--grey);
  transition: background var(--fast), color var(--fast), border-color var(--fast);
}

.tnptcjudckinj:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.plolhdhnory {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  justify-content: flex-end;
}

.ponsajohe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: var(--plate);
  border: 1px solid var(--plate-2);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 26px;
}

.prccgikgia { padding: 16px 0; }

.bfzxhdtzkf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.xwmellxuw {
  font-size: 0.78rem;
  color: var(--grey-2);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.mytvdhzxhcy {
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .pmfyybqtdgzfjtm {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "cta"
      "text";
    grid-template-rows: auto auto auto auto;
    gap: 24px;
  }

  .xlmqovodupzyggs::before,
  .xlmqovodupzyggs::after { display: none; }

  .zuotzlskgzgjygjy,
  .lgygcthleppzyii { text-align: center; }

  .lgygcthleppzyii { margin: 0 auto; }

  .ckbukcylgjmbvagj {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cypzhwhwrl {
    padding-left: 0;
    display: block;
  }

  .cypzhwhwrl img {
    max-width: 420px;
    margin: 0 auto;
  }

  .sfxbgsfy {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sfxbgsfy .ofmzxptik { order: -1 !important; }
  .sfxbgsfy .jzetatfnbmkkxitr { order: 1 !important; }

  .ffwxzvek { grid-template-columns: repeat(3, 1fr); }

  .zkpgbuyrbpaq {
    flex-direction: column;
    text-align: center;
  }

  .xmpvkcoylihmar {
    align-items: center;
    width: 100%;
  }

  .tbsylhyaarb { grid-template-columns: 1fr; }

  .vrgrvhdbonpug {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px;
    min-width: auto;
  }

  .xauhayfmfo {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .awkkhhzcbke { justify-content: center; }
  .pmoiwbsnrwa { justify-content: center; }
  .plolhdhnory { justify-content: center; }
}

@media (max-width: 768px) {
  body { padding-top: 64px; }

  .mpodvyidxysirdpc { display: none; }
  .dgncetlkjocpf { display: none; }
  .abjtuqtmc { display: none; }

  .fwviqjjvfvsxpfz {
    display: flex;
    margin-left: auto;
    margin-right: 8px;
  }

  .awueslqd {
    display: flex;
    margin-left: 0;
  }

  .evkmevpeisuaxo { padding: 60px 0; }

  .vkouojjtuyz {
    gap: 16px;
    margin-top: 24px;
  }

  .fdeemwjwjhdud { padding: 20px; }
  .fdeemwjwjhdud h3 { font-size: 1.15rem; }

  .fvhczeilegfc {
    gap: 12px;
    margin-bottom: 32px;
  }

  .dwdkemkffpn { grid-template-columns: 1fr; }

  .ffwxzvek { grid-template-columns: repeat(2, 1fr); }

  .bfzxhdtzkf {
    justify-content: center;
    text-align: center;
  }

  table { min-width: 460px; }
}

@media (max-width: 480px) {
  .fwviqjjvfvsxpfz .dqpvluklhaq { display: none; }

  .ffwxzvek { grid-template-columns: repeat(2, 1fr); }

  .ckbukcylgjmbvagj {
    flex-direction: column;
    width: 100%;
  }

  .ckbukcylgjmbvagj .zdhwtwynds {
    width: 100%;
    justify-content: center;
  }

  .ggmgxwiela,
  .dqpvluklhaq,
  .fiqqeejgmzzuxc,
  .mwjdxckuqt,
  .mytvdhzxhcy { clip-path: none; }

  .fdeemwjwjhdud { padding: 16px 16px 16px 18px; }
  .fdeemwjwjhdud h3 { font-size: 1.05rem; }
}
