:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #5b6476;
  --line: rgba(15, 23, 42, 0.10);
  --card: #ffffff;
  --chip: rgba(15, 23, 42, 0.06);
  --brand: #0b57d0; /* inspired by Play button */
  --brand-2: #138a37; /* accessible green for accents */
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.10);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1024px;
  --tap: 44px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Avoid overly-bold typography while still allowing emphasis */
strong {
  font-weight: 600;
}

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

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

.card a{color: #0b57d0}
.card a:hover{color: #02307a}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus { left: 8px; }

/* Top bar */
.topbar {
  
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  max-width: var(--max);
  margin: 0 auto;
}


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

.brand__mark {
  display: grid;
  place-items: center;  
  color: var(--brand);  
}

.brand__text {
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.topbar__actions {
  display: inline-flex;
  gap: 6px;
}

.icon-btn {
  min-width: var(--tap);
  min-height: var(--tap);
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 24px;
  padding: 0 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: var(--max);
  margin: 0 auto;
}

.tabs::-webkit-scrollbar { display: none; }
.tabs { scrollbar-width: none; }

.tab {
  position: relative;
  padding: 10px 2px 12px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}


a.tab:hover{
  color: var(--brand);
  
}

.tab.is-active {
  color: var(--brand);
  font-weight: 500;
}

.tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

/* Page layout */
.page {
  padding: 10px 12px 0px; /* bottom nav space */
}

@media (min-width: 920px) {
  .page { padding-bottom: 24px; }
}

.app {
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 1020px) {
  .app {
    max-width: var(--max);
  }
}

/* Hero */
.app-hero {
  padding: 14px 8px 8px;
}

.app-hero__top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--line);
}

.app-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}

.app-dev {
  margin: 6px 0 0;
  font-size: 14px;
}

.link {
  color: var(--brand);
}

.link:hover { text-decoration: underline; }

/* Stats row */
.stats {
  display: flex;
  gap: 8px;
  margin: 14px 0 10px;
  padding: 2px 2px 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.stats::-webkit-scrollbar { display: none; }

.stat {
  flex: 0 0 auto;
  min-width: 120px;
  border-right: 1px solid var(--line);
  padding: 6px 12px;
}

.stat:last-child { border-right: 0; }

.stat__value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}

.stat__number { font-variant-numeric: tabular-nums; }
.stat__version { font-variant-numeric: tabular-nums; }

.stat__unit,
.stat__label {
  color: var(--muted);
  font-size: 12px;
}

.stat__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.04);
  font-weight: 500;
  margin-top: -6px;
}

/* Install */
.install-wrap {
  margin-top: 6px;
  display: flex;
  gap: 15px;    
}

.install2down{
  justify-content: center;
}

@media (max-width: 650px) {
  .install-wrap {flex-wrap: wrap;}
}

.install-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.2px;
  background: linear-gradient(135deg, var(--brand), #3b82f6);
  color: #fff;
  box-shadow: 0 10px 20px rgba(11, 87, 208, 0.22);
  transform: translateZ(0);
}

