
:root{
  --bg: #f2f4f7;
  --surface: #ffffff;
  --surface-2: #f7f9fc;
  --text: #0b1b3a;
  --muted: #52627a;
  --border: #d7e0ed;

  --brand-blue: #1a5bb8;
  --brand-blue-dark: #0b3a8c;
  --brand-green: #2fb344;
  --brand-green-dark: #1fa03a;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --shadow: 0 14px 34px rgba(11, 27, 58, .12);
  --shadow-soft: 0 10px 22px rgba(11, 27, 58, .08);

  --container: 1180px;
  --ring: 0 0 0 4px rgba(26, 91, 184, .22);

  --header-h: 74px;
}

*{ box-sizing: border-box; }
[hidden]{ display: none !important; }
html, body{ height: 100%; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  padding-top: var(--header-h);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

.ico{ display: block; }

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

button{ font: inherit; }

.container{
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

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

.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand-blue);
  color: #fff;
  padding: .6rem .9rem;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus{ left: 12px; box-shadow: var(--ring); }

.muted{ color: var(--muted); }

/* Header */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215,224,237,.85);
  transition: transform .22s ease;
}
.site-header.is-hidden{ transform: translateY(calc(var(--header-h) * -1)); }

.header__inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand{ display: inline-flex; align-items: center; }
.brand img{ display: block; }

.header__menu-btn{ display: none; }

.site-nav{
  margin-left: .2rem;
  display: flex;
  align-items: center;
  gap: .15rem;
}
.site-nav a{
  font-weight: 500;
  color: rgba(11,27,58,.86);
  padding: .55rem .7rem;
  border-radius: 12px;
}
.site-nav a:hover{
  text-decoration: none;
  background: rgba(26,91,184,.08);
}

.site-nav__top{ display: none; }

.header__actions{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.icon-btn{
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.85);
  color: rgba(11,27,58,.88);
  box-shadow: 0 8px 16px rgba(11,27,58,.06);
}
.icon-btn:hover{ cursor: pointer; background: rgba(247,249,252,1); }
.icon-btn:focus-visible{ outline: none; box-shadow: var(--ring); }

