/*!
 * h13game.click - design.css
 * Mobile-first gaming layout. All custom classes use the pg29- prefix.
 * Color palette: deep teal #1B263B / mint #4DB6AC / dark cyan #008B8B.
 * Comments in English per project convention.
 */

:root {
  --pg29-bg: #0f1a2a;
  --pg29-bg-2: #1B263B;
  --pg29-bg-3: #16223a;
  --pg29-mint: #4DB6AC;
  --pg29-cyan: #008B8B;
  --pg29-gold: #f5c451;
  --pg29-text: #eef4f8;
  --pg29-muted: #9fb2c5;
  --pg29-card: #18253c;
  --pg29-card-2: #1f2f4a;
  --pg29-border: rgba(77, 182, 172, 0.22);
  --pg29-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  --pg29-radius: 16px;
  --pg29-radius-sm: 10px;
  --pg29-max: 430px;
}

* { box-sizing: border-box; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", Roboto, system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #1c3350 0%, var(--pg29-bg) 60%);
  color: var(--pg29-text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a { color: var(--pg29-mint); text-decoration: none; }
a:hover { color: var(--pg29-gold); }

.pg29-wrap {
  width: 100%;
  max-width: var(--pg29-max);
  margin: 0 auto;
  padding: 0 14px;
}

main { padding-bottom: 96px; }

/* ============ Header ============ */
.pg29-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(15,26,42,0.96), rgba(15,26,42,0.86));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pg29-border);
}
.pg29-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.pg29-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--pg29-text);
  letter-spacing: .4px;
}
.pg29-logo .pg29-logo-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pg29-mint), var(--pg29-cyan));
  display: flex; align-items: center; justify-content: center;
  color: #06212a; font-weight: 900; font-size: 1.6rem;
}
.pg29-logo small {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pg29-mint);
  letter-spacing: 1px;
}
.pg29-head-actions { display: flex; align-items: center; gap: 8px; }
.pg29-icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(77,182,172,0.10);
  border: 1px solid var(--pg29-border);
  color: var(--pg29-text);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, background .2s;
}
.pg29-icon-btn:hover { background: rgba(77,182,172,0.18); transform: translateY(-1px); }

.pg29-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 12px;
  padding: 9px 16px;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, filter .2s;
  text-decoration: none;
}
.pg29-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.pg29-btn-login {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--pg29-border);
  color: var(--pg29-text);
}
.pg29-btn-register {
  background: linear-gradient(135deg, var(--pg29-mint), var(--pg29-cyan));
  color: #06212a;
  box-shadow: 0 6px 16px rgba(0,139,139,0.35);
}

/* Desktop nav (hidden on mobile) */
.pg29-desktop-nav { display: none; }

/* ============ Mobile slide menu ============ */
.pg29-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9998;
}
.pg29-overlay-active { opacity: 1; pointer-events: auto; }
.pg29-mobile-menu {
  position: fixed;
  top: 0; left: -86%;
  width: 86%; max-width: 320px;
  height: 100%;
  background: var(--pg29-bg-2);
  z-index: 9999;
  padding: 22px 18px;
  transform: translateX(0);
  transition: left .28s ease;
  overflow-y: auto;
  border-right: 1px solid var(--pg29-border);
}
.pg29-menu-open { left: 0; }
.pg29-menu-title {
  font-size: 1.6rem; font-weight: 800;
  margin-bottom: 16px; color: var(--pg29-mint);
}
.pg29-menu-list { list-style: none; padding: 0; margin: 0; }
.pg29-menu-list li { margin-bottom: 6px; }
.pg29-menu-list a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--pg29-text);
  font-size: 1.35rem;
  font-weight: 600;
}
.pg29-menu-list a:hover { background: rgba(77,182,172,0.12); color: var(--pg29-mint); }