.install-wrap .install-btn:nth-child(2){
  
  background: linear-gradient(5deg, #1A2430, rgba(0, 46, 91));

}

.install-btn:nth-child(2) a:hover{
  color: #ffffff;
}


a.install-btn {color: #ffffff;}
a.install-btn:hover {  
  opacity: 0.9;
}

.prose a:hover{color: #1A2430;}



.install-btn:hover { filter: brightness(1.02); }

.install-btn:active { transform: translateY(1px); }

.card .install-btn {max-width: 350px;}

.install-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.btn-center{
  display: flex;
  justify-content: center;
}








/* Screenshots */
.shots {
  padding: 10px 0 6px;
}

.shots__rail {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 8px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shots__rail::-webkit-scrollbar { display: none; }

.shot {
  border: 0;
  background: transparent;
  padding: 0;
  flex: 0 0 auto;
  width: 146px;
  border-radius: 16px;
  cursor: pointer;
}

.shot img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.03);
}

@media (min-width: 720px) {
  .shot { width: 190px; }
  .shot img { height: 360px; }
}

/* Cards */
.card {
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
}

.card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.card__action,
.card__chev {
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
}

.prose {
  padding: 0 20px 14px;
  color: var(--text);
}

.prose h2, .prose h3,
.prose h4 {
  margin: 14px 0 8px;
  font-weight: 500;
}

.prose p { margin: 10px 0; }

.prose ul,
.prose ol {
  padding-left: 40px;
  margin: 10px 0;
}




/* ul-ol marker */ 


.prose ul,
.prose ol {
  margin: 1.2rem 0;
  padding-left: 1.25rem;
}

.prose li {
  position: relative;
  margin-bottom: 0.65rem;
  line-height: 1.55;
}

.prose li:last-child {
  margin-bottom: 0;
}


.prose ul {
  list-style: none;
}

.prose ul > li {
  padding-left: 1.55rem;
}

.prose ul > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  /*top: 0.72em;*/
  top: 12px;
  transform: translateY(-50%);
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;

  color: #fff;
  background: rgba(0, 46, 91, 1);
  box-shadow: 0 0 0 3px rgba(0, 46, 91, 0.12);
}

/* OL — pill counter */
.prose ol {
  list-style: none;
  counter-reset: item;
}

.prose ol > li {
  padding-left: 2.5rem;
  counter-increment: item;
}

.prose ol > li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  min-width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.85rem;
  font-weight: 700;

  color: rgba(0, 46, 91, 1);
  background: rgba(0, 46, 91, 0.12);
  border: 1px solid rgba(0, 46, 91, 0.22);
}









@media (max-width: 560px) {
.prose ul,
.prose ol {
  padding-left: 5px;
  margin: 10px 0;
}
}




.img-wrap{
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.img-content{
  flex: 1 1 0;
  min-width: 0;
}

.img-image{
  flex: 0 0 360px; /* width img right */
  
}

.img-image img{
  
  height: 300px;
  
  display: block;
}

.img-wrap ol{margin-top: 20px;}
.img-wrap li{margin-top: 20px;}


/* Mobile img down */
@media (max-width: 768px){
  .img-wrap{
    flex-direction: column;
  }
  .img-image{
    flex: none;
    width: 100%;
  }
}


/* Bonuses */
.bonus-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin: 20px auto;
}

.bonus-item {
  flex: 1;
  max-width: 250px;
  text-align: center;
  margin: 0;
}

.bonus-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.bonus-item figcaption {
  margin-top: 1rem;
  font-weight: 600;
  color: #1a5bb8; /* 1xBet blue */
  font-size: 1.1em;
}

.bonus-row a.install-btn{
  margin: 20px auto;
}

@media (max-width: 768px) {
  .bonus-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}





.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 10px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.spec-table th {
  color: var(--muted);
  font-weight: 500;
  background: rgba(15, 23, 42, 0.03);
}

.spec-table tr:last-child td { border-bottom: 0; }

/* Ratings block */
.muted {
  color: var(--muted);
  font-size: 13px;
  padding: 0 14px;
  margin: 0 0 12px;
}

.ratings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 0 14px 12px;
}

@media (min-width: 620px) {
  .ratings {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }
}

.big-score {
  font-size: 54px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #0f172a;
  font-size: 14px;
}

.star--dim { opacity: 0.35; }

.ratings__score .muted {
  padding: 0;
  margin: 6px 0 0;
}

.ratings__bars {
  display: grid;
  gap: 8px;
}

.bar {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
}

.bar__label {
  font-size: 12px;
  color: var(--muted);
}

.bar__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.bar__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
}

/* Reviews */
.review-list { padding: 0 8px 10px; }

.review {
  padding: 14px;
  border-top: 1px solid var(--line);
}

.review:first-child { border-top: 0; }

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.03);
}

.review__name {
  font-size: 14px;
  font-weight: 500;
}

.review__sub {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.review__date { white-space: nowrap; }

.kebab {
  border: 0;
  background: transparent;
  cursor: pointer;
  width: var(--tap);
  height: var(--tap);
  border-radius: 12px;
  color: var(--muted);
  font-size: 20px;
}

.kebab:hover { background: rgba(15, 23, 42, 0.06); }

.review__text {
  margin: 10px 0 8px;
  font-size: 14px;
}

.review__helpful {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 6px 0 0;
}

.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  height: 34px;
  padding: 0 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
}