.region{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .75rem;
  border-radius: 14px;
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.85);
  box-shadow: 0 8px 16px rgba(11,27,58,.06);
  color: rgba(11,27,58,.92);
  font-weight: 500;
}
.region:hover{ cursor: pointer; background: rgba(247,249,252,1); }
.region:focus-visible{ outline: none; box-shadow: var(--ring); }
.region img{ border-radius: 4px; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.region__code{ display: none; }

.nav-scrim{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 90;
}
.nav-scrim.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Buttons */
.btn{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .9rem 1.05rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: .15px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ text-decoration: none; transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn:focus-visible{ outline: none; box-shadow: var(--ring); }

.btn > *{ position: relative; z-index: 1; }

.btn--primary{
  background: linear-gradient(180deg, #2fe14f 0%, #1fa03a 100%);
  color: #071226;
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 18px 30px rgba(0,0,0,.12), 0 10px 20px rgba(47,179,68,.22);
}
.btn--primary::before{
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(700px 80px at 18% 0%, rgba(255,255,255,.50), transparent 60%),
    radial-gradient(900px 120px at 85% 110%, rgba(255,255,255,.18), transparent 65%);
  opacity: .75;
  pointer-events: none;
}
.btn--primary:hover{ box-shadow: 0 20px 34px rgba(0,0,0,.14), 0 12px 22px rgba(47,179,68,.26); }

.btn--secondary{
  background: linear-gradient(180deg, #0d4ad0 0%, #0b3a8c 100%);
  color: #fff;
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 30px rgba(0,0,0,.14), 0 10px 20px rgba(11,58,140,.22);
}
.btn--secondary::before{
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(700px 80px at 18% 0%, rgba(255,255,255,.32), transparent 60%),
    radial-gradient(900px 120px at 85% 110%, rgba(255,255,255,.12), transparent 65%);
  opacity: .8;
  pointer-events: none;
}
.btn--secondary:hover{ box-shadow: 0 20px 34px rgba(0,0,0,.16), 0 12px 22px rgba(11,58,140,.26); }

.btn--accent{
  background: rgba(26,91,184,.10);
  border-color: rgba(26,91,184,.18);
  color: var(--brand-blue);
  padding: .55rem .85rem;
  border-radius: 999px;
  font-weight: 700;
}

.btn--pill{ border-radius: 999px; padding: .55rem .9rem; }

.btn--small{
  padding: .6rem .85rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn--glass{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.24);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.btn--wide{
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  padding: 1.05rem 1.35rem;
  min-height: 64px;
  border-radius: 999px;
  font-weight: 700;
}


.btn__hint{
  font-weight: 600;
  font-size: .9rem;
  opacity: 1;
  padding: .38rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.20);
}
.btn--primary .btn__hint{
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.08);
}

/* Hero */
.hero{ padding: 1.25rem 0 0.2rem; }

.layout{
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  margin-top: 0;
}

.card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(215,224,237,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* App card */
.app-card{ padding: 1.4rem; }

.app-card__top{
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 1.2rem;
  align-items: center;
}

.app-card__icon{
  border-radius: 28px;
  box-shadow: 0 16px 30px rgba(11,27,58,.16);
}

.app-card h1{
  margin: 0;
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.badges{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .65rem;
}
.badge{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(247,249,252,.95);
  color: rgba(11,27,58,.82);
  font-weight: 500;
  font-size: .88rem;
}
.badge--age{
  border-color: rgba(220,38,38,.25);
  background: rgba(220,38,38,.08);
  color: rgb(185,28,28);
  font-weight: 600;
}
.badge--link:hover{
  text-decoration: none;
  background: rgba(26,91,184,.08);
  border-color: rgba(26,91,184,.18);
}

.meta-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-top: .85rem;
}

.meta-sep{
  width: 1px;
  height: 22px;
  background: rgba(215,224,237,.95);
}

.rating{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
}
.stars{
  display: inline-flex;
  gap: .12rem;
  transform: translateY(-1px);
}
.stars svg{
  width: 18px;
  height: 18px;
  fill: #f4b400;
}
.rating__value{ font-weight: 600; }

.bonus{
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
}
.bonus__value{
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-green-dark);
}

.cta-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: 1.15rem;
}
.cta-row .btn{ 
  padding: 1rem 1rem; 
  border-radius: 18px; 
  font-weight: 700;
}

/* Tabs */
.tabs{
  margin-top: 1.2rem;
  display: inline-flex;
  gap: .4rem;
  padding: .35rem;
  border-radius: 999px;
  background: rgba(247,249,252,.96);
  border: 1px solid rgba(215,224,237,.92);
}
.tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: .6rem .9rem;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(11,27,58,.80);
  user-select: none;
}
.tab:hover{ cursor: pointer; background: rgba(26,91,184,.08); }
.tab:focus-visible{ outline: none; box-shadow: var(--ring); }
.tab.is-active{ background: var(--brand-blue); color: #fff; }
.tabs-widget{ border: 0; padding: 0; margin: 0; min-inline-size: 0; }

/* CSS-only tabs (no JS)
   Markup: .tabs-widget > input[type=radio] + .tabs (labels) + .tab-panels
*/
.tabs-widget__radio{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Active tab styles driven by :checked */
#tab-android:checked ~ .tabs label[for="tab-android"],
#tab-ios:checked ~ .tabs label[for="tab-ios"]{
  background: var(--brand-blue);
  color: #fff;
}

/* Focus ring on the visible label when the (hidden) radio receives focus */
#tab-android:focus-visible ~ .tabs label[for="tab-android"],
#tab-ios:focus-visible ~ .tabs label[for="tab-ios"]{
  outline: none;
  box-shadow: var(--ring);
}

/* Panels: show the one linked to the checked radio */
#tab-android:checked ~ .tab-panels #panel-android{ display: block; }
#tab-ios:checked ~ .tab-panels #panel-ios{ display: block; }

.tab-panels{ margin-top: 1rem; }
/*
  Panels are hidden by default and shown via .is-active.
  This prevents CLS caused by toggling body classes (no-js → js) after load.
  For no-JS environments, the page includes a <noscript> style that makes
  all panels visible.
*/
.panel{ padding-top: .25rem; display: none; }
.panel.is-active{ display: block; }

.panel h2{
  margin: .65rem 0 .85rem;
  font-size: 1.15rem;
  font-weight: 600;
}

/* NOTE: previously used .no-js/.js switching to show/hide panels.
   Removed to avoid layout shift on load (CLS). */

/* Stats grid */
.stats{
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .6rem;
}
.stats__item{
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-md);
  padding: .75rem .75rem;
}
.stats dt{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(82,98,122,.92);
  font-weight: 600;
}
.stats dd{
  margin: .35rem 0 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.details{
  margin-top: 1rem;
  border-top: 1px dashed rgba(215,224,237,.92);
  padding-top: 1rem;
}
.details h3, .h3{
  margin: 0 0 .6rem;
  font-size: 1rem;
  font-weight: 600;
}

.kv{
  margin: 0;
  display: grid;
  gap: .55rem;
}
.kv__row{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .7rem;
  border-radius: 14px;
  background: rgba(247,249,252,.95);
  border: 1px solid rgba(215,224,237,.85);
}
.kv dt{
  color: rgba(11,27,58,.76);
  font-weight: 600;
}
.kv dd{
  margin: 0;
  text-align: right;
  font-weight: 500;
  color: rgba(11,27,58,.92);
}

.accordion__toggle{
  list-style: none;
  margin-top: .85rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.92);
  font-weight: 600;
  color: rgba(11,27,58,.92);
}
.accordion__toggle::-webkit-details-marker{ display: none; }
.accordion__toggle:hover{ cursor: pointer; background: rgba(247,249,252,1); }
.accordion__toggle:focus-visible{ outline: none; box-shadow: var(--ring); }
details[open] > summary.accordion__toggle svg{ transform: rotate(180deg); }
.accordion__toggle svg{ transition: transform .15s ease; }