/* ============ Hero carousel ============ */
.pg29-hero {
  position: relative;
  margin-top: 14px;
  border-radius: var(--pg29-radius);
  overflow: hidden;
  box-shadow: var(--pg29-shadow);
}
.pg29-hero-track { position: relative; height: 220px; }
.pg29-hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background-size: cover; background-position: center;
}
.pg29-hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,26,42,0.92) 5%, rgba(15,26,42,0.25) 60%, rgba(15,26,42,0.1) 100%);
}
.pg29-hero-slide > * { position: relative; z-index: 2; }
.pg29-slide-active { opacity: 1; }
.pg29-hero-eyebrow {
  display: inline-block;
  background: var(--pg29-gold);
  color: #2a1f00;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 1.05rem; font-weight: 800;
  margin-bottom: 8px;
  width: max-content;
}
.pg29-hero-title {
  font-size: 2.4rem; font-weight: 900;
  margin: 0 0 4px; line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.pg29-hero-sub {
  font-size: 1.25rem; color: var(--pg29-muted);
  margin: 0 0 12px;
}
.pg29-hero-cta { display: flex; gap: 8px; }
.pg29-carousel-dots {
  position: absolute;
  bottom: 10px; right: 14px;
  display: flex; gap: 6px;
  z-index: 3;
}
.pg29-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: width .2s, background .2s;
  border: 0; padding: 0;
}
.pg29-dot-active { background: var(--pg29-mint); width: 22px; border-radius: 4px; }

/* ============ Marquee strip ============ */
.pg29-strip {
  margin-top: 14px;
  background: var(--pg29-bg-3);
  border: 1px solid var(--pg29-border);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; color: var(--pg29-muted);
}
.pg29-strip b { color: var(--pg29-gold); }
.pg29-strip .material-icons { font-size: 18px; color: var(--pg29-mint); }

/* ============ Sections ============ */
.pg29-section { margin-top: 26px; }
.pg29-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.pg29-section-title {
  font-size: 1.7rem; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
}
.pg29-section-title .material-icons { color: var(--pg29-mint); font-size: 22px; }
.pg29-section-more {
  font-size: 1.15rem; color: var(--pg29-mint); font-weight: 600;
}

/* Category tabs */
.pg29-cat-tabs {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scrollbar-width: none;
}
.pg29-cat-tabs::-webkit-scrollbar { display: none; }
.pg29-cat-tab {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(77,182,172,0.08);
  border: 1px solid var(--pg29-border);
  color: var(--pg29-muted);
  font-size: 1.25rem; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.pg29-cat-tab.pg29-tab-active {
  background: linear-gradient(135deg, var(--pg29-mint), var(--pg29-cyan));
  color: #06212a; border-color: transparent;
}

/* ============ Game grid ============ */
.pg29-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pg29-card {
  position: relative;
  border-radius: var(--pg29-radius-sm);
  overflow: hidden;
  background: var(--pg29-card);
  border: 1px solid var(--pg29-border);
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.pg29-card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.45); }
.pg29-card-media {
  position: relative;
  aspect-ratio: 1/1;
  background: #0a1322;
  overflow: hidden;
}
.pg29-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.pg29-card:hover .pg29-card-media img { transform: scale(1.06); }
.pg29-card-badge {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--pg29-gold);
  color: #2a1f00;
  font-size: .95rem; font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
}
.pg29-card-name {
  padding: 7px 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  color: var(--pg29-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pg29-card-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity .2s;
}
.pg29-card:hover .pg29-card-play { opacity: 1; }
.pg29-card-play .pg29-play-pill {
  background: var(--pg29-mint);
  color: #06212a;
  padding: 6px 14px;
  border-radius: 18px;
  font-weight: 800; font-size: 1.15rem;
}

/* Featured / hot variants */
.pg29-grid-featured .pg29-card { border-color: rgba(245,196,81,0.4); }
.pg29-grid-featured .pg29-card-media::after {
  content: "HOT";
  position: absolute;
  top: 6px; right: 6px;
  background: #ff5d5d;
  color: #fff;
  font-size: .9rem; font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
}

/* ============ Promo banner ============ */
.pg29-promo-banner {
  margin-top: 22px;
  border-radius: var(--pg29-radius);
  padding: 18px;
  background: linear-gradient(135deg, #123044, #0a1b2c);
  border: 1px solid var(--pg29-border);
  position: relative;
  overflow: hidden;
}
.pg29-promo-banner::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(77,182,172,0.35), transparent 70%);
  border-radius: 50%;
}
.pg29-promo-banner h3 {
  margin: 0 0 6px; font-size: 1.7rem; color: var(--pg29-gold);
}
.pg29-promo-banner p { margin: 0 0 12px; font-size: 1.2rem; color: var(--pg29-muted); }
.pg29-promo-banner .pg29-btn-register { position: relative; z-index: 2; }

