:root {
  --yo-page: #5a5a5a;
  --yo-black: #030303;
  --yo-panel: #0b0b0b;
  --yo-panel-2: #151515;
  --yo-nav: #2b2b2b;
  --yo-line: rgba(255, 255, 255, .14);
  --yo-text: #ffffff;
  --yo-muted: #d5d5d5;
  --yo-orange: #ff5a18;
  --yo-orange-2: #ff8a22;
  --yo-gold: #ffd462;
  --yo-blue: #3b82f6;
  --yo-ink: #121212;
}

* {
  box-sizing: border-box;
}

body.yo88-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--yo-page);
  color: var(--yo-text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.yo88-page a {
  color: inherit;
  text-decoration: none;
}

body.yo88-page img {
  max-width: 100%;
}

.yo-site {
  width: min(1180px, 100%);
  margin: 0 auto;
  background: var(--yo-black);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .28);
}

.yo-shell {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

.yo-topbar {
  background: #000;
}

.yo-topbar-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

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

.yo-brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #111;
  background: linear-gradient(135deg, #ff6a00 0%, #ffd462 55%, #fff 100%);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 90, 24, .28);
}

.yo-brand-name {
  display: block;
  color: #fff;
  font-size: 42px;
  line-height: .95;
  font-weight: 900;
  font-style: italic;
}

.yo-brand-sub {
  display: block;
  margin-top: 5px;
  color: #f6b46e;
  font-size: 12px;
}

.yo-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  min-width: 0;
}

.yo-search input {
  width: 100%;
  min-height: 42px;
  border: 0;
  padding: 0 14px;
  color: #222;
  font-size: 14px;
  outline: 0;
}

.yo-search button {
  border: 0;
  background: linear-gradient(180deg, #ff8a22, #f45112);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.yo-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.yo-btn {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 212, 98, .52);
  border-radius: 8px;
  background: linear-gradient(180deg, #ff7a21 0%, #ff4713 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .25), 0 10px 18px rgba(0, 0, 0, .32);
}

.yo-nav-wrap {
  background: var(--yo-nav);
  border-top: 1px solid #1f1f1f;
}

.yo-nav {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.yo-nav a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 11px;
  border-bottom: 3px solid transparent;
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.yo-nav a:hover,
.yo-nav a.active {
  border-bottom-color: var(--yo-blue);
  color: var(--yo-gold);
}

.yo-hero {
  position: relative;
  isolation: isolate;
  min-height: 372px;
  overflow: hidden;
  background: #050505;
}

.yo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .72) 42%, rgba(0, 0, 0, .14) 76%), url("/assets/yo88-hero.png");
  background-size: cover;
  background-position: center;
}

.yo-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
}

.yo-hero-inner {
  min-height: 372px;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(200px, 1fr);
  gap: 26px;
  align-items: center;
  padding: 36px 0;
}

.yo-kicker {
  margin: 0 0 12px;
  color: var(--yo-gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.yo-title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: .96;
  font-weight: 900;
}

.yo-title span {
  display: block;
  color: var(--yo-gold);
}

.yo-lead {
  max-width: 590px;
  margin: 18px 0 0;
  color: #f7f7f7;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 700;
}

.yo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.yo-hero-note {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #f1f1f1;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
}

.yo-content {
  padding: 34px 0 46px;
}

.yo-block {
  margin-top: 34px;
}

.yo-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.yo-section-title {
  margin: 0 0 18px;
  color: var(--yo-orange);
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.yo-copy {
  color: #fff;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.75;
}

.yo-copy p {
  margin: 0 0 16px;
}

.yo-toc {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--yo-orange);
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
}

.yo-toc span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: var(--yo-orange);
  font-size: 18px;
}

.yo-info-card {
  border: 1px solid rgba(255, 90, 24, .3);
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #080808);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .34);
}

.yo-info-card h2 {
  margin: 0;
  padding: 18px 20px;
  color: var(--yo-gold);
  font-size: 22px;
}

.yo-info-card table {
  width: 100%;
  border-collapse: collapse;
  color: #efefef;
}

.yo-info-card th,
.yo-info-card td {
  padding: 13px 20px;
  border-top: 1px solid var(--yo-line);
  text-align: left;
  vertical-align: top;
}

.yo-info-card th {
  width: 38%;
  color: #fff;
}

.yo-app {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.yo-phone {
  min-height: 330px;
  padding: 24px;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 20%, rgba(255, 138, 34, .25), transparent 45%), #101010;
  border: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
}