.accordion__content{
  margin-top: 0;
  padding: 1rem 2rem;
  
  
  background: rgba(247,249,252,.86);
}

/* Requirement: style content via parent selector (no p/ul/li classes) */
div.accordion__content p{ margin: .75rem 0; color: rgba(11,27,58,.92); }
div.accordion__content p:first-child{ margin-top: 0; }
div.accordion__content p:last-child{ margin-bottom: 0; }
div.accordion__content ul{ margin: .75rem 0; padding-left: 1.1rem; }
div.accordion__content li{ margin: .35rem 0; }

/* Preview image */
.preview{ position: sticky; top: calc(var(--header-h) + 18px); }
.preview__figure{
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.preview__figure img{ border-radius: 18px; }
.preview__figure figcaption{ margin-top: .75rem; font-size: .95rem; }

/* Sections */
.section{ padding: 1.25rem 0 0; }

.section h1{
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: -.01em;
  font-weight: 650;
}
.section p{
  margin: .55rem 0 0;
  color: rgba(11,27,58,.78);  
}


/* TOC */
.toc{ padding: 1.1rem 1.25rem; }
.toc__header{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.toc__header::-webkit-details-marker{ display: none; }
.toc__header h2{ margin: 0; font-size: 1.35rem; font-weight: 600; }
.toc__toggle svg{ transition: transform .15s ease; }
.toc:not([open]) .toc__toggle svg{ transform: rotate(-90deg); }

.toc__body{ margin-top: .9rem; }
.toc__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem .8rem;
}
.toc__item{
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .25rem 0;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  font-weight: 500;
}
.toc__item:hover{ text-decoration: underline; }
.toc__icon{
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(26,91,184,.08);
  border: 1px solid rgba(26,91,184,.14);
  flex: 0 0 auto;
}
.toc__icon .ico{ width: 18px; height: 18px; }

/* Accordion list */
.accordion-list{
  display: grid;
  gap: .85rem;
}
.accordion{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.accordion__header{
  list-style: none;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(11,27,58,.95);
}
.accordion__header::-webkit-details-marker{ display: none; }
.accordion__header:hover{ cursor: pointer; background: rgba(247,249,252,1); }
.accordion__header:focus-visible{ outline: none; box-shadow: var(--ring); }

.accordion__title-wrap{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
}
.accordion__anchor{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(26,91,184,.08);
  border: 1px solid rgba(26,91,184,.14);
  color: rgba(26,91,184,.95);
  flex: 0 0 auto;
}
.accordion__anchor .ico{ width: 18px; height: 18px; }
.accordion__title{
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
}

.accordion__chev svg{ transition: transform .15s ease; }
.accordion[open] .accordion__chev svg{ transform: rotate(180deg); }

/* Steps */
.steps{
  display: grid;
  gap: .85rem;
  margin-top: .75rem;
}
.step{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  align-items: start;
  padding: .85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.92);
}
.step__media{
  display: block;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(11,27,58,.12);
  transition: transform .12s ease, box-shadow .12s ease;
}
.step__media:hover{
  cursor: pointer;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(11,27,58,.16);
}
.step__media:focus-visible{ outline: none; box-shadow: var(--ring); }
.step__media img{ width: 100%; height: auto; display: block; }

.step__text h4{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.step__text p{ margin: .45rem 0 0; color: rgba(82,98,122,.95); }

/* Tables */
.table-wrap{ overflow-x: auto; border-radius: var(--radius-md); }
.table-wrap:focus{ outline: none; box-shadow: var(--ring); }

.table-wrap table{
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(255,255,255,.96);
}
.table-wrap th,
.table-wrap td{
  border: 1px solid rgba(215,224,237,.95);
  padding: .75rem .8rem;
  vertical-align: top;
}
.table-wrap th{
  background: rgba(247,249,252,1);
  font-weight: 600;
}

.table-wrap td:first-child {
  text-align: center;
}






/* FAQ */
.faq__title{
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--brand-blue-dark);
}

.faq__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq__item{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq__summary{
  list-style: none;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
}
.faq__summary::-webkit-details-marker{ display: none; }
.faq__summary:hover{ background: rgba(247,249,252,1); }
.faq__summary:focus-visible{ outline: none; box-shadow: var(--ring); }

.faq__icon{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(26,91,184,.08);
}

.faq__q{
  flex: 1;
  font-weight: 600;
  color: var(--brand-blue);
  line-height: 1.25;
}

.faq__chev svg{ transition: transform .15s ease; }
.faq__item[open] .faq__chev svg{ transform: rotate(180deg); }

.faq__content{
  padding: 0 1.1rem 1.1rem;
}

div.faq__content p{
  margin: .6rem 0 0;
  color: rgba(82,98,122,.98);
}

.faq__buttons{
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq__buttons .btn{
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .95rem;
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.lightbox__dialog{
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 2rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem;
}
.lightbox__backdrop{
  position: fixed;
  inset: 0;
}
.lightbox__figure{
  margin: 0;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  padding: .75rem;
  display: grid;
  gap: .65rem;
  justify-items: center;
}
.lightbox__img{
  max-width: min(92vw, 920px);
  max-height: 72vh;
  border-radius: 14px;
  background: #fff;
}
.lightbox__cap{
  color: rgba(255,255,255,.92);
  font-weight: 500;
  text-align: center;
}

.lightbox__close{
  position: absolute;
  top: -56px;
  right: 0;
}

.lightbox__nav{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff;
}
.lightbox__nav:hover{ background: rgba(255,255,255,.16); }

body.modal-open{ overflow: hidden; }

/* Footer */
.site-footer{
  margin-top: 2.4rem;
  padding: 1.8rem 0 2.6rem;
  background:
    radial-gradient(1200px 360px at 18% 0%, rgba(26,91,184,.35), transparent 62%),
    radial-gradient(900px 320px at 85% 20%, rgba(47,179,68,.18), transparent 55%),
    linear-gradient(180deg, #0b1b3a 0%, #071226 100%);
  color: rgba(255,255,255,.90);
}

.footer__top{
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.footer__logo{
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.footer__copyright{
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}

.footer__platforms{
  display: flex;
  gap: .65rem;
  justify-content: flex-end;
}

.platform-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 20px rgba(0,0,0,.22);
}

.platform-btn:hover{ text-decoration: none; background: rgba(255,255,255,.12); }
.platform-btn:focus-visible{ outline: none; box-shadow: 0 0 0 4px rgba(47,179,68,.18), 0 10px 20px rgba(0,0,0,.22); }

.footer__updated{
  justify-self: end;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}

.footer__divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 1.25rem 0;
  border-radius: 999px;
}

.footer__bottom{
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 1.5rem;
  align-items: start;
}

.footer__disclaimer p{
  margin: .75rem 0 0;
  color: rgba(255,255,255,.78);
  
  font-size: 11px;
}
.footer__disclaimer p:first-child{ margin-top: 0; }

.footer__links{
  display: flex;
  justify-content: end;
}

.footer__links a{
  color: rgba(255,255,255,.86);
  font-weight: 600;
}

.footer__links a:hover{
  color: #fff;
  text-decoration: underline;
}

.footer__right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .9rem;
}

.footer__badges{
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: flex-end;
}

.footer-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .48rem .62rem;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 20px rgba(0,0,0,.20);
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
}

.footer-badge:hover{
  text-decoration: none;
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 26px rgba(0,0,0,.26);
}

.footer-badge:active{ transform: translateY(0); }

.footer-badge:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(47,179,68,.18), 0 10px 20px rgba(0,0,0,.22);
}

.footer-badge img{
  height: 34px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.18));
}

