@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;500;600;700&family=Karla:wght@400;500;600;700&display=swap');
/* ============================================================
   GGBet RO — "Emerald Vault Glass"
   namespace: rgg-  |  lang: ro  |  archetype: magazine
   ============================================================ */



:root{
  --bg-main:#0B1412;
  --bg-card:rgba(20,34,31,.62);
  --bg-pane-solid:#111E1B;
  --bg-bar:#F4FBF8;            /* header/footer surface — LIGHT (logo tone = dark) */
  --bg-bar-alt:#E4EEE9;
  --accent:#FF6633;
  --accent-2:#12E39A;
  --text-main:#F4FBF8;
  --text-muted:#8FA9A1;
  --text-on-bar:#0B1412;
  --text-on-bar-muted:#4A6159;
  --border:rgba(255,255,255,.10);
  --border-bar:rgba(11,20,18,.14);
  --edge-hi:rgba(255,255,255,.10);

  --font-head:'Zilla Slab',Georgia,'Times New Roman',serif;
  --font-body:'Karla',system-ui,-apple-system,'Segoe UI',Arial,sans-serif;

  --r-pane:16px;
  --r-btn:12px;
  --r-pill:999px;

  --wrap:1300px;               /* magazine → wide */
  --measure:1180px;            /* long-form return measure */
  --gutter:clamp(1rem,4vw,2.25rem);
  --rhythm:clamp(48px,7vw,76px);
  --pane-pad:clamp(20px,3vw,30px);

  --blur:blur(18px) saturate(115%);
}

*,*::before,*::after{box-sizing:border-box}

html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}

body{
  margin:0;
  overflow-x:hidden;
  background:var(--bg-main);
  color:var(--text-main);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.68;
  overflow-wrap:break-word;
  /* single very soft emerald radial — the vault under-glow */
  background-image:
    radial-gradient(1100px 720px at 78% -8%, rgba(18,227,154,.10), transparent 62%),
    radial-gradient(760px 520px at 8% 4%, rgba(255,102,51,.06), transparent 60%);
  background-repeat:no-repeat;
  background-attachment:scroll;
}

img,svg,video{max-width:100%}
img{border-style:none}

h1,h2,h3,h4,h5{font-family:var(--font-head);font-weight:600;line-height:1.16;margin:0 0 .6em;letter-spacing:-.01em}
h1{font-size:clamp(1.8rem,5.4vw,3.75rem);font-weight:700;letter-spacing:-.02em}
h2{font-size:clamp(1.6rem,3.2vw,2.4rem)}
h3{font-size:clamp(1.15rem,1.9vw,1.4rem)}
h4{font-size:1.05rem}
p{margin:0 0 1.1em}
a{color:var(--accent-2);text-decoration:none}
a:hover{text-decoration:underline}
ul,ol{margin:0 0 1.2em;padding-inline-start:1.2em}
li{margin-bottom:.5em}
strong{font-weight:700;color:var(--text-main)}
small{font-size:.82rem}
hr{border:0;border-top:1px solid var(--border);margin:2rem 0}

:focus-visible{outline:3px solid var(--accent);outline-offset:3px;border-radius:4px}

/* ---------- container / sections ---------- */
.rgg-container{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gutter)}
.rgg-container--measure{max-width:var(--measure)}

.rgg-section{padding-block:var(--rhythm);position:relative}
.rgg-section--alt{background:rgba(255,255,255,.05);border-block:1px solid var(--border)}
.rgg-section--tight{padding-block:calc(var(--rhythm) * .62)}

/* editorial numbered opener — the page IS a sequence of numbered departments */
.rgg-eyebrow{
  font-family:var(--font-head);font-weight:600;font-size:.82rem;
  letter-spacing:.22em;text-transform:uppercase;color:var(--accent-2);
  margin:0 0 .9rem;display:flex;align-items:center;gap:.9rem;
}
.rgg-eyebrow::after{content:"";flex:1;height:1px;background:var(--border)}
.rgg-eyebrow--muted{color:var(--text-muted)}

.rgg-sec-head{margin-bottom:clamp(1.4rem,3vw,2.4rem);max-width:none}
.rgg-sec-head p{color:var(--text-muted);margin-bottom:0}

.rgg-lead{font-size:clamp(1.05rem,1.6vw,1.2rem);color:var(--text-muted)}

/* magazine asymmetry: heading offset left, body slightly indented */
@media (min-width:1024px){
  .rgg-sec-head--offset{display:grid;grid-template-columns:minmax(0,7fr) minmax(0,5fr);gap:clamp(1.5rem,4vw,3.5rem);align-items:end}
  .rgg-sec-head--offset > *{min-width:0}
}