.chip:hover { background: rgba(15, 23, 42, 0.04); }

.dev-reply {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.dev-reply__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.dev-reply__name { font-weight: 500; color: var(--text); }

.dev-reply__text {
  margin: 8px 0 0;
  font-size: 13px;
}

/* Support */
.support { padding: 0 8px 10px; }

.support-row {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
}

.support-row:hover { background: rgba(15, 23, 42, 0.04); }

.support-row__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11,87,208,0.10);
  color: var(--brand);
}

.support-row__title {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.support-row__value {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.support-block {
  padding: 10px 14px 14px;
}

.support-block__title {
  margin: 8px 0 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.support-block__text {
  margin: 0;
  font-size: 14px;
}

.support-block__name { font-weight: 500; }

/* Suggested tiles */
.tiles {
  display: flex;
  gap: 10px;
  padding: 0 14px 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tiles::-webkit-scrollbar { display: none; }

.tile {
  flex: 0 0 auto;
  width: 250px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
}

.tile__img {
  width: 250px;
  height: 250px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.04);
}

.tile__name {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
}

.tile__rating {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 10px 6px 0;
}

.footer p { padding: 0 8px; }

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.is-open { display: block; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.6);
}

.modal__panel {
  position: absolute;
  inset: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  overflow-y: scroll;
}

.modal__panel--sheet {
  inset: auto 14px 14px;
  max-height: 78vh;
}

@media (min-width: 720px) {
  .modal__panel { inset: 32px; }
  .modal__panel--sheet {
    max-width: 680px;
    left: 50%;
    transform: translateX(-50%);
    inset: auto 0 32px;
  }
}

.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.95);
}

/* Put the close (✕) button on the right side */
.modal__counter { order: 1; }
.modal__close {
  order: 2;
  margin-left: auto;
}

.modal__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.modal__counter {
  color: var(--muted);
  font-size: 12px;
  padding: 0 6px;
}

.modal__img {  
  height: 80vh;
  object-fit: contain;
  background: #000;
  margin: 0 auto;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.14);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

/*
.nav-btn:hover { background: rgba(255,255,255,0.22); }
*/
.nav-btn--prev { left: 14px; }
.nav-btn--next { right: 14px; }



/* Bottom nav */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  z-index: 60;
}

.bottom-nav__item {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 8px 0;
  color: var(--muted);
}

.bottom-nav__icon { font-size: 18px; }

.bottom-nav__label {
  font-size: 11px;
  font-weight: 400;
}

.bottom-nav__item.is-active {
  color: var(--brand);
}

/* nav hidden in footer*/
.bottom-nav {
  transition: transform .2s ease, opacity .2s ease;
}

.bottom-nav.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}