.footer-badge--pagcor img{
  height: 44px;
  max-width: 240px;
}

.small_text{
  font-size: 12px;
}

img.bannerbet{  
  
  margin:0 auto;
}

.btn-bet a{
  max-width: 350px;    
}

.btn-bet a span{  
  color: #071226;
  
}


/* Responsive */
@media (max-width: 1024px){
  .layout{ grid-template-columns: 1fr; }
  .preview{ position: static; }
}

@media (max-width: 920px){
  :root{ --header-h: 64px; }

  body{ padding-top: var(--header-h); }

  .header__menu-btn{ display: inline-flex; }

  /* Mobile region label */
  .region__name{ display: none; }
  .region__code{ display: inline; font-weight: 600; }

  /* Drawer menu */
  .site-nav{
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 340px);
    height: 100vh;
    padding: 1rem;
    background: rgba(255,255,255,.98);
    border-right: 1px solid rgba(215,224,237,.95);
    box-shadow: 0 24px 50px rgba(0,0,0,.24);
    transform: translateX(-110%);
    transition: transform .2s ease;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
  }
  .site-nav.is-open{ transform: translateX(0); }

  .site-nav__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: .75rem;
    margin-bottom: .35rem;
    border-bottom: 1px solid rgba(215,224,237,.95);
  }
  .site-nav__title{ font-weight: 600; }

  .site-nav a{ padding: .85rem .85rem; }

  .cta-row{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .faq__grid{ grid-template-columns: 1fr; }
  .faq__buttons{ grid-template-columns: 1fr; }

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

  .step{ grid-template-columns: 1fr; }
  .step__media{ max-width: 360px; }

  .footer__top{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer__updated{ justify-self: center; }
  .footer__bottom{ grid-template-columns: 1fr; }
  .footer__right{ align-items: center; }
  .footer__badges{ justify-content: center; }
  .footer__links{ justify-content: center; }
  .footer__logo{ align-items: center; }
 
  .icon-btn{display: inline-flex;}
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; }
}