/* ---------- glass pane primitive ---------- */
.rgg-pane{
  background:var(--bg-card);
  -webkit-backdrop-filter:var(--blur);
  backdrop-filter:var(--blur);
  border:1px solid var(--border);
  border-top-color:var(--edge-hi);
  border-radius:var(--r-pane);
  padding:var(--pane-pad);
  position:relative;
  min-width:0;
}

/* ---------- buttons ---------- */
.rgg-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--font-body);font-weight:700;font-size:1rem;line-height:1.1;
  padding:.92em 1.6em;border-radius:var(--r-btn);border:1px solid transparent;
  background:var(--accent);color:#0B1412;
  cursor:pointer;text-decoration:none;
  transition:transform .18s ease,background-color .18s ease,box-shadow .18s ease;
}
.rgg-btn:hover{background:#FF7A4D;transform:translateY(-2px);text-decoration:none;color:#0B1412}
.rgg-btn:active{transform:translateY(0)}
.rgg-btn--ghost{background:transparent;color:var(--accent-2);border-color:var(--accent-2)}
.rgg-btn--ghost:hover{background:rgba(18,227,154,.10);color:var(--accent-2)}
.rgg-btn--sm{font-size:.88rem;padding:.7em 1.15em}
.rgg-btn--lg{font-size:1.08rem;padding:1.02em 1.9em}
.rgg-btn--block{display:flex;width:100%}

/* ghost on a LIGHT bar needs a dark-legible label */
.rgg-header .rgg-btn--ghost,.rgg-footer .rgg-btn--ghost{color:#0A7A55;border-color:#0A7A55}
.rgg-header .rgg-btn--ghost:hover,.rgg-footer .rgg-btn--ghost:hover{background:rgba(10,122,85,.08);color:#0A7A55}

.rgg-pill{
  display:inline-flex;align-items:center;gap:.4rem;
  border-radius:var(--r-pill);padding:.34em .9em;
  font-size:.78rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  background:rgba(18,227,154,.12);color:var(--accent-2);border:1px solid rgba(18,227,154,.30);
}
.rgg-pill--accent{background:rgba(255,102,51,.14);color:var(--accent);border-color:rgba(255,102,51,.34)}

/* ---------- icons ---------- */
.rgg-icon{width:1.5em;height:1.5em;display:inline-block;vertical-align:middle;flex-shrink:0;stroke:currentColor;fill:none}
.rgg-icon--lg{width:2rem;height:2rem}
.rgg-icon--sm{width:1.1em;height:1.1em}

/* ============================================================
   HEADER — light bar (LOGO_TONE = dark)
   ============================================================ */
.rgg-header{
  position:sticky;top:0;z-index:60;
  background:var(--bg-bar);
  border-bottom:1px solid var(--border-bar);
  box-shadow:0 1px 0 rgba(11,20,18,.06);
}
.rgg-header__bar{
  max-width:var(--wrap);margin-inline:auto;padding:.62rem var(--gutter);
  display:flex;align-items:center;gap:clamp(.6rem,2vw,1.5rem);
  min-width:0;
}
.rgg-logo{display:inline-flex;align-items:center;flex-shrink:1;min-width:0;text-decoration:none}
.rgg-logo__img{
  display:block;height:40px;width:auto;object-fit:contain;
  max-width:min(45vw,200px);
}
.rgg-nav{display:flex;align-items:center;gap:clamp(.5rem,1.4vw,1.35rem);margin-inline-start:auto;min-width:0}
.rgg-nav a:not(.rgg-btn){
  font-size:.94rem;font-weight:600;color:var(--text-on-bar);
  padding:.45rem .1rem;text-decoration:none;white-space:nowrap;
  border-bottom:2px solid transparent;
}
.rgg-nav a:not(.rgg-btn):hover,
.rgg-nav a:not(.rgg-btn):focus-visible{color:#0A7A55;border-bottom-color:var(--accent);text-decoration:none}
.rgg-nav a:not(.rgg-btn)[aria-current="page"]:not(.rgg-btn){color:#0A7A55;border-bottom-color:var(--accent)}

.rgg-header__cta{flex-shrink:0}
.rgg-nav .rgg-btn{display:none}          /* dropdown copy hidden on desktop */

.rgg-burger{
  display:none;flex-shrink:0;
  width:44px;height:44px;padding:0;
  align-items:center;justify-content:center;flex-direction:column;gap:5px;
  background:transparent;border:1px solid var(--border-bar);border-radius:10px;cursor:pointer;
}
.rgg-burger span{display:block;width:22px;height:2px;background:var(--text-on-bar);border-radius:2px;transition:transform .2s,opacity .2s}
.rgg-header.is-open .rgg-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.rgg-header.is-open .rgg-burger span:nth-child(2){opacity:0}
.rgg-header.is-open .rgg-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media (max-width:1023px){
  .rgg-burger{display:flex}
  .rgg-nav{
    display:none;
    position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--bg-bar);border-bottom:1px solid var(--border-bar);
    padding:.5rem var(--gutter) 1.1rem;margin-inline-start:0;
    box-shadow:0 18px 30px rgba(11,20,18,.18);
    max-height:calc(100vh - 64px);overflow-y:auto;
  }
  .rgg-header.is-open .rgg-nav{display:flex}
  .rgg-nav a:not(.rgg-btn){padding:.8rem 0;border-bottom:1px solid var(--border-bar);white-space:normal}
  .rgg-nav .rgg-btn{display:flex;width:100%;margin-top:1rem}
}
@media (max-width:479px){
  /* CTA остаётся видимым — сжимается, а не прячется в бургер */
  .rgg-header__cta{font-size:.82rem;padding:.7em .85em}
  .rgg-logo__img{height:32px;max-width:min(38vw,140px)}
  .rgg-header__bar{padding-inline:1rem;gap:.5rem}
}

/* ============================================================
   HERO — pattern: stacked
   ============================================================ */
.rgg-hero{padding-block:clamp(2.5rem,6vw,4.75rem) var(--rhythm);position:relative;overflow:hidden}
.rgg-hero__inner{display:flex;flex-direction:column;gap:clamp(1.5rem,3.5vw,2.5rem);min-width:0}
.rgg-hero__text{max-width:none}
.rgg-hero h1{margin-bottom:.45em}
.rgg-hero__sub{font-size:clamp(1.05rem,1.9vw,1.28rem);color:var(--text-muted);margin-bottom:1.6em}
.rgg-hero__actions{display:flex;flex-wrap:wrap;gap:.85rem;align-items:center}
.rgg-hero__note{font-size:.9rem;color:var(--text-muted);margin:1.1rem 0 0}

/* stacked: visual sits BELOW the text, full container width */
.rgg-hero__visual{
  width:100%;min-width:0;position:relative;border-radius:var(--r-pane);overflow:hidden;
  border:1px solid var(--border);border-top-color:var(--edge-hi);
  background:linear-gradient(135deg,#13241F 0%,#0E1B18 55%,#1A2C26 100%);
  aspect-ratio:3/2;max-height:70vh;
}
.rgg-hero__visual::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(0deg,rgba(11,20,18,.55),transparent 55%);
}
.rgg-hero__img{
  display:block;width:100%;height:auto;max-height:70vh;
  aspect-ratio:3/2;object-fit:cover;border-radius:var(--r-pane);
}
/* when a real img is injected the wrapper stops faking an aspect box */
.rgg-hero__visual:has(.rgg-hero__img){aspect-ratio:auto;background:none;border:0;border-radius:var(--r-pane)}
.rgg-hero__visual:has(.rgg-hero__img)::after{display:none}

/* floating glass offer-card that may ride the hero (magazine signature) */
.rgg-offer{
  background:var(--bg-card);-webkit-backdrop-filter:var(--blur);backdrop-filter:var(--blur);
  border:1px solid var(--border);border-top-color:var(--edge-hi);
  border-radius:var(--r-pane);padding:var(--pane-pad);position:relative;min-width:0;
}
.rgg-offer .rgg-pill{position:absolute;top:1rem;right:1rem}
.rgg-offer__figure{
  font-family:var(--font-head);font-weight:700;color:var(--accent);
  font-size:clamp(2.6rem,6vw,4rem);line-height:1;margin:.4rem 0 .5rem;
  font-variant-numeric:tabular-nums;
}
.rgg-offer__terms{font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);margin:0 0 1.2rem}

/* ============================================================
   OVERVIEW / prose
   ============================================================ */
.rgg-overview__inner{min-width:0}
.rgg-prose > :last-child{margin-bottom:0}
.rgg-prose{max-width:72ch}
.rgg-prose h3{margin-top:1.8em}
.rgg-prose ul li::marker{color:var(--accent-2)}

/* magazine 7/5 split: wide feature column + narrow rail */
.rgg-layout{display:grid;gap:clamp(1.5rem,3.5vw,2.75rem);grid-template-columns:1fr;min-width:0}
.rgg-layout > *{min-width:0}
@media (min-width:960px){
  .rgg-layout{grid-template-columns:minmax(0,7fr) minmax(0,5fr);align-items:start}
  .rgg-layout__rail{position:sticky;top:96px;display:flex;flex-direction:column;gap:1.1rem}
}

/* ============================================================
   FEATURE CARDS — pattern: grid
   ============================================================ */
.rgg-features{
  display:grid;gap:clamp(1rem,2vw,1.4rem);
  grid-template-columns:repeat(auto-fit,minmax(min(250px,100%),1fr));
}
.rgg-features > *{min-width:0}
.rgg-feature{
  background:var(--bg-card);-webkit-backdrop-filter:var(--blur);backdrop-filter:var(--blur);
  border:1px solid var(--border);border-top-color:var(--edge-hi);
  border-radius:var(--r-pane);padding:var(--pane-pad);
  transition:transform .18s ease,border-color .18s ease;
}
.rgg-feature:hover{transform:translateY(-2px);border-color:rgba(18,227,154,.32)}
.rgg-feature__icon{color:var(--accent-2);display:flex;margin-bottom:.9rem}
.rgg-feature__icon .rgg-icon{width:2rem;height:2rem}
.rgg-feature h3{margin-bottom:.45em;font-size:1.18rem}
.rgg-feature p{color:var(--text-muted);margin-bottom:0;font-size:.97rem}

/* ---------- cards-grid (second level) ---------- */
.rgg-cards{
  display:grid;gap:clamp(1rem,2vw,1.4rem);
  grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));
}
.rgg-cards > *{min-width:0}
.rgg-card{
  background:var(--bg-card);-webkit-backdrop-filter:var(--blur);backdrop-filter:var(--blur);
  border:1px solid var(--border);border-top-color:var(--edge-hi);
  border-radius:var(--r-pane);padding:var(--pane-pad);
}
.rgg-card h3{font-size:1.08rem;margin-bottom:.4em}
.rgg-card p{color:var(--text-muted);font-size:.95rem;margin-bottom:0}
.rgg-card__meta{font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.5rem}

/* ============================================================
   DATA TABLE — editorial heads
   ============================================================ */
.rgg-table-wrap{overflow-x:auto;max-width:100%;margin-block:1.5rem;border-radius:var(--r-pane);border:1px solid var(--border);background:var(--bg-card);-webkit-backdrop-filter:var(--blur);backdrop-filter:var(--blur)}
/* подсказка «таблица скроллится вбок»: затухание у правого края */
@media (max-width:719px){
  .rgg-table-wrap{
    -webkit-mask-image:linear-gradient(90deg,#000 88%,rgba(0,0,0,.25));
    mask-image:linear-gradient(90deg,#000 88%,rgba(0,0,0,.25));
  }
}
.rgg-table-wrap:focus-visible{outline:3px solid var(--accent);outline-offset:3px}
.rgg-table{width:100%;border-collapse:collapse;font-size:.96rem;min-width:560px}
.rgg-table th,.rgg-table td{padding:.95rem 1.1rem;text-align:start;vertical-align:top;border-bottom:1px solid var(--border)}
.rgg-table thead th{
  background:rgba(18,227,154,.12);
  font-family:var(--font-head);font-weight:600;font-size:.82rem;
  letter-spacing:.14em;text-transform:uppercase;color:var(--text-main);
  white-space:nowrap;font-variant-numeric:tabular-nums;
}
.rgg-table td{color:var(--text-muted)}
.rgg-table td:first-child{color:var(--text-main);font-weight:600}
.rgg-table tbody tr:last-child td{border-bottom:0}
.rgg-table tbody tr:hover td{background:rgba(255,255,255,.03)}
.rgg-table .rgg-num{font-variant-numeric:tabular-nums;white-space:nowrap}
/* one row wins, visibly */
.rgg-table tbody tr.is-best td{background:rgba(255,255,255,.05)}
.rgg-table tbody tr.is-best td:first-child{box-shadow:inset 3px 0 0 var(--accent)}

/* ---------- payments table ---------- */
.rgg-pay__method{display:flex;align-items:center;gap:.7rem;min-width:0}
.rgg-pay__method .rgg-icon{color:var(--accent-2)}
.rgg-pay__na{color:var(--text-muted);opacity:.75}

/* ============================================================
   TWO COLS + CONTENT PANEL
   ============================================================ */
.rgg-two{display:grid;gap:clamp(1.4rem,3vw,2.5rem);grid-template-columns:1fr;align-items:start;min-width:0}
.rgg-two > *{min-width:0}
@media (min-width:768px){
  .rgg-two{grid-template-columns:minmax(0,1.35fr) minmax(0,1fr)}
  .rgg-two--rail-first{grid-template-columns:minmax(0,1fr) minmax(0,1.35fr)}
}
.rgg-two__body > :last-child{margin-bottom:0}

.rgg-panel{
  background:var(--bg-card);-webkit-backdrop-filter:var(--blur);backdrop-filter:var(--blur);
  border:1px solid var(--border);border-top-color:var(--edge-hi);
  border-radius:var(--r-pane);padding:var(--pane-pad);
}
.rgg-panel__title{
  font-family:var(--font-head);font-size:.85rem;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;color:var(--accent-2);
  margin:0 0 1.1rem;padding-bottom:.7rem;border-bottom:1px solid var(--border);
}

/* quick facts dl */
.rgg-facts{margin:0}
.rgg-facts__row{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;padding:.72rem 0;border-bottom:1px solid var(--border)}
.rgg-facts__row:last-child{border-bottom:0;padding-bottom:0}
.rgg-facts dt{color:var(--text-muted);font-size:.9rem;margin:0;min-width:0}
.rgg-facts dd{margin:0;font-weight:700;text-align:end;font-variant-numeric:tabular-nums;min-width:0}

/* checklist */
.rgg-checklist{list-style:none;margin:0;padding:0}
.rgg-checklist li{display:flex;gap:.7rem;align-items:flex-start;padding:.55rem 0;margin:0;min-width:0}
.rgg-checklist li .rgg-icon{color:var(--accent-2);margin-top:.15em}
.rgg-checklist--warn li .rgg-icon{color:var(--accent)}

/* mini stat tiles inside a panel */
.rgg-minitiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(120px,100%),1fr));gap:.7rem}
.rgg-minitiles > *{min-width:0}
.rgg-minitile{background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:12px;padding:.85rem .9rem}
.rgg-minitile__val{font-family:var(--font-head);font-weight:700;font-size:1.35rem;color:var(--text-main);font-variant-numeric:tabular-nums;line-height:1.1}
.rgg-minitile__lbl{font-size:.74rem;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-top:.3rem}

