/* ============================================================
 * 1xbet 1xgames - Core stylesheet
 * All custom classes use the pg03- prefix for namespace isolation.
 * Palette: #2D2D2D (bg) | #26A69A (brand) | #00FFFF (accent)
 * Mobile-first, max content width 430px.
 * ============================================================ */

:root {
  --pg03-bg: #2D2D2D;
  --pg03-bg-2: #1c1c1c;
  --pg03-bg-3: #242424;
  --pg03-brand: #26A69A;
  --pg03-brand-dark: #1d8378;
  --pg03-accent: #00FFFF;
  --pg03-accent-soft: rgba(0, 255, 255, 0.16);
  --pg03-text: #f4f7f7;
  --pg03-text-mute: #b6bfbf;
  --pg03-line: rgba(255, 255, 255, 0.08);
  --pg03-radius: 14px;
  --pg03-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
  --pg03-header-h: 58px;
  --pg03-bottomnav-h: 64px;
}

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

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

body {
  margin: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: radial-gradient(circle at 20% -10%, rgba(38, 166, 154, 0.18), transparent 60%),
              linear-gradient(180deg, var(--pg03-bg-2) 0%, var(--pg03-bg) 35%);
  background-attachment: fixed;
  color: var(--pg03-text);
  line-height: 1.5rem;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--pg03-accent); text-decoration: none; }
a:hover { color: #fff; }

.pg03-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}

main { padding-bottom: calc(var(--pg03-bottomnav-h) + 24px); }

/* ===================== Header ===================== */
.pg03-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(20, 20, 20, 0.86));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pg03-line);
  transition: box-shadow .25s ease;
}
.pg03-header--scrolled { box-shadow: var(--pg03-shadow); }

.pg03-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--pg03-header-h);
  gap: 8px;
}

.pg03-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.3px;
}
.pg03-logo__mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--pg03-brand), var(--pg03-accent));
  display: grid; place-items: center;
  color: #062a27; font-weight: 900; font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 255, 255, 0.25);
}
.pg03-logo__brand b { color: var(--pg03-accent); }
.pg03-logo__sub { display:block; font-size: 1.02rem; font-weight: 600; color: var(--pg03-text-mute); }

.pg03-actions { display: flex; align-items: center; gap: 8px; }

.pg03-btn {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.28rem;
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.pg03-btn--login {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(0,255,255,0.35);
}
.pg03-btn--login:hover { background: var(--pg03-accent-soft); }
.pg03-btn--register {
  background: linear-gradient(135deg, var(--pg03-brand), var(--pg03-brand-dark));
  color: #fff;
  box-shadow: 0 6px 16px rgba(38, 166, 154, 0.45);
}
.pg03-btn--register:hover { transform: translateY(-1px); }
.pg03-btn--block {
  display: flex; width: 100%; justify-content: center; padding: 12px;
  font-size: 1.4rem;
}
.pg03-btn--accent {
  background: linear-gradient(135deg, #00FFFF, #26A69A);
  color: #062a27;
  box-shadow: 0 8px 22px rgba(0,255,255,0.32);
}
.pg03-btn--ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid var(--pg03-line);
}

.pg03-burger {
  width: 40px; height: 40px;
  border: 1px solid var(--pg03-line);
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.pg03-burger--active { background: var(--pg03-accent-soft); }

/* ===================== Mobile menu ===================== */
.pg03-menu {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.78);
  z-index: 9999;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.pg03-menu--open { opacity: 1; visibility: visible; }
.pg03-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(82%, 360px);
  background: linear-gradient(180deg, #1c1c1c, #2D2D2D);
  padding: 18px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.pg03-menu--open .pg03-menu__panel { transform: translateX(0); }
.pg03-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.pg03-menu__title { font-size: 1.5rem; font-weight: 800; color: var(--pg03-accent); }
.pg03-menu__close {
  background: transparent; border: 0; color: #fff; font-size: 1.8rem; cursor: pointer;
}
.pg03-menu__cta { display: grid; gap: 10px; margin-bottom: 14px; }
.pg03-menu__nav { display: grid; gap: 4px; }
.pg03-menu__nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  color: #fff; border-radius: 10px;
  font-size: 1.32rem; font-weight: 600;
  border: 1px solid transparent;
}
.pg03-menu__nav a:hover {
  background: rgba(0,255,255,0.06);
  border-color: var(--pg03-line);
}
.pg03-menu__nav a i { color: var(--pg03-brand); width: 22px; text-align: center; }

/* ===================== Hero ===================== */
.pg03-hero {
  position: relative;
  margin: 14px 0 4px;
  border-radius: var(--pg03-radius);
  overflow: hidden;
  box-shadow: var(--pg03-shadow);
}
.pg03-hero__track { position: relative; }
.pg03-hero__slide {
  position: relative;
  display: none;
  padding: 22px 18px 26px;
  min-height: 210px;
  border-radius: var(--pg03-radius);
  overflow: hidden;
}
.pg03-hero__slide--active { display: block; animation: pg03fade .6s ease; }
@keyframes pg03fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.pg03-hero__slide::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--slide-bg, linear-gradient(135deg, #134e48, #022b3a));
  z-index: 0;
}
.pg03-hero__slide::after {
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(0,255,255,0.35), transparent 38%),
    radial-gradient(circle at 8% 92%, rgba(38,166,154,0.35), transparent 42%);
  z-index: 0;
}
.pg03-hero__content { position: relative; z-index: 2; }
.pg03-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--pg03-accent-soft);
  color: var(--pg03-accent);
  font-size: 1.05rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.pg03-hero__title {
  margin: 0 0 8px;
  font-size: 2.1rem; line-height: 1.15;
  font-weight: 800; color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.pg03-hero__title em { color: var(--pg03-accent); font-style: normal; }
.pg03-hero__desc {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.92);
  font-size: 1.22rem;
  max-width: 92%;
}
.pg03-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }

.pg03-hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  z-index: 3;
}
.pg03-hero__nav--prev { left: 8px; }
.pg03-hero__nav--next { right: 8px; }

.pg03-hero__dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 3;
}
.pg03-hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
}
.pg03-hero__dot--active { background: var(--pg03-accent); width: 18px; border-radius: 999px; }

/* ===================== Section heads ===================== */
.pg03-section { margin: 26px 0; }
.pg03-section__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.pg03-section__title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.55rem; font-weight: 800; color: #fff; margin: 0;
}
.pg03-section__title i { color: var(--pg03-accent); }
.pg03-section__more { font-size: 1.15rem; color: var(--pg03-brand); font-weight: 600; }

/* ===================== Category filter ===================== */
.pg03-catfilter {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 4px 0 12px;
  -webkit-overflow-scrolling: touch;
}
.pg03-catfilter::-webkit-scrollbar { display: none; }
.pg03-catfilter__btn {
  flex: 0 0 auto;
  border: 1px solid var(--pg03-line);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 1.2rem; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.pg03-catfilter__btn--active {
  background: linear-gradient(135deg, var(--pg03-brand), var(--pg03-accent));
  color: #062a27; border-color: transparent;
}

/* ===================== Game grid ===================== */
.pg03-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pg03-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--pg03-bg-3);
  border: 1px solid var(--pg03-line);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.pg03-card:hover { transform: translateY(-3px); border-color: var(--pg03-accent); box-shadow: 0 12px 26px rgba(0,0,0,0.45); }