@media (max-width: 650px){
  .meta-sep{display: none;}

  .footer__badges{
    display: flex;
    flex-direction: column;

  }

.table-wrap th, .table-wrap td{
  font-size: 12px;
}
}




/* ===========================
   Apps list page (page.html)
   =========================== */

.page-head{
  padding: 1.25rem 0 1rem;
}
.page-head h1{
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: -.01em;
  font-weight: 650;
}
.page-head p{
  margin: .55rem 0 0;
  color: rgba(11,27,58,.78);
  max-width: 70ch;
}

/* Grid of app cards */
.apps-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 1024px){
  .apps-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .apps-grid{ grid-template-columns: 1fr; }
}

.app-tile{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(215,224,237,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.15rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.app-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(26,91,184,.22);
  box-shadow: 0 18px 44px rgba(11,27,58,.12);
}

.app-tile__head{
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  align-items: start;
}

.app-tile__icon{
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(11,27,58,.16);
  background: #0b0f1a;
}

.app-tile__title{
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 650;
}

.app-tile__site{
  display: inline-flex;
  margin-top: .5rem;
  font-weight: 500;
  color: rgba(11,27,58,.62);
  text-decoration: none;
}
.app-tile__site:hover{
  color: var(--brand-blue);
  text-decoration: underline;
}

.app-tile .badges{ margin-top: .55rem; }

.app-tile__stats{
  margin-top: 1.05rem;
  padding-top: .95rem;
  border-top: 1px solid rgba(215,224,237,.9);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.tile-stat{
  padding: 0 .85rem;
}
.tile-stat:first-child{ padding-left: 0; }
.tile-stat:last-child{ padding-right: 0; }
.tile-stat:not(:first-child){
  border-left: 1px solid rgba(215,224,237,.9);
}

.tile-stat__value{
  display: flex;
  align-items: center;
  gap: .35rem;
  font-weight: 650;
  color: rgba(11,27,58,.9);
  white-space: nowrap;
}
.tile-stat__value .star{
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-.5px);
  color: #f59e0b;
}
.tile-stat__label{
  margin-top: .15rem;
  font-size: .84rem;
  color: rgba(11,27,58,.58);
}

/* Rich text block */
.richtext{
  padding: 1.35rem 1.25rem;
}


.richtext h2{
  margin: 0 0 .55rem;
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  letter-spacing: -.01em;  
}
.richtext h3{
  margin: 1.1rem 0 .35rem;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 650;
}

.richtext h4{
  margin: 1.1rem 0 .35rem;
  font-size: clamp(1.05rem, 1.3vw, 1.30rem);
  font-weight: 650;
}

.richtext p{
  margin: .9rem 0;
  color: rgba(11,27,58,.78);
  line-height: 1.75;
}

.richtext ul,
.richtext ol{
  margin: .65rem 0 1rem 1.25rem;
  padding: 0;
  color: rgba(11,27,58,.78);
}
.richtext li{
  margin: .35rem 0;
  line-height: 1.7;
  margin-left: 20px;
}


.richtext a{ color: var(--brand-blue); text-decoration: underline; }
.richtext a:hover{ text-decoration-thickness: 2px; }

/* Tip / note block
   Markup: <aside class="note"><span class="icon">💡</span><p>text</p></aside>
*/
.note{
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.05rem;
  margin: 1rem 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,91,184,.18);
  background:
    radial-gradient(900px 120px at 0% 0%, rgba(26,91,184,.14), transparent 58%),
    radial-gradient(900px 140px at 100% 110%, rgba(47,179,68,.10), transparent 55%),
    rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}