/* rating badge */
.rgg-score{display:flex;align-items:center;gap:1rem;min-width:0}
.rgg-score__val{font-family:var(--font-head);font-weight:700;font-size:3rem;line-height:1;color:var(--accent);font-variant-numeric:tabular-nums}
.rgg-score__stars{display:flex;gap:.15rem;color:var(--accent-2)}
.rgg-score__stars .rgg-icon{width:1.15rem;height:1.15rem;fill:currentColor;stroke:none}
.rgg-score__label{font-size:.85rem;color:var(--text-muted);margin-top:.3rem}

/* ============================================================
   NUMBERED LIST
   ============================================================ */
.rgg-steps{list-style:none;counter-reset:rgg-step;margin:0;padding:0}
.rgg-steps > li{counter-increment:rgg-step;position:relative;padding-inline-start:3.4rem;padding-block:.85rem;margin:0;border-bottom:1px solid var(--border)}
.rgg-steps > li:last-child{border-bottom:0}
.rgg-steps > li::before{
  content:counter(rgg-step,decimal-leading-zero);
  position:absolute;inset-inline-start:0;top:.85rem;
  font-family:var(--font-head);font-weight:700;font-size:1.05rem;color:var(--accent);
  font-variant-numeric:tabular-nums;
}
.rgg-steps h3{font-size:1.05rem;margin-bottom:.25em}
.rgg-steps p{color:var(--text-muted);margin-bottom:0;font-size:.96rem}

