@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: #2F6FE0;
  --brand-dark: #2459B8;
  --brand-light: #5A93F0;
  --brand-glow: rgba(47, 111, 224, .4);
  --login-bg: transparent;
  --login-border: #2F6FE0;
  --login-text: #FFFFFF;
  --blue: #2FC46A;
  --blue-dark: #239A52;
  --blue-glow: rgba(47, 196, 106, .25);
  --header-bg: #131A33;
  --section-bg: #131A33;
  --section-alt: #1B2446;
  --hero-bg: #1B2446;
  --bg: #131A33;
  --bg-card: #1B2446;
  --bg-card-alt: #232E5A;
  --surface: #232E5A;
  --surface-hover: #2C386C;
  --headings: #FFFFFF;
  --text: #E7ECF8;
  --text-muted: #9FB0D4;
  --border: rgba(255, 255, 255, .1);
  --neon-line: rgba(47, 111, 224, .45);

  /* ── 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;
}

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

.avfkyktmggnuoxjc {
  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;
}

.ydvqpaxbb {
  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);
}

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

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

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

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

.pppagxvawbv {
  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);
}

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

.zneegmivoafcplv {
  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);
}

.zneegmivoafcplv:hover { gap: 14px; }

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

/* ============ Header ============ */
.xoouytzg {
  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);
}

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

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

.qeqmosvqfhxtyv {
  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%);
}

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

.zouuleojphcon { font-size: 1rem; }

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

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

.gknpucxhlacf img { border-radius: 0; }

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

.qviislwpf 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);
}

.qviislwpf 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);
}

.qviislwpf a:hover,
.qviislwpf a.zfunurkptimqgwu { color: var(--white); }

.qviislwpf a:hover::after,
.qviislwpf a.zfunurkptimqgwu::after { transform: scaleX(1); }

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

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

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

.qfokksofsntnk {
  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;
}

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

.ycxmtcyifp {
  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;
}

.ycxmtcyifp.kksebjqehzw { display: flex; }

.ycxmtcyifp 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);
}

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

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

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

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

.nucbewrbk {
  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%;
}

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

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

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

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

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

.ejpbiritrd { background: var(--section-alt); }
.fxoslnspi { background: var(--ink-3); }

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

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

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

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

.wenfzfmyrboqfgg .qmpvvuppotm { order: 1; }
.wenfzfmyrboqfgg .loeygyirq { order: 2; }
.pjvhsitfcbt .qmpvvuppotm { order: 2; }
.pjvhsitfcbt .loeygyirq { order: 1; }

.loeygyirq { position: relative; }

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

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

.loeygyirq::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;
}

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

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

.wenfzfmyrboqfgg + .dvgucyujjkg,
.wenfzfmyrboqfgg + .acgbgklfopoqvp,
.wenfzfmyrboqfgg + .ypmfzanue,
.wenfzfmyrboqfgg + .xpfhodpy,
.wenfzfmyrboqfgg + .ztuzgsnmzn,
.wenfzfmyrboqfgg + .xvxuyuiujekaezpl,
.wenfzfmyrboqfgg + .vnvxdbpqqeyoby {
  margin-top: 48px;
}

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

.dvgucyujjkg 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);
}

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

.dvgucyujjkg 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%);
}

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

.woogqbmypz {
  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;
}

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

.rnmwkydfn {
  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);
}

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

.woogqbmypz:hover .rnmwkydfn {
  background: var(--gold);
  color: var(--ink);
}

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

.pvnhqzxeegtwcpf p { margin: 0; }

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

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

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

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

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

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

.fiitfepz { list-style: none; }

.fiitfepz 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;
}

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

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

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

/* ============ Tables ============ */
.xpfhodpy {
  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 .xpfhodpy. 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. */
.qmpvvuppotm,
.kxkpttml,
.bechzqxea {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
}

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

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

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

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

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

.gguysezankjxtvoz {
  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);
}

.deocfyuatybw:hover .gguysezankjxtvoz { opacity: 1; }

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

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

.hvumhzgnw { margin-top: 32px; }

/* ============ Author (optional) ============ */
.uhdhsqvlzazz {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

summary.mjifvsjgygem:hover,
details.wsjtenpixlsc[kksebjqehzw] summary.mjifvsjgygem { color: var(--gold); }

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

.qinsmbqcqyczncc {
  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.wsjtenpixlsc[kksebjqehzw] .qinsmbqcqyczncc {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
}

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

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

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

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

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

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

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

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

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

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

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

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

.vkugxaicolsxuxo {
  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;
}

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

.xrjjyrnlwfo {
  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);
}

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

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

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

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

.yxifqisdhfls:last-child { border-bottom: none; }
.jlncuaqcay { padding: 32px 0; }

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

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

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

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

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

.msdicqqidwishaxf { padding: 24px 0; }

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

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

.jqcvoaibopv {
  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);
}

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

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

.rijusbpn {
  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;
}

.tichltkk { padding: 16px 0; }

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

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

.vhnfvhnwifl {
  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) {
  .nucbewrbk {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "cta"
      "text";
    grid-template-rows: auto auto auto auto;
    gap: 24px;
  }

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

  .ijsluiaxixekz,
  .vzcenpxtvtoisrnf { text-align: center; }

  .vzcenpxtvtoisrnf { margin: 0 auto; }

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

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

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

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

  .wenfzfmyrboqfgg .loeygyirq { order: -1 !important; }
  .wenfzfmyrboqfgg .qmpvvuppotm { order: 1 !important; }

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

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

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

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

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

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

  .vrkgsdynebpxacjp { justify-content: center; }
  .hftkflkthitpj { justify-content: center; }
  .gthcinnk { justify-content: center; }
}

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

  .nkhspzjjrwdt { display: none; }
  .qviislwpf { display: none; }
  .rhswhbhw { display: none; }

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

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

  .vywqsunzwgnoox { padding: 60px 0; }

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

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

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

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

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

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

  table { min-width: 460px; }
}

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

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

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

  .vufxswqsqvpp .avfkyktmggnuoxjc {
    width: 100%;
    justify-content: center;
  }

  .ydvqpaxbb,
  .pppagxvawbv,
  .vkugxaicolsxuxo,
  .xrjjyrnlwfo,
  .vhnfvhnwifl { clip-path: none; }

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