@media (min-width: 920px) {
  .bottom-nav { display: none; }
  .page { padding-bottom: 24px; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .install-btn { transition: none; }
}




/* add-on styles  */
.bottom-nav{
  height:auto; /* let existing height stay if you want; remove if not needed */
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav__item{
  text-decoration:none;
  -webkit-tap-highlight-color: transparent;
  gap: 6px;                 /* a bit more air */
  padding: 10px 0;          /* tighter/looser here */
}

.bottom-nav__icon{
  width: 30px;
  height: 30px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  font-size: 18px;          /* keeps your current size */
  background: rgba(0,0,0,.04);
}

.bottom-nav__item.is-active .bottom-nav__icon{
  background: color-mix(in srgb, var(--brand) 18%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 12%, transparent);
}

.bottom-nav__label{
  line-height: 1.1;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* mobile: smaller paddings */
@media (max-width: 420px){
  .bottom-nav__item{ padding: 8px 0; gap: 4px; }
  .bottom-nav__icon{ width: 28px; height: 28px; font-size: 17px; }
  .bottom-nav__label{ font-size: 10.5px; }
}




.bottom-nav__icon svg,
.bottom-nav__icon svg use{
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.bottom-nav__icon svg{ stroke: currentColor; }
.bottom-nav__icon{ color: inherit; }



/* =====================================================================
   Tables (System Requirements / Supported Devices / Key Features)
   ===================================================================== */

/* System Requirements (2-column, clean list style) */
.requirements {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px; /* airy rows, like Play-style specs */
  margin: 10px 0 14px;
}

.requirements td,
.requirements th {
  text-align: left;
  padding: 4px 0;
  font-size: 14px;
  vertical-align: top;
}

.requirements td:first-child,
.requirements th:first-child {
  width: 220px;
  padding-right: 18px;
  font-weight: 500;
  color: var(--text);
}

.requirements td:last-child,
.requirements th:last-child {
  color: var(--text);
}

/* Mobile: stack key/value for readability */
@media (max-width: 560px) {
  .requirements {
    border-spacing: 0;
  }

  .requirements,
  .requirements tbody,
  .requirements tr,
  .requirements td,
  .requirements th {
    display: block;
    width: 100%;
  }

  .requirements tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .requirements tr:last-child { border-bottom: 0; }

  .requirements td:first-child,
  .requirements th:first-child {
    width: auto;
    padding-right: 0;
    margin-bottom: 4px;
    color: var(--muted);
    font-weight: 700;
  }
  .img-wrap{gap:15px;}
  .lightbox-img{
    display: block;
    margin: 0 auto;
    height: auto;
  }
}

/* Supported Devices table (header row + subtle grid lines) */
.supported-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 10px 0 14px;
  border: 1px solid var(--line);
  
  background: #fff;
  overflow: hidden; /* keeps rounded corners in modern browsers */
}

.supported-table th,
.supported-table td {
  text-align: left;
  padding: 12px 12px;
  font-size: 13px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.supported-table thead th {
  background: rgba(15, 23, 42, 0.03);
  color: var(--muted);
  font-weight: 700;
}



.supported-table tbody tr:last-child td { border-bottom: 0; }

/* Mobile: allow horizontal scroll if 3+ columns don't fit */
@media (max-width: 640px) {
  .supported-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Key Features table (2-column, row separators, no heavy outer border) */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 14px;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
}

/* If a table uses <thead>, keep it softly styled */
.spec-table thead th {
  background: rgba(15, 23, 42, 0.03);
  color: var(--muted);
  font-weight: 500;
}

.spec-table td:first-child,
.spec-table th:first-child {
  width: 32%;
  font-weight: 500;
}

.spec-table tr:last-child td,
.spec-table tr:last-child th { border-bottom: 0; }

/* Mobile: stack spec rows */
@media (max-width: 560px) {
  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table td,
  .spec-table th {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    padding: 10px 15px;
    border-bottom: 1px solid var(--line);

  }

  .spec-table tr:last-child { border-bottom: 0; }

  .spec-table td,
  .spec-table th {
    border-bottom: 0;
    padding: 6px 0;
  }

  .spec-table td:first-child,
  .spec-table th:first-child {
    width: auto;
    color: var(--muted);
    font-weight: 700;
  }
}

/* =====================================================================
   Footer (Play-like, clean + badges)
   ===================================================================== */

.footer {
  margin-top: 18px;
  padding: 18px 12px 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.00));
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer__row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 720px) {
  .footer__row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
  }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.footer__link:hover {
  color: var(--brand);
  border-color: rgba(11, 87, 208, 0.25);
  background: rgba(11, 87, 208, 0.06);
}

.footer__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.14);
}

.footer__copy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer__copy{
    margin-left:12px;
  }
}
@media (max-width: 720px) {
  .nav-copy{
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    
  }

  .footer__nav{
    justify-content: center;
    margin: 20px auto 10px auto;
  }

  .footer__copy{
    text-align: center;
  }
}


.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.footer__badge:hover {
  background: rgba(15, 23, 42, 0.04);
}

.footer__badge:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.14);
}

.footer__badge img {
  display: block;
  height: 22px;
  width: auto;
}

/* A bit taller for the PAGCOR banner to stay readable */
.footer__badge--pagcor img {
  height: 28px;
}

.footer__disclaimer {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  max-width: 92ch;
}