.pg03-card__img {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: linear-gradient(135deg, #111, #1d2a28);
}
.pg03-card__img img { width: 100%; height: 100%; object-fit: cover; }
.pg03-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.78));
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 10px;
  opacity: 0; transition: opacity .2s ease;
}
.pg03-card:hover .pg03-card__overlay { opacity: 1; }
.pg03-card__play {
  background: var(--pg03-accent); color: #062a27;
  border-radius: 999px; padding: 5px 12px;
  font-weight: 800; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 4px;
}
.pg03-card__title {
  padding: 6px 8px 9px;
  font-size: 1.1rem; font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pg03-card__badge {
  position: absolute; top: 6px; left: 6px;
  background: rgba(0,255,255,0.92); color:#062a27;
  font-size: 0.95rem; font-weight: 800;
  padding: 2px 7px; border-radius: 6px;
}
.pg03-card__badge--hot { background: linear-gradient(135deg, #ff5e62, #ff9966); color:#fff; }

/* ===================== Featured / promo strip ===================== */
.pg03-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pg03-promo__tile {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--pg03-line);
  background: linear-gradient(135deg, rgba(38,166,154,0.18), rgba(0,255,255,0.06));
  color: #fff;
}
.pg03-promo__tile h3 { margin: 0 0 4px; font-size: 1.32rem; }
.pg03-promo__tile p { margin: 0; font-size: 1.1rem; color: var(--pg03-text-mute); }

/* ===================== SEO long text ===================== */
.pg03-seo {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--pg03-line);
  border-radius: var(--pg03-radius);
  padding: 16px;
}
.pg03-seo h2 {
  margin: 0 0 10px;
  font-size: 1.55rem; color: #fff;
  border-left: 4px solid var(--pg03-accent);
  padding-left: 10px;
}
.pg03-seo h3 { margin: 16px 0 6px; font-size: 1.32rem; color: var(--pg03-brand); }
.pg03-seo p { margin: 0 0 10px; color: var(--pg03-text-mute); font-size: 1.18rem; }
.pg03-seo ul { margin: 0 0 10px; padding-left: 18px; color: var(--pg03-text-mute); }
.pg03-seo li { margin-bottom: 4px; font-size: 1.18rem; }
.pg03-seo strong { color: #fff; }
.pg03-seo a { color: var(--pg03-accent); font-weight: 600; }

/* ===================== FAQ ===================== */
.pg03-faq { border: 1px solid var(--pg03-line); border-radius: 10px; margin-bottom: 8px; overflow: hidden; background: rgba(255,255,255,0.02); }
.pg03-faq__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 12px 14px; cursor: pointer;
  font-weight: 700; color: #fff; font-size: 1.22rem;
}
.pg03-faq__head i { color: var(--pg03-brand); transition: transform .2s ease; }
.pg03-faq__body {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 14px;
  color: var(--pg03-text-mute); font-size: 1.14rem;
}
.pg03-faq--open .pg03-faq__body { max-height: 320px; padding-bottom: 12px; }
.pg03-faq--open .pg03-faq__head i { transform: rotate(45deg); }

/* ===================== Footer ===================== */
.pg03-footer {
  margin-top: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  border-top: 1px solid var(--pg03-line);
  padding: 22px 0 8px;
}
.pg03-footer__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.pg03-footer__col h4 { margin: 0 0 8px; font-size: 1.28rem; color: var(--pg03-accent); }
.pg03-footer__col a { display: block; padding: 4px 0; color: var(--pg03-text-mute); font-size: 1.12rem; }
.pg03-footer__col a:hover { color: #fff; }
.pg03-footer__brand { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.pg03-footer__about { font-size: 1.12rem; color: var(--pg03-text-mute); margin: 0 0 12px; }
.pg03-footer__pay { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pg03-footer__pay span {
  border: 1px solid var(--pg03-line); border-radius: 6px;
  padding: 4px 8px; font-size: 1.05rem; color: var(--pg03-text-mute);
  background: rgba(255,255,255,0.03);
}
.pg03-footer__bottom {
  text-align: center; padding-top: 14px; margin-top: 16px;
  border-top: 1px solid var(--pg03-line);
  font-size: 1.08rem; color: var(--pg03-text-mute);
}
.pg03-footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 6px; }
.pg03-footer__legal a { color: var(--pg03-text-mute); font-size: 1.05rem; }

/* ===================== Bottom nav ===================== */
.pg03-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--pg03-bottomnav-h);
  background: linear-gradient(180deg, rgba(20,20,20,0.96), rgba(8,8,8,0.98));
  border-top: 1px solid var(--pg03-line);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.pg03-bottomnav__btn {
  flex: 1;
  background: transparent; border: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; color: var(--pg03-text-mute);
  font-size: 1rem; font-weight: 600;
  cursor: pointer; min-width: 60px; min-height: 60px;
  position: relative;
  transition: color .2s ease;
  font-family: inherit;
}
.pg03-bottomnav__btn i { font-size: 2rem; }
.pg03-bottomnav__btn--primary {
  background: linear-gradient(135deg, var(--pg03-brand), var(--pg03-brand-dark));
  color: #fff;
  margin: -10px 6px 0;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(38,166,154,0.5);
  transform: translateY(-4px);
}
.pg03-bottomnav__btn--primary i { font-size: 2.2rem; color: #fff; }
.pg03-bottomnav__btn--active { color: var(--pg03-accent); }
.pg03-bottomnav__btn--active::after {
  content:""; position: absolute; bottom: 4px;
  width: 18px; height: 3px; border-radius: 2px;
  background: var(--pg03-accent);
}

/* ===================== Back to top ===================== */
.pg03-totop {
  position: fixed; right: 14px; bottom: calc(var(--pg03-bottomnav-h) + 12px);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--pg03-brand); color: #fff;
  border: 0; cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 999;
  box-shadow: var(--pg03-shadow);
}
.pg03-totop--show { opacity: 1; visibility: visible; transform: none; }

/* ===================== Marquee ===================== */
.pg03-marquee {
  background: rgba(0,0,0,0.42);
  border: 1px solid var(--pg03-line);
  border-radius: 10px;
  margin: 10px 0;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
  overflow: hidden;
}
.pg03-marquee__tag {
  background: var(--pg03-accent); color: #062a27;
  font-weight: 800; font-size: 1.05rem;
  padding: 3px 8px; border-radius: 6px; flex: 0 0 auto;
}
.pg03-marquee__track {
  flex: 1; overflow: hidden; white-space: nowrap;
  color: #fff; font-size: 1.15rem;
}
.pg03-marquee__track span {
  display: inline-block; padding-left: 100%;
  animation: pg03marq 22s linear infinite;
}
@keyframes pg03marq { to { transform: translateX(-100%); } }

/* ===================== Highlights ===================== */
.pg03-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin: 14px 0;
}
.pg03-stats__tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--pg03-line);
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
}
.pg03-stats__num { font-size: 1.7rem; font-weight: 800; color: var(--pg03-accent); }
.pg03-stats__lbl { font-size: 1rem; color: var(--pg03-text-mute); margin-top: 2px; }