.yo-phone-frame {
  width: 180px;
  height: 310px;
  border: 8px solid #262626;
  border-radius: 28px;
  background: linear-gradient(180deg, #171717, #050505);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .48), 0 0 36px rgba(255, 90, 24, .2);
  padding: 24px 14px 16px;
}

.yo-phone-logo {
  color: var(--yo-gold);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.yo-phone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.yo-phone-grid span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #2a2a2a, #111);
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255, 212, 98, .24);
}

.yo-app-text {
  color: #fff;
  text-align: center;
}

.yo-app-text h2 {
  margin: 0 0 18px;
  color: var(--yo-orange);
  font-size: 28px;
  line-height: 1.3;
  text-transform: uppercase;
}

.yo-app-text p {
  margin: 0 auto 16px;
  max-width: 620px;
  color: #f3f3f3;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

.yo-store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.yo-store {
  display: inline-flex;
  min-width: 210px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  background: #050505;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.yo-guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.yo-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: #101010;
  overflow: hidden;
}

.yo-card-top {
  height: 8px;
  background: linear-gradient(90deg, var(--yo-orange), var(--yo-gold));
}

.yo-card-body {
  padding: 17px;
}

.yo-card h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}

.yo-card p {
  margin: 0;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

.yo-faq {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.yo-faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.yo-faq-row span {
  color: var(--yo-orange);
  font-size: 22px;
}

.yo-news-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.yo-news-head p {
  max-width: 430px;
  margin: 0;
  color: #d0d0d0;
  line-height: 1.7;
}

.yo-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.yo-news-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: #151515;
}

.yo-news-thumb {
  min-height: 112px;
  background: linear-gradient(135deg, #111 0%, #2b2b2b 46%, #ff5a18 100%);
}

.yo-news-body {
  padding: 18px;
}

.yo-news-card h3 {
  margin: 0 0 9px;
  color: #141414;
  font-size: 20px;
  line-height: 1.35;
}

.yo-news-card p {
  margin: 0;
  color: #555;
  line-height: 1.65;
}

.yo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 13px;
  color: #777;
  font-size: 13px;
}

.yo-pagelist {
  margin-top: 20px;
}

.yo-pagelist ul,
.yo-pagelist ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yo-pagelist a,
.yo-pagelist span {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #222;
  color: #fff;
}

.yo-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #050505;
  color: #d6d6d6;
}

.yo-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.yo-footer p {
  margin: 0;
}

.yo-breadcrumb {
  padding: 15px 0 0;
  color: #c9c9c9;
  font-size: 14px;
}

.yo-breadcrumb ol,
.yo-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yo-article-hero {
  min-height: 300px;
}

.yo-article-hero .yo-hero-inner {
  min-height: 300px;
  grid-template-columns: minmax(0, 720px);
}

.yo-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  padding: 34px 0 48px;
}

.yo-article-main {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: #151515;
}

.yo-article-main h1 {
  margin: 0;
  color: #111;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.14;
  font-weight: 900;
}

.yo-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 16px 0 24px;
  color: #777;
  font-size: 14px;
}

.yo-article-body {
  color: #252525;
  font-size: 17px;
  line-height: 1.9;
}

.yo-article-body h2,
.yo-article-body h3 {
  color: #111;
  line-height: 1.25;
}

.yo-article-body img {
  height: auto;
  border-radius: 8px;
}

.yo-prenext,
.yo-article-actions {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
}

.yo-article-actions ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yo-prenext a,
.yo-article-actions a {
  color: #d84a12;
  font-weight: 800;
}

.yo-sidebar {
  position: sticky;
  top: 18px;
}

.yo-side-card {
  border-radius: 8px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 22px;
}

.yo-side-card h2 {
  margin: 0 0 12px;
  color: var(--yo-gold);
}

.yo-side-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.yo-side-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #ddd;
  line-height: 1.55;
}

.yo-side-card li:first-child {
  border-top: 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f3f3f3;
  color: #d84a12;
}