/* ============ Feature list ============ */
.pg29-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pg29-feature {
  background: var(--pg29-card);
  border: 1px solid var(--pg29-border);
  border-radius: 12px;
  padding: 14px;
}
.pg29-feature .material-icons,
.pg29-feature .bi {
  font-size: 24px; color: var(--pg29-mint);
}
.pg29-feature h4 { margin: 8px 0 4px; font-size: 1.3rem; }
.pg29-feature p { margin: 0; font-size: 1.1rem; color: var(--pg29-muted); }

/* ============ SEO content ============ */
.pg29-seo {
  margin-top: 26px;
  background: var(--pg29-card);
  border: 1px solid var(--pg29-border);
  border-radius: var(--pg29-radius);
  padding: 18px;
}
.pg29-seo h2 {
  font-size: 1.7rem; margin: 0 0 10px;
  color: var(--pg29-mint);
}
.pg29-seo h3 {
  font-size: 1.4rem; margin: 14px 0 6px;
  color: var(--pg29-text);
}
.pg29-seo p {
  font-size: 1.2rem; color: var(--pg29-muted); margin: 0 0 10px;
  line-height: 1.65;
}
.pg29-seo ul { padding-left: 20px; margin: 6px 0 10px; color: var(--pg29-muted); }
.pg29-seo li { font-size: 1.2rem; margin-bottom: 4px; line-height: 1.55; }
.pg29-seo a { color: var(--pg29-mint); font-weight: 600; }
.pg29-seo a:hover { color: var(--pg29-gold); text-decoration: underline; }