/* Override old footer paragraph padding from the base file */
.footer p { padding: 0; }

/* =====================================================================
   Contact form (matches existing cards/chips/buttons)
   ===================================================================== */

.contact-form {
  display: grid;
  gap: 14px;
  margin: 6px 0 2px;
}

.contact-form__grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 720px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: grid;
  gap: 6px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

.contact-form__control {
  width: 100%;
  min-height: 44px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.contact-form__control::placeholder {
  color: rgba(91, 100, 118, 0.75);
}

.contact-form__control:focus {
  border-color: rgba(11, 87, 208, 0.55);
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.12);
}

.contact-form__control--textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 4px;
}

.contact-form__submit {
  min-height: 44px;
  padding: 0 45px;
  border: 0;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.2px;
  background: linear-gradient(135deg, var(--brand), #3b82f6);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(11, 87, 208, 0.22);
  transform: translateZ(0);
}

.contact-form__submit:hover { filter: brightness(1.02); }

.contact-form__submit:active { transform: translateY(1px); }

.contact-form__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.18), 0 10px 20px rgba(11, 87, 208, 0.22);
}

.contact-form__note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}











/* =====================================================================
   Table Of Contents (manual, collapsible)
   ===================================================================== */

.toc__summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.toc__summary::-webkit-details-marker { display: none; }
.toc__summary::marker { content: ""; }

.toc__summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.14);
  border-radius: var(--radius);
}

.toc__chev {
  transition: transform 0.18s ease, color 0.18s ease;
  transform: rotate(0deg);
  margin-top: -10px;
}

.toc[open] .toc__chev {
  transform: rotate(90deg);
  color: var(--brand);
}

.toc__body {
  padding: 12px 14px 14px;
}

.toc[open] .toc__body {
  border-top: 1px solid var(--line);
}

.toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  counter-reset: toc;
}

.toc__link {
  counter-increment: toc;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--tap);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.02);
  color: var(--text);
  font-size: 14px;
}

.toc__link::before {
  content: counter(toc) ".";
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
}

.toc__link:hover {
  background: rgba(11, 87, 208, 0.06);
  border-color: rgba(11, 87, 208, 0.25);
  color: var(--brand);
}

.toc__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.14);
}


.prose h2,
.prose h3,
[id] {
  scroll-margin-top: 110px;
}

@media (prefers-reduced-motion: reduce) {
  .toc__chev { transition: none; }
}


.toc__link--sub {
  padding-left: 40px;
  font-size: 13px;
}


/* =====================================================================
   Card typography polish (desktop + mobile)
   ===================================================================== */
.card .prose{
  padding: 4px 20px 18px;
  line-height: 1.7;
  font-size: 16px;
}
@media (max-width: 720px){
  .card .prose{
    padding: 2px 14px 16px;
    font-size: 15px;
    line-height: 1.75;
  }
}

.card .prose h2{
  margin: 25px 0 10px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.2px;
}
.card .prose h3{
  margin: 20px 0 8px;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.3;
}
.card .prose h4{
  margin: 20px 0 6px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.35;
  color: var(--muted);
}
.card .prose p{
  margin: 10px 0;
}
.card .prose li{
  margin: 20px 0;
}