@media (max-width: 1040px) {
  .yo-topbar-inner,
  .yo-intro,
  .yo-app,
  .yo-article-layout {
    grid-template-columns: 1fr;
  }

  .yo-actions {
    justify-content: flex-start;
  }

  .yo-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yo-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .yo-shell {
    width: min(100% - 24px, 1080px);
  }

  .yo-topbar-inner {
    gap: 14px;
    padding: 16px 0;
  }

  .yo-brand-name {
    font-size: 36px;
  }

  .yo-actions {
    width: 100%;
  }

  .yo-actions .yo-btn {
    flex: 1;
    padding: 0 8px;
  }

  .yo-nav {
    justify-content: flex-start;
  }

  .yo-hero,
  .yo-hero-inner,
  .yo-article-hero,
  .yo-article-hero .yo-hero-inner {
    min-height: 0;
  }

  .yo-hero-inner,
  .yo-article-hero .yo-hero-inner {
    grid-template-columns: 1fr;
    padding: 38px 0 76px;
  }

  .yo-hero::before {
    background-position: center right;
  }

  .yo-content {
    padding-top: 24px;
  }

  .yo-guide-grid,
  .yo-news-grid {
    grid-template-columns: 1fr;
  }

  .yo-news-head,
  .yo-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .yo-info-card th,
  .yo-info-card td {
    display: block;
    width: 100%;
  }

  .yo-info-card th {
    padding-bottom: 4px;
  }

  .yo-info-card td {
    padding-top: 4px;
  }

  .yo-store {
    width: 100%;
  }

  .yo-article-main {
    padding: 20px;
  }
}

@media (max-width: 420px) {
  .yo-title {
    font-size: 38px;
  }

  .yo-search {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .yo-phone {
    min-height: 280px;
  }
}

/* Remake: closer to the approved YO88 mockup. */
.yo-hero {
  min-height: 440px;
}

.yo-hero-inner {
  min-height: 440px;
  padding: 46px 0 76px;
}

.yo-title {
  text-transform: uppercase;
  font-size: clamp(40px, 4.8vw, 64px);
}

.yo-btn.gold {
  min-height: 52px;
  min-width: 190px;
  border-color: rgba(255, 245, 170, .86);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff06d 0%, #f7b300 100%);
  color: #111;
  font-size: 20px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .45), 0 16px 26px rgba(255, 138, 34, .24);
}

.yo-content {
  padding: 0 0 46px;
}

.yo-trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  border: 1px solid rgba(255, 212, 98, .28);
  border-radius: 8px;
  background: rgba(8, 8, 8, .9);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .38);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yo-trust-item {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-left: 1px solid rgba(255, 212, 98, .16);
}

.yo-trust-item:first-child {
  border-left: 0;
}

.yo-trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 212, 98, .58);
  border-radius: 999px;
  color: var(--yo-gold);
  font-size: 22px;
}

.yo-trust-item b {
  display: block;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.yo-trust-item span {
  display: block;
  margin-top: 4px;
  color: #bfbfbf;
  font-size: 12px;
  line-height: 1.35;
}

.yo-category-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  padding: 22px 0 8px;
}

.yo-category-card {
  min-height: 140px;
  border: 1px solid rgba(255, 190, 56, .82);
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 18%, rgba(255, 190, 56, .34), rgba(255, 90, 24, .13) 38%, rgba(0, 0, 0, .94) 74%);
  color: #fff;
  box-shadow: inset 0 0 22px rgba(255, 138, 34, .14), 0 12px 28px rgba(0, 0, 0, .28);
}

.yo-category-icon {
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--yo-gold);
  font-size: 40px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255, 190, 56, .45);
}

.yo-category-card strong {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 90, 24, .08), rgba(255, 90, 24, .24));
}

.yo-intro {
  display: block;
  max-width: 930px;
  text-align: center;
}

.yo-intro .yo-section-title {
  margin-left: auto;
  margin-right: auto;
}

.yo-copy {
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
}

.yo-divider-title {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--yo-orange);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.yo-divider-title::before,
.yo-divider-title::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 34, .72), transparent);
}

.yo-app {
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 138, 34, .08), rgba(255, 255, 255, .02));
}

.yo-dual-phone {
  position: relative;
  width: min(100%, 390px);
  height: 320px;
}

.yo-dual-phone .yo-phone-frame {
  position: absolute;
  left: 26px;
  bottom: 0;
  transform: rotate(-7deg);
}

.yo-dual-phone .yo-phone-frame.alt {
  left: 164px;
  bottom: 10px;
  transform: rotate(8deg);
}

.yo-guide-card {
  min-height: 128px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #080808);
  color: #fff;
  text-align: center;
}

.yo-guide-icon {
  height: 42px;
  margin-bottom: 10px;
  color: var(--yo-gold);
  font-size: 36px;
  line-height: 1;
}

.yo-guide-card h3 {
  margin: 0 0 8px;
  color: var(--yo-orange);
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
}

.yo-guide-card p {
  margin: 0;
  color: #d2d2d2;
  font-size: 13px;
  line-height: 1.5;
}