/* ===================== Page H1 ===================== */
.pg03-h1 {
  margin: 14px 0 2px;
  font-size: 1.68rem;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.pg03-h1 em { color: var(--pg03-accent); font-style: normal; }

/* ===================== Breadcrumb ===================== */
.pg03-crumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 1.06rem; color: var(--pg03-text-mute);
  margin: 12px 0 0;
}
.pg03-crumb a { color: var(--pg03-brand); font-weight: 600; }
.pg03-crumb i { font-size: 0.95rem; }

/* ===================== Article body (help pages) ===================== */
.pg03-article h2 {
  margin: 20px 0 8px;
  font-size: 1.45rem;
  color: #fff;
  border-left: 4px solid var(--pg03-accent);
  padding-left: 10px;
  line-height: 1.3;
}
.pg03-article h3 { margin: 12px 0 6px; font-size: 1.26rem; color: var(--pg03-brand); }
.pg03-article p { margin: 0 0 10px; font-size: 1.16rem; color: var(--pg03-text-mute); }
.pg03-article a { color: var(--pg03-accent); font-weight: 600; }
.pg03-article strong { color: #fff; }
.pg03-article ul { margin: 0 0 10px; padding-left: 18px; color: var(--pg03-text-mute); }
.pg03-article li { margin-bottom: 4px; font-size: 1.16rem; }

/* ===================== Offer rows (promotions) ===================== */
.pg03-offer {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--pg03-line);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(38,166,154,0.16), rgba(0,255,255,0.05));
  padding: 12px;
  margin-bottom: 10px;
}
.pg03-offer__ico {
  width: 42px; height: 42px; flex: 0 0 auto;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(0,255,255,0.14);
  color: var(--pg03-accent);
  font-size: 1.9rem;
}
.pg03-offer__body { flex: 1; min-width: 0; }
.pg03-offer__body h3 { margin: 0 0 2px; font-size: 1.26rem; color: #fff; }
.pg03-offer__body p { margin: 0; font-size: 1.08rem; color: var(--pg03-text-mute); }
.pg03-offer__cta {
  flex: 0 0 auto;
  border: 0; cursor: pointer;
  background: linear-gradient(135deg, #00FFFF, #26A69A);
  color: #062a27; font-weight: 800; font-size: 1.05rem;
  border-radius: 999px; padding: 9px 12px;
  font-family: inherit;
  min-height: 36px;
}

/* ===================== RTP compact rows ===================== */
.pg03-rtp { border: 1px solid var(--pg03-line); border-radius: 12px; overflow: hidden; }
.pg03-rtp__row {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--pg03-line);
  background: rgba(255,255,255,0.02);
}
.pg03-rtp__row:last-child { border-bottom: 0; }
.pg03-rtp__name { flex: 1; color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pg03-rtp__bar { flex: 1.1; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.pg03-rtp__bar span { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--pg03-brand), var(--pg03-accent)); }
.pg03-rtp__val { color: var(--pg03-accent); font-weight: 800; width: 50px; text-align: right; }

/* ===================== Winners feed ===================== */
.pg03-winner {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--pg03-line);
  border-radius: 10px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.02);
  font-size: 1.08rem;
}
.pg03-winner > i { color: var(--pg03-accent); }
.pg03-winner b { color: #fff; }
.pg03-winner span { color: var(--pg03-text-mute); }
.pg03-winner em { margin-left: auto; font-style: normal; color: var(--pg03-brand); font-weight: 800; white-space: nowrap; }

/* ===================== Testimonials ===================== */
.pg03-quote {
  border: 1px solid var(--pg03-line);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.pg03-quote__stars { color: #FFC53D; font-size: 1.02rem; margin-bottom: 4px; letter-spacing: 2px; }
.pg03-quote p { margin: 0 0 6px; font-size: 1.12rem; color: var(--pg03-text); }
.pg03-quote span { font-size: 1.02rem; color: var(--pg03-text-mute); }

/* ===================== App CTA panel ===================== */
.pg03-appcta {
  border-radius: var(--pg03-radius);
  padding: 18px 16px;
  text-align: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(0,255,255,0.28), transparent 42%),
    linear-gradient(135deg, #0b3f39, #071f33);
  border: 1px solid rgba(0,255,255,0.22);
}
.pg03-appcta h2 { margin: 0 0 6px; font-size: 1.5rem; color: #fff; }
.pg03-appcta p { margin: 0 0 12px; color: rgba(255,255,255,0.9); font-size: 1.14rem; }

/* ===================== Steps (guide page) ===================== */
.pg03-steps { counter-reset: pg03step; margin: 0 0 12px; padding: 0; list-style: none; }
.pg03-steps li {
  position: relative;
  padding: 10px 12px 10px 46px;
  border: 1px solid var(--pg03-line);
  border-radius: 10px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.02);
  font-size: 1.14rem;
  color: var(--pg03-text-mute);
}
.pg03-steps li::before {
  counter-increment: pg03step;
  content: counter(pg03step);
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--pg03-brand), var(--pg03-accent));
  color: #062a27; font-weight: 800; font-size: 1.2rem;
}
.pg03-steps b { color: #fff; }

/* ===================== Checklist (safety page) ===================== */
.pg03-check { list-style: none; margin: 0 0 12px; padding: 0; }
.pg03-check li {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px dashed var(--pg03-line);
  font-size: 1.14rem; color: var(--pg03-text-mute);
}
.pg03-check li:last-child { border-bottom: 0; }
.pg03-check i { color: var(--pg03-accent); margin-top: 2px; }
.pg03-check b { color: #fff; }

/* ===================== Notice box ===================== */
.pg03-note {
  display: flex; gap: 10px; align-items: flex-start;
  border: 1px solid rgba(0,255,255,0.25);
  background: rgba(0,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1.1rem;
  color: var(--pg03-text);
  margin: 12px 0;
}
.pg03-note i { color: var(--pg03-accent); margin-top: 2px; }

/* ===================== Desktop ===================== */
@media (min-width: 769px) {
  .pg03-bottomnav { display: none; }
  .pg03-container { max-width: 1100px; padding: 0 22px; }
  .pg03-grid { grid-template-columns: repeat(6, 1fr); }
  .pg03-promo { grid-template-columns: repeat(4, 1fr); }
  .pg03-footer__grid { grid-template-columns: repeat(4, 1fr); }
  .pg03-burger { display: none; }
  main { padding-bottom: 30px; }
}

@media (min-width: 431px) and (max-width: 768px) {
  .pg03-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  main { padding-bottom: calc(var(--pg03-bottomnav-h) + 24px); }
}
