@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: #e84626;
  --brand-dark: #be391f;
  --brand-light: #ec674d;
  --brand-glow: rgba(232, 70, 38, 0.45);
  --login-bg: #043469;
  --login-border: rgba(17, 124, 238, 0.32);
  --login-text: #FFFFFF;
  --blue: #117cee;
  --blue-dark: #0e66c3;
  --blue-glow: rgba(17, 124, 238, 0.35);
  --header-bg: #03356a;
  --section-bg: #074588;
  --section-alt: #002347;
  --hero-bg: #094f9a;
  --bg: #00264D;
  --bg-card: #063D7A;
  --bg-card-alt: #05366b;
  --surface: rgba(5, 54, 107, 0.72);
  --surface-hover: rgba(6, 61, 122, 0.84);
  --headings: #FFFFFF;
  --text: #FFFFFF;
  --text-muted: #8a9bad;
  --border: rgba(17, 124, 238, 0.18);
  --neon-line: rgba(232, 70, 38, 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;
}

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

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

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

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

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

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

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

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

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

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

.uaqhcrnmmnxxnygy:hover { gap: 14px; }

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

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

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

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

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

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

.avevrffrxv { font-size: 1rem; }

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

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

.kahunlqvyeu img { border-radius: 0; }

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

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

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

.isnzsyvi a:hover,
.isnzsyvi a.dwixtyhrrvqph { color: var(--white); }

.isnzsyvi a:hover::after,
.isnzsyvi a.dwixtyhrrvqph::after { transform: scaleX(1); }

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

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

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

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

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

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

.vnjttnobhhuh.qqnoiictce { display: flex; }

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

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

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

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

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

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

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

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

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

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

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

.gjxdcwauscobnzh { background: var(--section-alt); }
.xsvcfbqcxydkf { background: var(--ink-3); }

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

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

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

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

.kpojrtxxzt .xohsudfppi { order: 1; }
.kpojrtxxzt .tgvaqcrsymmj { order: 2; }
.awfjzqal .xohsudfppi { order: 2; }
.awfjzqal .tgvaqcrsymmj { order: 1; }

.tgvaqcrsymmj { position: relative; }

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

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

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

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

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

.kpojrtxxzt + .lyzmunbuastut,
.kpojrtxxzt + .ipusnveddntye,
.kpojrtxxzt + .lzldfzncuvhdlhyw,
.kpojrtxxzt + .arvskegwwoa,
.kpojrtxxzt + .sozaresokebiuuf,
.kpojrtxxzt + .wlgwaqzp,
.kpojrtxxzt + .ekdceyqaysccslbx {
  margin-top: 48px;
}

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

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

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

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

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

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

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

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

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

.ybwmhbocqicweiu:hover .omuprngmskivubr {
  background: var(--gold);
  color: var(--ink);
}

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

.xhwghbwzquirfbfn p { margin: 0; }

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

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

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

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

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

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

.fakbveuzavjc { list-style: none; }

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

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

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

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

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

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

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

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

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

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

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

.joqxllxkrilkpi:hover .usttmefcral { opacity: 1; }

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

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

.vrlgaulah { margin-top: 32px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

summary.kpxzwpzn:hover,
details.xmmoqlrutwfg[qqnoiictce] summary.kpxzwpzn { color: var(--gold); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hoyuhkbos:last-child { border-bottom: none; }
.drojwywrfs { padding: 32px 0; }

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

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

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

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

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

.gucdqdzkt { padding: 24px 0; }

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

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

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

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

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

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

.egkuqlulefj { padding: 16px 0; }

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

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

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

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

  .yftbazpatvzlba,
  .mnuapbvlhyi { text-align: center; }

  .mnuapbvlhyi { margin: 0 auto; }

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

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

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

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

  .kpojrtxxzt .tgvaqcrsymmj { order: -1 !important; }
  .kpojrtxxzt .xohsudfppi { order: 1 !important; }

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

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

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

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

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

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

  .vjkhelklebc { justify-content: center; }
  .zemskbwr { justify-content: center; }
  .ijwrsysitfcbqyo { justify-content: center; }
}

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

  .wvhbnsrsnca { display: none; }
  .isnzsyvi { display: none; }
  .tvajhukonpfk { display: none; }

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

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

  .yunkijxbehevn { padding: 60px 0; }

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

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

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

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

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

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

  table { min-width: 460px; }
}

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

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

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

  .kwxjgcrtaahd .wabjgqeyu {
    width: 100%;
    justify-content: center;
  }

  .ymrciotkcrra,
  .zfqucdrvmmybb,
  .elprxbfelyejnq,
  .imcneyiokmnrj,
  .huwuzrpqwikm { clip-path: none; }

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