/* ============================================================
   STATS BAR — pattern: strip
   ============================================================ */
.rgg-stats{display:flex;flex-wrap:wrap;padding-block:.4rem;min-width:0}
.rgg-stat{
  flex:1 1 170px;min-width:0;
  padding:.9rem clamp(.9rem,2vw,1.8rem);
  border-inline-start:1px solid var(--border);
}
.rgg-stat:first-child{border-inline-start:0;padding-inline-start:0}
.rgg-stat__val{font-family:var(--font-head);font-weight:700;font-size:clamp(1.6rem,3vw,2.15rem);line-height:1.05;color:var(--text-main);font-variant-numeric:tabular-nums}
.rgg-stat__val em{font-style:normal;color:var(--accent)}
.rgg-stat__lbl{font-size:.78rem;letter-spacing:.13em;text-transform:uppercase;color:var(--text-muted);margin-top:.4rem}
@media (max-width:639px){
  .rgg-stat{flex-basis:calc(50% - .01px);border-inline-start:0;border-top:1px solid var(--border);padding-inline:0 1rem}
  .rgg-stat:first-child,.rgg-stat:nth-child(2){border-top:0}
}

/* ============================================================
   CATEGORIES BAR
   ============================================================ */
.rgg-cats{display:flex;flex-wrap:wrap;gap:.55rem;padding:0;margin:0;list-style:none}
.rgg-cats li{margin:0;min-width:0}
.rgg-cats a,.rgg-cat{
  display:inline-flex;align-items:center;gap:.4rem;
  border-radius:var(--r-pill);padding:.5em 1.05em;
  background:rgba(255,255,255,.05);border:1px solid var(--border);
  color:var(--text-main);font-size:.88rem;font-weight:600;text-decoration:none;white-space:nowrap;
}
.rgg-cats a:hover{border-color:var(--accent-2);color:var(--accent-2);text-decoration:none}
.rgg-cats a.is-active{background:rgba(255,102,51,.14);border-color:rgba(255,102,51,.4);color:var(--accent)}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.rgg-page-header{padding-block:clamp(2rem,4.5vw,3.2rem) clamp(1.5rem,3vw,2.2rem);border-bottom:1px solid var(--border);position:relative;overflow:hidden}
.rgg-page-header__inner{position:relative;z-index:1;min-width:0}
.rgg-page-header h1{margin-bottom:.25em}
.rgg-page-header p{color:var(--text-muted);margin-bottom:0}