.yo-news-thumb.gift {
  background: radial-gradient(circle at 55% 45%, #ffd462, transparent 24%), linear-gradient(135deg, #2a1400, #ff5a18);
}

.yo-news-thumb.secure {
  background: radial-gradient(circle at 55% 40%, #9bd7ff, transparent 25%), linear-gradient(135deg, #061021, #1560a8);
}

.yo-news-thumb.sports {
  background: radial-gradient(circle at 48% 35%, #fff, transparent 18%), linear-gradient(135deg, #102a43, #071019 48%, #ff7a21);
}

@media (max-width: 1040px) {
  .yo-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .yo-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yo-app {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .yo-hero,
  .yo-hero-inner {
    min-height: 0;
  }

  .yo-hero-inner {
    padding: 38px 0 78px;
  }

  .yo-trust-strip,
  .yo-category-grid {
    grid-template-columns: 1fr;
  }

  .yo-trust-strip {
    margin-top: -34px;
  }

  .yo-trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 212, 98, .16);
  }

  .yo-trust-item:first-child {
    border-top: 0;
  }

  .yo-category-card {
    min-height: 112px;
  }

  .yo-category-icon {
    height: 70px;
  }

  .yo-dual-phone {
    height: 300px;
  }

  .yo-dual-phone .yo-phone-frame {
    left: 18px;
  }

  .yo-dual-phone .yo-phone-frame.alt {
    left: 132px;
  }
}

/* Remake polish: match the approved black/gold portal layout more closely. */
.yo-brand-mark {
  border-radius: 50%;
}

.yo-brand-mark::after {
  content: "★";
  margin-left: 2px;
  color: #111;
  font-size: 14px;
}

.yo-nav a {
  text-transform: uppercase;
}

.yo-nav {
  scrollbar-width: none;
}

.yo-nav::-webkit-scrollbar {
  display: none;
}

.yo-nav .yo-home {
  min-width: 36px;
  justify-content: center;
  padding: 0 8px;
  font-size: 18px;
}

.yo-hero-copy .yo-lead {
  color: var(--yo-gold);
  max-width: 660px;
  font-size: clamp(21px, 2.6vw, 28px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .58);
}

.yo-article-hero .yo-hero-copy .yo-lead {
  max-width: 660px;
  color: #f4f4f4;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  text-transform: none;
}

.yo-app-media {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #070707;
  display: block;
}

.yo-roulette-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.yo-dual-phone .yo-phone-frame {
  width: 170px;
  height: 300px;
}

.yo-dual-phone .yo-phone-frame.alt {
  width: 178px;
  height: 314px;
}

.yo-phone-grid span {
  font-size: 11px;
  text-align: center;
}

.yo-news-head .yo-divider-title {
  flex: 1 1 auto;
  margin: 0;
}

.yo-news-more {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.yo-label {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 8px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ff8a22, #f45112);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.yo-news-thumb {
  position: relative;
}

.yo-news-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 26%, rgba(255, 245, 148, .76), transparent 13%),
    radial-gradient(circle at 66% 62%, rgba(255, 138, 34, .6), transparent 18%);
}

.yo-article-main a {
  color: #d84a12;
  font-weight: 800;
}

@media (max-width: 760px) {
  .yo-topbar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    padding: 16px 0;
  }

  .yo-actions {
    width: 100%;
    justify-content: center;
  }

  .yo-hero-inner {
    grid-template-columns: 1fr;
  }

  .yo-news-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .yo-news-head .yo-divider-title {
    width: 100%;
  }

  .yo-hero-copy .yo-lead {
    font-size: 21px;
  }

  .yo-app-media {
    min-height: 320px;
  }
}

/* yo88 article content enrichment */
.yo-article-body ul,
.yo-article-body ol {
  margin: 14px 0 22px;
  padding-left: 24px;
}
.yo-article-body li {
  margin: 8px 0;
}
.yo-article-body .yo-note-box {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--yo-orange);
  border-radius: 8px;
  background: #fff4e8;
  color: #2a1a10;
}
.yo-article-body .yo-info-table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}
.yo-article-body .yo-info-table th,
.yo-article-body .yo-info-table td {
  padding: 12px 14px;
  border: 1px solid #e6e6e6;
  text-align: left;
  vertical-align: top;
}
.yo-article-body .yo-info-table th {
  background: #151515;
  color: #fff;
}
.yo-article-body .yo-faq-article h3 {
  margin-top: 20px;
}