/* ============ FAQ ============ */
.pg29-faq-item {
  background: var(--pg29-card);
  border: 1px solid var(--pg29-border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.pg29-faq-q {
  padding: 13px 14px;
  font-size: 1.25rem; font-weight: 700;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px;
}
.pg29-faq-q::after {
  content: "+";
  font-size: 1.5rem; color: var(--pg29-mint);
  font-weight: 800;
  transition: transform .2s;
}
.pg29-faq-open .pg29-faq-q::after { content: "−"; }
.pg29-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  transition: max-height .25s ease, padding .2s ease;
  font-size: 1.15rem; color: var(--pg29-muted);
}
.pg29-faq-open .pg29-faq-a {
  max-height: 280px;
  padding: 0 14px 14px;
}

/* ============ Footer ============ */
.pg29-footer {
  margin-top: 30px;
  background: var(--pg29-bg-3);
  border-top: 1px solid var(--pg29-border);
  padding: 22px 0 10px;
}
.pg29-footer h4 {
  font-size: 1.3rem; color: var(--pg29-mint);
  margin: 14px 0 8px;
}
.pg29-footer ul { list-style: none; padding: 0; margin: 0; }
.pg29-footer li { margin-bottom: 6px; }
.pg29-footer a {
  color: var(--pg29-muted); font-size: 1.15rem;
}
.pg29-footer a:hover { color: var(--pg29-mint); }
.pg29-footer-bottom {
  margin-top: 18px; padding-top: 12px;
  border-top: 1px solid var(--pg29-border);
  font-size: 1.1rem; color: var(--pg29-muted);
  text-align: center;
}

/* ============ Bottom nav ============ */
.pg29-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 62px;
  background: linear-gradient(180deg, rgba(24,37,60,0.96), rgba(15,26,42,0.99));
  border-top: 1px solid var(--pg29-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}
.pg29-bottom-nav button,
.pg29-bottom-nav a {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: 0;
  color: var(--pg29-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color .2s, transform .15s;
}
.pg29-bottom-nav button:hover,
.pg29-bottom-nav a:hover { color: var(--pg29-mint); transform: translateY(-2px); }
.pg29-bottom-nav .material-icons,
.pg29-bottom-nav .fas,
.pg29-bottom-nav .bi,
.pg29-bottom-nav ion-icon { font-size: 22px; }
.pg29-bottom-nav .pg29-nav-center button {
  background: linear-gradient(135deg, var(--pg29-mint), var(--pg29-cyan));
  color: #06212a;
  width: 50px; height: 50px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  display: flex;
  box-shadow: 0 6px 14px rgba(0,139,139,0.4);
  margin-top: -16px;
  border: 3px solid var(--pg29-bg);
}
.pg29-bottom-nav .pg29-nav-active { color: var(--pg29-mint); }
.pg29-bottom-nav .pg29-nav-active::before {
  content: "";
  position: absolute; top: 4px;
  width: 22px; height: 3px;
  background: var(--pg29-mint);
  border-radius: 3px;
}

/* Back-to-top */
.pg29-back-top {
  position: fixed;
  right: 14px; bottom: 76px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pg29-card-2);
  border: 1px solid var(--pg29-border);
  color: var(--pg29-mint);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .15s;
  z-index: 999;
  cursor: pointer;
}
.pg29-back-top-show { opacity: 1; pointer-events: auto; }
.pg29-back-top:hover { transform: translateY(-2px); }

/* Reveal animation */
.pg29-reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s, transform .5s; }
.pg29-revealed { opacity: 1; transform: translateY(0); }

/* ============ Desktop ============ */
@media (min-width: 769px) {
  :root { --pg29-max: 1140px; }
  body { background: radial-gradient(1400px 700px at 50% -10%, #1c3350 0%, var(--pg29-bg) 60%); }
  .pg29-bottom-nav { display: none; }
  main { padding-bottom: 30px; }
  .pg29-desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 28px;
    flex: 1;
  }
  .pg29-desktop-nav a {
    color: var(--pg29-text);
    font-size: 1.3rem; font-weight: 600;
  }
  .pg29-desktop-nav a:hover { color: var(--pg29-mint); }
  .pg29-grid { grid-template-columns: repeat(6, 1fr); }
  .pg29-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .pg29-hero-track { height: 340px; }
  .pg29-hero-title { font-size: 3.2rem; }
  .pg29-menu-toggle { display: none; }
  .pg29-header-row { height: 72px; }
  .pg29-footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  :root { --pg29-max: 720px; }
  .pg29-grid { grid-template-columns: repeat(4, 1fr); }
  .pg29-feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 360px) {
  .pg29-grid { grid-template-columns: repeat(2, 1fr); }
  .pg29-hero-title { font-size: 2rem; }
}

/* ============ Page hero (help pages) ============ */
.pg29-page-hero {
  margin-top: 14px;
  padding: 20px 16px;
  border-radius: var(--pg29-radius);
  background: linear-gradient(135deg, #14304a 0%, #0b1c2e 70%);
  border: 1px solid var(--pg29-border);
  box-shadow: var(--pg29-shadow);
}
.pg29-h1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--pg29-text);
}
.pg29-h1-accent { color: var(--pg29-gold); }
.pg29-page-hero p {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: var(--pg29-muted);
}
.pg29-hero-cta-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ============ Guide steps ============ */
.pg29-steps { list-style: none; margin: 10px 0; padding: 0; counter-reset: pg29step; }
.pg29-step {
  position: relative;
  background: var(--pg29-card);
  border: 1px solid var(--pg29-border);
  border-radius: 12px;
  padding: 12px 14px 12px 52px;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--pg29-muted);
}
.pg29-step::before {
  counter-increment: pg29step;
  content: counter(pg29step);
  position: absolute;
  left: 12px; top: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pg29-mint), var(--pg29-cyan));
  color: #06212a;
  font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.pg29-step b { color: var(--pg29-text); }