.rgg-crumb{font-size:.84rem;color:var(--text-muted);margin:0 0 .9rem;display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;list-style:none;padding:0}
.rgg-crumb li{margin:0;display:flex;align-items:center;gap:.4rem}
.rgg-crumb li+li::before{content:"/";color:var(--border);opacity:.9}
.rgg-crumb a{color:var(--text-muted);display:inline-block;padding-block:.3rem}
.rgg-crumb a:hover{color:var(--accent-2)}
.rgg-crumb [aria-current="page"]{color:var(--text-main)}

/* ============================================================
   LEGAL BODY
   ============================================================ */
.rgg-legal{counter-reset:rgg-legal;min-width:0}
.rgg-legal h2{counter-increment:rgg-legal;font-size:clamp(1.25rem,2.2vw,1.6rem);margin-top:2.4em;padding-top:1.4rem;border-top:1px solid var(--border)}
.rgg-legal h2:first-child{margin-top:0;padding-top:0;border-top:0}
.rgg-legal h2::before{content:counter(rgg-legal,decimal-leading-zero) " ";color:var(--accent);font-variant-numeric:tabular-nums;margin-inline-end:.6rem}
.rgg-legal h3{margin-top:1.6em;font-size:1.08rem}
.rgg-legal p,.rgg-legal li{color:var(--text-muted)}
.rgg-legal li::marker{color:var(--accent-2)}
.rgg-legal address{font-style:normal;color:var(--text-muted)}