/* Tables inside prose: nicer, modern, readable */
.card .prose table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 12px 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.card .prose thead th{
  background: rgba(15, 23, 42, 0.03);
  color: var(--muted);
  font-weight: 600;
}
.card .prose th,
.card .prose td{
  padding: 12px 12px;
  font-size: 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.card .prose tbody tr:last-child td{
  border-bottom: 0;
}
.card .prose tbody tr:nth-child(even){
  background: rgba(15, 23, 42, 0.015);
}

/* Mobile: table scroll when wide */
@media (max-width: 640px){
  .card .prose table{
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .card .prose th,
  .card .prose td{
    white-space: nowrap;
  }
}

/* Lightbox images inside prose */
.lightbox-img{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.03);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
  cursor: zoom-in;
  margin: 10px auto;
}
.lightbox-img:hover{
  filter: brightness(1.02);
}

/* =====================================================================
   Topbar auth buttons (Login / Register)
   ===================================================================== */
.topbar__form{ margin: 0; }
.topbar__btn{
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--brand), #3b82f6);  
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .05s ease;
    
    background: linear-gradient(135deg, var(--brand), #3b82f6);
    color: #fff;
    box-shadow: 0 10px 20px rgba(11, 87, 208, 0.22);
    transform: translateZ(0);
}
.topbar__btn:hover{
  border-color: rgba(11, 87, 208, 0.25);
  background: rgba(11, 87, 208, 0.06);
  color: var(--brand);
}
.topbar__btn:active{ transform: translateY(1px); }
.topbar__btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.14);
}
.topbar__btn--primary{
  border: 0;
  background: rgba(0, 46, 91);
  color: #fff;
  box-shadow: 0 10px 20px rgba(11, 87, 208, 0.18);
}
.topbar__btn--primary:hover{
  filter: brightness(1.02);
  color: #000000;
}
@media (max-width: 420px){
  .topbar__actions{ gap: 8px; }
  .topbar__btn{ padding: 0 12px; min-height: 36px; font-size: 12px; }
}


.topbar{
  position: sticky; 
  top: 0;
  z-index: 100;
  background: #fff;

  transform: translateY(0);
  transition: transform .22s ease;
  will-change: transform;
}


.topbar.is-hidden{
  transform: translateY(-100%);
}


@media (prefers-reduced-motion: reduce){
  .topbar{ transition: none; }
}



/* =====================================================================
   FAQ (before footer)
   ===================================================================== */
.faq .card__header{
  padding: 14px 14px 10px;
}
.faq__body{
  padding: 0 14px 14px;
  display: grid;
  gap: 10px;
}
.faq__item{
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.02);
  overflow: hidden;
}
.faq__q{
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
}
.faq__q::-webkit-details-marker{ display: none; }
.faq__q::marker{ content: ""; }
.faq__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11,87,208,0.10);
}
.faq__chev{
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  transition: transform .18s ease, color .18s ease;
}
.faq__item[open] .faq__chev{
  transform: rotate(90deg);
  color: var(--brand);
}
.faq__a{
  padding: 0 12px 12px;
  border-top: 1px solid var(--line);
}
.faq__a p{
  margin: 10px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}


.wrapimg{
  display: flex;
  justify-content: center;
  gap: 15px;
}

.wrapimg img{
  height: 300px;
}

@media (max-width: 640px){
  .wrapimg img{
    width: 30%;
    height: auto;
};
}









/* ===== How-to Login: clean timeline (compact spacing) ===== */