.note .icon{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  background: rgba(245,158,11,.16);
  border: 1px solid rgba(245,158,11,.22);
  box-shadow: 0 10px 18px rgba(11,27,58,.10);
}

.note p{
  margin: 0;
  color: rgba(11,27,58,.80);
  line-height: 1.75;
}

.richtext .note{ margin: 1.05rem 0; }

@media (max-width: 520px){
  .note{ padding: .95rem .95rem; gap: .75rem; }
  .note .icon{ width: 38px; height: 38px; }
}

.table-wrap{
  margin: .8rem 0 1rem;
  overflow-x: auto;
  border: 1px solid rgba(215,224,237,.92);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
}

.table-wrap table{
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.table-wrap th,
.table-wrap td{
  text-align: left;
  padding: .8rem .9rem;
  border-bottom: 1px solid rgba(215,224,237,.92);
  vertical-align: top;
}

.table-wrap th{
  background: rgba(247,249,252,.95);
  color: rgba(11,27,58,.72);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 650;
}

.table-wrap tr:nth-child(even) td{
  background: rgba(247,249,252,.55);
}

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


.site-nav a[aria-current="page"]{
  background: rgba(26,91,184,.10);
  border: 1px solid rgba(26,91,184,.18);
  color: rgba(11,27,58,.92);
}


.app-tile__title a{
  color: inherit;
  text-decoration: none;
}
.app-tile__title a:hover{
  text-decoration: underline;
}


/* ===========================
   Bonuses + Reviews blocks
   =========================== */

.content-stack{
  margin-top: 1.25rem;
  display: grid;
  gap: 1.25rem;
}

.bonuses,
.reviews{
  padding: 1.25rem 1.25rem;
}

/* Bonuses */
.bonuses__head{
  margin-bottom: 1.05rem;
}
.bonuses__head h2{
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  font-weight: 650;
}
.bonuses__head p{
  margin: .4rem 0 0;
  color: rgba(11,27,58,.78);
  max-width: 80ch;
}

.bonuses__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

@media (max-width: 900px){
  .bonuses__grid{ grid-template-columns: 1fr; }
}

.bonus-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(215,224,237,.92);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: 165px 1fr;
}