/* ============ Tip / note box ============ */
.pg29-tip {
  display: flex; gap: 10px;
  background: rgba(245,196,81,0.08);
  border: 1px dashed rgba(245,196,81,0.45);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 10px 0;
  font-size: 1.15rem;
  color: var(--pg29-muted);
}
.pg29-tip .material-icons { color: var(--pg29-gold); font-size: 20px; flex: 0 0 auto; }
.pg29-tip b { color: var(--pg29-gold); }

/* ============ Bold promo text link ============ */
.pg29-text-cta {
  color: var(--pg29-gold);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.pg29-text-cta:hover { color: var(--pg29-mint); }

/* ============ RTP compact rows ============ */
.pg29-rtp-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(77,182,172,0.12);
  font-size: 1.15rem;
}
.pg29-rtp-row:last-child { border-bottom: 0; }
.pg29-rtp-name { flex: 0 0 42%; color: var(--pg29-text); font-weight: 600; }
.pg29-rtp-bar {
  flex: 1; height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px; overflow: hidden;
}
.pg29-rtp-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--pg29-cyan), var(--pg29-mint));
  border-radius: 6px;
}
.pg29-rtp-val { flex: 0 0 52px; text-align: right; color: var(--pg29-mint); font-weight: 800; }

/* ============ Latest winners ============ */
.pg29-winners { list-style: none; margin: 8px 0 0; padding: 0; }
.pg29-winners li {
  display: flex; align-items: center; gap: 10px;
  background: var(--pg29-card);
  border: 1px solid var(--pg29-border);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 7px;
  font-size: 1.15rem;
  color: var(--pg29-muted);
}
.pg29-winners .material-icons { color: var(--pg29-gold); font-size: 18px; }
.pg29-winners b { color: var(--pg29-text); }
.pg29-winners .pg29-win-amount { margin-left: auto; color: var(--pg29-gold); font-weight: 800; }

/* ============ Payment methods row ============ */
.pg29-pay-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.pg29-pay-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pg29-card-2);
  border: 1px solid var(--pg29-border);
  border-radius: 20px;
  padding: 7px 12px;
  font-size: 1.1rem; font-weight: 600;
  color: var(--pg29-muted);
}
.pg29-pay-chip .material-icons,
.pg29-pay-chip .fas,
.pg29-pay-chip .bi { font-size: 16px; color: var(--pg29-mint); }

/* ============ Big play-now CTA ============ */
.pg29-cta-big {
  margin-top: 26px;
  text-align: center;
  border-radius: var(--pg29-radius);
  padding: 24px 18px;
  background:
    radial-gradient(420px 140px at 50% 0%, rgba(77,182,172,0.25), transparent 70%),
    linear-gradient(135deg, #10283e, #0a1a2b);
  border: 1px solid var(--pg29-border);
}
.pg29-cta-big h3 { margin: 0 0 6px; font-size: 1.8rem; color: var(--pg29-gold); }
.pg29-cta-big p { margin: 0 0 14px; font-size: 1.2rem; color: var(--pg29-muted); }
.pg29-btn-xl {
  padding: 13px 30px;
  font-size: 1.55rem;
  border-radius: 14px;
  min-height: 48px;
}