.howto-step{
  /* Layout tokens */
  --step-gap: 14px;
  --rail-x: 14px;          /* Vertical rail X position */
  --badge: 24px;           /* Number badge size */

  /* Colors */
  --brand: var(--brand, #0a63ff);
  --line: var(--line, rgba(0,0,0,.10));

  padding: 4px 0;
}

.howto-step h2{
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.howto-step h2 + p{
  margin: 0 0 22px;
  color: var(--muted, #5b6472);
  max-width: 70ch;
}

/* Step title */
.howto-step h3{
  position: relative;
  margin: var(--step-gap) 0 6px;
  padding-left: calc(var(--rail-x) + var(--badge) + 10px);
  font-size: 1.08rem;
  line-height: 1.25;
}

/* Vertical rail */
.howto-step h3::after{
  content:"";
  position: absolute;
  left: var(--rail-x);
  top: 0.12em;
  bottom: -1rem;
  width: 2px;
  background: color-mix(in srgb, var(--brand) 18%, var(--line));
}

/* Number badge (expects data-step="1") */
.howto-step h3::before{
  content: attr(data-step);
  position: absolute;
  left: calc(var(--rail-x) - (var(--badge) / 2));
  top: 0.02em;

  width: var(--badge);
  height: var(--badge);
  border-radius: 999px;

  display: grid;
  place-items: center;

  font-weight: 500;
  font-size: .92rem;

  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
}

/* Step description (paragraph right under h3) */
.howto-step h3 + p{
  margin: 0 0 6px;
  padding-left: calc(var(--rail-x) + var(--badge) + 10px);
  color: var(--text, #1f2430);
  
}

/* Small spacing after each step text */
.howto-step h3 + p + *{
  margin-top: 10px;
}

/* Stop rail after last step */
.howto-step h3:last-of-type::after{
  bottom: 0.35em;
}

/* Mobile: tighter */
@media (max-width: 640px){
  .howto-step{
    --rail-x: 12px;
    --badge: 22px;
    --step-gap: 12px;
  }

  .howto-step h3,
  .howto-step h3 + p{
    padding-left: calc(var(--rail-x) + var(--badge) + 8px);
  }
}



/* ===== HowtoReg: clean steps with icons (no rounded cards) ===== */

.HowtoReg{
  --gap: 16px;
  --rail-x: 14px;                 /* Vertical rail X position */
  --icon: 28px;                   /* Icon badge size */
  --brand: var(--brand, #0a63ff);
  --line: var(--line, rgba(0,0,0,.10));
  --muted: var(--muted, #5b6472);
  margin-top: 40px;
}

/* Each h3 becomes a step header */
.HowtoReg h3{
  position: relative;
  margin: var(--gap) 0 6px;
  padding-left: calc(var(--rail-x) + var(--icon) + 10px);
  font-size: 1.1rem;
  line-height: 1.25;
}

/* Vertical rail */
.HowtoReg h3::after{
  content:"";
  position: absolute;
  left: var(--rail-x);
  top: 0.15em;
  bottom: -1rem;
  width: 2px;
  background: color-mix(in srgb, var(--brand) 18%, var(--line));
}

/* Icon badge (by step order) */
.HowtoReg h3::before{
  content: "";
  position: absolute;
  left: calc(var(--rail-x) - (var(--icon) / 2));
  top: 0.05em;

  width: var(--icon);
  height: var(--icon);
  border-radius: 999px;

  background: color-mix(in srgb, var(--brand) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));

  background-repeat: no-repeat;
  background-position: center;
  background-size: 62% 62%;
}

/* Step 1: Visit (globe) */
.HowtoReg h3:nth-of-type(1)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230a63ff' d='M12 2a10 10 0 1 0 0 20a10 10 0 0 0 0-20Zm6.9 9h-3.2a15.6 15.6 0 0 0-1.2-5a8.1 8.1 0 0 1 4.4 5ZM12 4c.9 1.2 1.7 3.3 2.1 7H9.9C10.3 7.3 11.1 5.2 12 4Zm-2.5 2A15.6 15.6 0 0 0 8.3 11H5.1a8.1 8.1 0 0 1 4.4-5ZM5.1 13h3.2c.2 2 .6 3.7 1.2 5a8.1 8.1 0 0 1-4.4-5Zm4.8 0h4.2c-.4 3.7-1.2 5.8-2.1 7c-.9-1.2-1.7-3.3-2.1-7Zm4.6 5c.6-1.3 1-3 1.2-5h3.2a8.1 8.1 0 0 1-4.4 5Z'/%3E%3C/svg%3E");
}

/* Step 2: Provide data (form) */
.HowtoReg h3:nth-of-type(2)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230a63ff' d='M7 3h10a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Zm2 5h6v2H9V8Zm0 4h6v2H9v-2Zm0 4h4v2H9v-2Z'/%3E%3C/svg%3E");
}

/* Step 3: Select bonus (gift) */
.HowtoReg h3:nth-of-type(3)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230a63ff' d='M20 7h-1.2A2.8 2.8 0 0 0 14 4.8c-.6.6-1.1 1.6-2 2.2c-.9-.6-1.4-1.6-2-2.2A2.8 2.8 0 0 0 5.2 7H4a2 2 0 0 0-2 2v2h20V9a2 2 0 0 0-2-2ZM7 7c0-.6.4-1 1-1c1.1 0 2 1 2.6 2H8c-.6 0-1-.4-1-1Zm10 1h-2.6C15 7 15.9 6 17 6c.6 0 1 .4 1 1s-.4 1-1 1Z'/%3E%3Cpath fill='%230a63ff' d='M2 13h9v9H4a2 2 0 0 1-2-2v-7Zm11 0h9v7a2 2 0 0 1-2 2h-7v-9Z'/%3E%3Cpath fill='%230a63ff' d='M11 11h2v11h-2V11Z'/%3E%3C/svg%3E");
}

/* Step 4: Finish (check) */
.HowtoReg h3:nth-of-type(4)::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230a63ff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}

/* Description under each step */
.HowtoReg h3 + p{
  margin: 0 0 6px;
  padding-left: calc(var(--rail-x) + var(--icon) + 10px);
  color: var(--text, #1f2430);
  
}

/* Optional: make links a bit more iGaming-like */
.HowtoReg a{
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 45%, transparent);
}
.HowtoReg a:hover{
  border-bottom-color: var(--brand);
}

/* Stop rail after last step */
.HowtoReg h3:last-of-type::after{
  bottom: 0.35em;
}

/* Mobile: tighter */
@media (max-width: 640px){
  .HowtoReg{
    --rail-x: 12px;
    --icon: 24px;
    --gap: 14px;
  }
  .HowtoReg h3,
  .HowtoReg h3 + p{
    padding-left: calc(var(--rail-x) + var(--icon) + 8px);
  }
}








.pros-cons{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

/* Two columns on larger screens */
@media (min-width: 860px){
  .pros-cons{
    grid-template-columns: 1fr 1fr;
  }

  /* Vertical divider between columns */
  .pros-cons__col--cons{
    position: relative;
    padding-left: clamp(20px, 0vw, 48px);
  }

}

.title{
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  margin: 0 0 18px;
}

.pros-cons__col ul{
  margin: 0;
  padding-left: 1.25rem;
  color: #444;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
}

.pros-cons__col li{
  margin: 10px 0;
}

/* Bullet color */
.pros-cons__col li::marker{
  color: #000;
}










/* =====================================================================
   Promo code widget (inside .prose)
   ===================================================================== */

.promo-widget {
  position: relative;
  margin: 18px 0 22px;
  padding: 0px 18px 18px;
  border: 2px solid #0f172a;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand copy"
    "text  cta";
  gap: 16px 18px;
  align-items: center;
}




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

.promo-widget__brand {
  grid-area: brand;
  align-self: start;
}

.promo-widget__logo {
  width: 320px;
  height: auto;
  display: block;
  margin-top: 40px;
}

.promo-widget__text {
  grid-area: text;
  margin: 0;
  
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.15;
  font-weight: 500;
}

.promo-widget__cta {
  grid-area: cta;
  justify-self: end;
  max-width: 340px;
  width: 100%;
}

.promo-widget__cta--dark {
  background: linear-gradient(5deg, #1A2430, rgba(0, 46, 91));
  box-shadow: 0 10px 20px rgba(0, 46, 91, 0.18);
  
}


a.promo-widget__cta--dark:hover {
  color: #ffffff;
  
}

/* Copy button (segmented, like the design examples) */
.promo-copy {
  grid-area: copy;
  justify-self: end;

  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(15, 23, 42, 0.22);
  border-radius: 12px;
  overflow: hidden;

  background: #fff;
  padding: 0;
  min-height: 52px;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.promo-copy:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 87, 208, 0.16);
}

.promo-copy__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
  background: #fff;
}

.promo-copy__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  min-width: 110px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), #3b82f6)
}

span.promo-copy__action{color: #ffffff}

.promo-copy:hover {
  filter: brightness(1.02);
}

.promo-copy[data-copied="true"] {
  box-shadow: 0 0 0 4px rgba(215, 240, 0, 0.28);
}

.promo-copy[data-copied="true"] .promo-copy__action {
  background: linear-gradient(5deg, #1A2430, rgba(0, 46, 91));
}

/* Mobile layout like in the screenshots: stacked + centered */
@media (max-width: 720px) {
  .promo-widget {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "text"
      "cta";
    justify-items: center;
    text-align: center;
    padding: 26px 14px 16px;
  }

  

  .promo-copy {
    justify-self: center;
    /*width: 100%;*/
    max-width: 420px;
  }

  .promo-widget__cta {
    justify-self: center;
    max-width: 420px;
  }
}