.bonus-card__banner{
  position: relative;
  padding: 1rem 1rem;
  color: #fff;
  background:
    radial-gradient(900px 220px at 88% 30%, rgba(47,179,68,.28), transparent 62%),
    radial-gradient(700px 180px at 20% 0%, rgba(26,91,184,.45), transparent 65%),
    linear-gradient(180deg, #071226 0%, #0b1b3a 100%);
}

.bonus-card__banner::before{
  content: "";
  position: absolute;
  inset: -3px;
  background:
    radial-gradient(320px 160px at 70% 40%, rgba(255,255,255,.16), transparent 70%),
    radial-gradient(420px 220px at 35% 120%, rgba(25,196,255,.14), transparent 68%);
  opacity: .95;
  pointer-events: none;
}

.bonus-card__banner > *{ position: relative; z-index: 1; }

.bonus-card__tag{
  display: inline-flex;
  align-items: center;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
}

.bonus-card__cap{
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 750;
  font-size: .95rem;
  backdrop-filter: blur(10px);
}

.bonus-card__brand{
  position: absolute;
  left: 1rem;
  bottom: .9rem;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 2.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.bonus-card__brand-one{ color: #fff; }
.bonus-card__brand-two{ color: #19c4ff; }

.bonus-card__brand::after{
  content: "";
  position: absolute;
  left: 0;
  right: -20px;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, rgba(25,196,255,.55), transparent);
  opacity: .9;
}

.bonus-card__body{
  padding: 1.05rem 1rem 1.1rem;
  display: grid;
  gap: .75rem;
}

.bonus-card__top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.bonus-card__kicker{
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

.bonus-card__amount{
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--brand-green-dark);
  white-space: nowrap;
}

.bonus-card__title{
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -.005em;
}

.bonus-card__meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(11,27,58,.70);
  font-weight: 500;
}

.bonus-card__details{
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
}

.bonus-card__details:hover{
  text-decoration: underline;
}

.bonus-card .btn--wide{
  margin-top: .35rem;
  min-height: 56px;
}

@media (max-width: 520px){
  .bonus-card{ grid-template-rows: 150px 1fr; }
  .bonus-card__brand{ font-size: 2rem; }
  .bonus-card__cap{ font-size: .9rem; }
}


/* Reviews */
.reviews__head{
  margin-bottom: 1.05rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
}

.reviews__head h2{
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  font-weight: 650;
}

.reviews__title p{
  margin: .4rem 0 0;
  color: rgba(11,27,58,.78);
  max-width: 80ch;
}

.reviews__seeall{
  justify-self: center;
}

.reviews__rating{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .7rem;
  border-radius: 999px;
  background: rgba(247,249,252,.96);
  border: 1px solid rgba(215,224,237,.92);
}

.reviews__rating-label{
  color: rgba(11,27,58,.72);
  font-weight: 600;
}

.reviews__rating-value{
  font-weight: 900;
  letter-spacing: -.01em;
}

.stars-rating{
  --rating: 0;
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  transform: translateY(-1px);
}

.stars-rating::before{
  content: "★★★★★";
  color: rgba(244,180,0,.28);
}

.stars-rating::after{
  content: "★★★★★";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--rating) * 20%);
  overflow: hidden;
  color: #f4b400;
  white-space: nowrap;
}