/* ============================================================
   TOC
   ============================================================ */
.rgg-toc{background:var(--bg-card);-webkit-backdrop-filter:var(--blur);backdrop-filter:var(--blur);border:1px solid var(--border);border-top-color:var(--edge-hi);border-radius:var(--r-pane);padding:var(--pane-pad)}
.rgg-toc__title{font-family:var(--font-head);font-size:.85rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--accent-2);margin:0 0 .9rem}
.rgg-toc ol,.rgg-toc ul{list-style:none;margin:0;padding:0;counter-reset:rgg-toc}
.rgg-toc li{counter-increment:rgg-toc;margin:0;border-bottom:1px solid var(--border)}
.rgg-toc li:last-child{border-bottom:0}
.rgg-toc a{display:block;padding:.6rem 0;color:var(--text-main);font-size:.94rem;font-weight:600}
.rgg-toc a::before{content:counter(rgg-toc,decimal-leading-zero);color:var(--accent);font-family:var(--font-head);margin-inline-end:.7rem;font-variant-numeric:tabular-nums}
.rgg-toc a:hover{color:var(--accent-2);text-decoration:none}

/* ============================================================
   RTP / SLOT GRID
   ============================================================ */
.rgg-rtp{display:grid;gap:clamp(.6rem,1.5vw,1rem);grid-template-columns:repeat(2,minmax(0,1fr))}
@media (max-width:379px){.rgg-rtp{grid-template-columns:1fr}}
@media (min-width:640px){.rgg-rtp{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (min-width:960px){.rgg-rtp{grid-template-columns:repeat(4,minmax(0,1fr))}}
.rgg-rtp-item{
  position:relative;overflow:hidden;min-width:0;
  border-radius:var(--r-pane);border:1px solid var(--border);border-top-color:var(--edge-hi);
  background:var(--bg-card);-webkit-backdrop-filter:var(--blur);backdrop-filter:var(--blur);
  transition:transform .18s ease,border-color .18s ease;
}
.rgg-rtp-item:hover{transform:translateY(-3px);border-color:rgba(18,227,154,.35)}
.rgg-rtp-item__thumb{
  aspect-ratio:3/2;position:relative;
  background:linear-gradient(135deg,#14251F 0%,#0F1D1A 60%,#1B2E28 100%);
}
.rgg-rtp-item__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.rgg-rtp-item__body{padding:.7rem .85rem .9rem}
.rgg-rtp-item__name{font-family:var(--font-head);font-weight:600;font-size:.95rem;line-height:1.25;margin:0;color:var(--text-main)}
.rgg-rtp-item__prov{font-size:.82rem;color:var(--text-muted);margin:.25rem 0 0;letter-spacing:.06em;text-transform:uppercase}
.rgg-rtp-tooltip{
  position:absolute;bottom:0;left:0;right:0;opacity:0;transition:opacity .2s;
  background:linear-gradient(0deg,rgba(11,20,18,.95),rgba(11,20,18,.72));
  padding:.65rem .8rem;font-size:.8rem;color:var(--text-main);
  display:flex;flex-wrap:wrap;gap:.3rem .8rem;
}
.rgg-rtp-tooltip strong{color:var(--accent);font-variant-numeric:tabular-nums}
.rgg-rtp-item:hover .rgg-rtp-tooltip,.rgg-rtp-item:focus-within .rgg-rtp-tooltip{opacity:1}
/* на тач-устройствах hover недоступен — RTP/волатильность выводим постоянно, под названием */
@media (hover:none),(max-width:899px){
  .rgg-rtp-item{display:flex;flex-direction:column}
  .rgg-rtp-item__thumb{display:contents}
  .rgg-rtp-item__thumb img{aspect-ratio:3/2;height:auto;order:0}
  .rgg-rtp-item__body{order:1;padding-bottom:.4rem}
  .rgg-rtp-tooltip{
    position:static;order:2;opacity:1;background:none;
    flex-direction:column;gap:.15rem;
    padding:0 .85rem .8rem;font-size:.78rem;color:var(--text-muted);
  }
}

/* ============================================================
   FAQ — pattern: two-col
   ============================================================ */
/* одна колонка: у аккордеона в two-col разъезжались линии-разделители между колонками */
.rgg-faq{display:grid;grid-template-columns:1fr;align-items:start;gap:0;min-width:0;max-width:var(--measure)}
.rgg-faq > *{min-width:0}
.rgg-faq details{border-bottom:1px solid var(--border)}
.rgg-faq summary{cursor:pointer;padding:1rem 0;font-weight:600;list-style:none;font-family:var(--font-head);font-size:1.04rem;color:var(--text-main);display:block}
.rgg-faq summary::-webkit-details-marker{display:none}
.rgg-faq summary::before{content:'+';margin-right:.5rem;transition:transform .2s;color:var(--accent);font-weight:700}
.rgg-faq details[open] summary::before{content:'−'}
.rgg-faq details > :not(summary){padding:.5rem 0 1rem;color:var(--text-muted)}
.rgg-faq details > :not(summary):last-child{margin-bottom:0}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.rgg-cta{padding-block:var(--rhythm);position:relative}
.rgg-cta__pane{
  background:var(--bg-card);-webkit-backdrop-filter:var(--blur);backdrop-filter:var(--blur);
  border:1px solid var(--border);border-top-color:var(--edge-hi);
  border-radius:var(--r-pane);
  padding:clamp(1.75rem,4vw,3rem) clamp(1.25rem,4vw,3rem);
  display:flex;flex-direction:column;gap:1.1rem;align-items:center;text-align:center;
  min-width:0;
}
.rgg-cta__pane > *{margin:0;min-width:0}
.rgg-cta__pane h2{max-width:22ch}
.rgg-cta__pane p{color:var(--text-muted)}
.rgg-cta__actions{display:flex;flex-wrap:wrap;gap:.85rem;justify-content:center;align-items:center}
.rgg-cta__fine{font-size:.8rem;color:var(--text-muted)}

/* ============================================================
   BACK-TO-TOP (разметка создаётся в js/main.js)
   ============================================================ */
/* контрастная стрелка «наверх» (JS-стиль подключается позже — нужна специфичность body) */
body .rgg-back-top{color:#0B1412}

/* ============================================================
   FOOTER — light bar (LOGO_TONE = dark)
   ============================================================ */
.rgg-footer{
  background:var(--bg-bar);color:var(--text-on-bar);
  border-top:1px solid var(--border-bar);
  padding-block:clamp(2.25rem,5vw,3.25rem) 1.5rem;
  margin-top:var(--rhythm);
}
.rgg-footer a{color:var(--text-on-bar);text-decoration:none}
.rgg-footer a:hover{color:#0A7A55;text-decoration:underline}
.rgg-footer__top{
  display:grid;gap:clamp(1.5rem,3.5vw,2.5rem);
  grid-template-columns:1fr;min-width:0;
}
.rgg-footer__top > *{min-width:0}
@media (min-width:760px){
  .rgg-footer__top{grid-template-columns:minmax(0,1.5fr) repeat(3,minmax(0,1fr))}
}
.rgg-footer__brandtext{font-size:.9rem;color:var(--text-on-bar-muted);margin:1rem 0 0;max-width:42ch}
.rgg-footer__col-title{
  font-family:var(--font-head);font-size:.8rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;color:#0A7A55;
  margin:0 0 .9rem;
}
.rgg-footer__list{list-style:none;margin:0;padding:0}
.rgg-footer__list li{margin:0}
.rgg-footer__list a{font-size:.93rem;font-weight:500;display:inline-block;padding-block:.45rem}
.rgg-footer__age{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:var(--r-pill);
  border:2px solid var(--accent);color:#0B1412;background:transparent;
  font-family:var(--font-head);font-weight:700;font-size:.9rem;flex-shrink:0;
}
.rgg-footer__disclaimer{
  margin-top:clamp(1.75rem,4vw,2.5rem);padding-top:1.4rem;
  border-top:1px solid var(--border-bar);
  display:flex;gap:1rem;align-items:flex-start;min-width:0;
}
.rgg-footer__disclaimer p{font-size:.9rem;line-height:1.65;color:var(--text-on-bar-muted);margin:0;max-width:78ch}
.rgg-footer__disclaimer p+p{margin-top:.6rem}
.rgg-footer__bottom{
  margin-top:1.4rem;padding-top:1.2rem;border-top:1px solid var(--border-bar);
  display:flex;flex-wrap:wrap;gap:.6rem 1.5rem;justify-content:space-between;align-items:center;
  font-size:.83rem;color:var(--text-on-bar-muted);min-width:0;
}
.rgg-footer__bottom p{margin:0}
.rgg-footer__help{font-size:.84rem;color:var(--text-on-bar-muted);margin:.9rem 0 0}
.rgg-footer__help a{font-weight:700}

/* ---------- utilities ---------- */
.rgg-visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.rgg-muted{color:var(--text-muted)}
.rgg-accent{color:var(--accent)}
.rgg-center{text-align:center}
.rgg-mt-0{margin-top:0}
.rgg-mb-0{margin-bottom:0}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-logo-chip */
.rgg-footer .rgg-logo__img{filter:none;background:transparent;padding:0}
.rgg-footer .rgg-footer__logo-chip{background:transparent;padding:0}
/* sa-logo-fit */
.rgg-logo__img{object-fit:contain}
/* sa-ph-media */
.rgg-page-header:has(.rgg-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.rgg-page-header:has(.rgg-hero__img) .rgg-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.rgg-page-header:has(.rgg-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
:where(.rgg-page-header:has(.rgg-hero__img)>:not(.rgg-hero__img)){position:relative;z-index:2}
.rgg-page-header:has(.rgg-hero__img),.rgg-page-header:has(.rgg-hero__img) h1,.rgg-page-header:has(.rgg-hero__img) a,.rgg-page-header:has(.rgg-hero__img) p,.rgg-page-header:has(.rgg-hero__img) li,.rgg-page-header:has(.rgg-hero__img) span{color:#fff}
/* sa-hero-media */
.rgg-hero:has(>.rgg-hero__img){position:relative;isolation:isolate}
.rgg-hero:has(>.rgg-hero__img)>.rgg-hero__img{z-index:0}
.rgg-hero:has(>.rgg-hero__img)::after{z-index:1}
:where(.rgg-hero:has(>.rgg-hero__img)>:not(.rgg-hero__img)){position:relative;z-index:2}
/* sa-rhythm */
:where(.rgg-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.rgg-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.rgg-rtp-item,.rgg-rtp-item:hover,.rgg-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