.reviews__grid{
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

@media (max-width: 1100px){
  .reviews__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .reviews__grid{ grid-template-columns: 1fr; }
  .preview__figure img{
    display: block;
    width: 100vw;
  }
}

@media (max-width: 860px){
  .reviews__head{
    grid-template-columns: 1fr;
    align-items: start;
  }
  .reviews__seeall{ justify-self: start; }
  .reviews__rating{ justify-self: start; }
}

.review-card{
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(215,224,237,.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.05rem 1rem;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.review-card p{
  margin: 0 0 1rem;
  color: rgba(11,27,58,.78);
  line-height: 1.75;
}

.review-card__meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(11,27,58,.62);
  margin-bottom: .9rem;
}

.review-card__label{
  font-weight: 500;
  font-size: .92rem;
}

.review-card__score{
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-weight: 900;
  color: rgba(11,27,58,.92);
}

.review-card__score-star{
  color: #f59e0b;
  transform: translateY(-.5px);
}

.review-card__footer{
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid rgba(215,224,237,.92);
}

.review-card__person{
  display: flex;
  align-items: center;
  gap: .75rem;
}

.avatar{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: .02em;
  color: rgba(11,27,58,.82);
  background:
    radial-gradient(24px 24px at 30% 25%, rgba(255,255,255,.65), transparent 65%),
    linear-gradient(180deg, rgba(26,91,184,.16), rgba(47,179,68,.10));
  border: 1px solid rgba(215,224,237,.92);
}

.avatar img{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  
  
}

.review-card__name{
  font-weight: 800;
  letter-spacing: -.01em;
}

.review-card__sub{
  margin-top: .15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  color: rgba(11,27,58,.62);
  font-size: .9rem;
}

.level-badge{
  display: inline-flex;
  align-items: center;
  padding: .18rem .5rem;
  border-radius: 10px;
  background: rgba(245, 208, 12, .95);
  border: 1px solid rgba(0,0,0,.10);
  color: rgba(0,0,0,.90);
  font-weight: 900;
  letter-spacing: .06em;
  font-size: .72rem;
}






/*
images 
*/
.img-center{
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 16px;               
  flex-wrap: nowrap;       
}

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


@media (max-width: 768px){
  .img-center{
    flex-wrap: wrap;
  }

  
  .img-center img{
    width: calc(50% - 8px); 
  }
}

@media (max-width: 420px){
  .img-center img{
    width: 100%;
  }
}






/* СИЛЬНЫЕ СТИЛИ ДЛЯ МОБИЛЬНОЙ ВЕРСИИ - добавьте в КОНЕЦ styles.css */

/* Медиа-запрос с высокой специфичностью */
@media screen and (max-width: 767px) {


.app-card__top{
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
}


}
