:root {
  --blue-1: #2f71ea;
  --blue-2: #0f67f2;
  --blue-3: #129efe;
  --blue-4: #0b61d9;
  --page-bg: #f1f4f8;
  --text-1: #2f3743;
  --text-2: #5e6773;
  --line: rgba(11, 101, 219, 0.12);
  --shadow-soft: 0 14px 34px rgba(31, 55, 97, 0.08);
  --shadow-card: 0 18px 40px rgba(22, 42, 74, 0.1);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-1);
  background: var(--page-bg);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 120;
  padding: 10px 14px;
  color: #fff;
  background: #0b61d9;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-top {
  background: linear-gradient(90deg, #356fde 0%, #3475e9 50%, #2f71ea 100%);
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.12));
}

.header-login {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.input-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  height: 56px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.input-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #2e3136;
  background: transparent;
  font-size: 16px;
}

.input-shell input::placeholder {
  color: #2e3136;
  opacity: 1;
}

.input-icon,
.password-tools {
  flex: 0 0 auto;
  color: #6a87b5;
  font-size: 20px;
}

.password-shell {
  min-width: 210px;
}

.password-tools {
  font-size: 18px;
  color: #1f2f44;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  height: 56px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-btn:hover,
.notify-btn:hover,
.header-nav a:hover,
.more-btn:hover,
.scroll-top:hover,
.floating-bar a:hover,
.hot-card:hover,
.promo-item:hover,
.small-category:hover,
.feature-card:hover {
  transform: translateY(-2px);
}

.header-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #3a84ff, #2f6ee9);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.header-btn-secondary {
  color: #2262d8;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.notify-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 56px;
  color: #fff;
  background: linear-gradient(180deg, #4ea7ff, #2e7ef3);
  border-radius: 6px;
  font-size: 22px;
}

.notify-btn i {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 9px;
  height: 9px;
  background: #ff1e1e;
  border: 2px solid #fff;
  border-radius: 50%;
}

.header-nav-wrap {
  background: #fff;
  border-bottom: 1px solid rgba(21, 62, 122, 0.08);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

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

.header-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3d4450;
  font-size: 17px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.header-nav a span {
  font-size: 20px;
}

.page-main {
  padding-bottom: 64px;
}

.hero-section {
  position: relative;
  width: 100%;
  background: #fff;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1920 / 396;
  background: #1d0d15;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-dots button.is-active {
  width: 18px;
  height: 18px;
  background: #fff5ee;
}

.notice-bar {
  background: linear-gradient(90deg, var(--blue-3), var(--blue-2), var(--blue-3));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-seo-copy {
  padding: 18px 0 10px;
}

.hero-kicker {
  margin: 0 0 8px;
  color: #0b61d9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-seo-copy h1 {
  margin: 0;
  color: #223042;
  font-size: 30px;
  line-height: 1.2;
}

.hero-seo-copy p:last-child {
  max-width: 980px;
  margin: 10px 0 0;
  color: #586270;
  font-size: 15px;
  line-height: 1.7;
}

.notice-inner {
  display: flex;
  align-items: center;
  min-height: 54px;
  gap: 16px;
}

.notice-icon {
  flex: 0 0 auto;
  color: #ffb320;
  font-size: 24px;
}

.notice-track {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.notice-marquee {
  display: inline-block;
  min-width: 120%;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.content-section {
  padding-top: 28px;
}

.top-tight {
  padding-top: 16px;
}

.section-copy {
  margin-bottom: 18px;
}

.section-copy h2 {
  margin: 0;
  color: #3385f0;
  font-size: 28px;
  line-height: 1.2;
}

.section-copy p {
  max-width: 980px;
  margin: 10px 0 0;
  color: #586270;
  font-size: 15px;
  line-height: 1.7;
}

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

.feature-card,
.small-category,
.hot-card,
.promo-item,
.app-banner {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 20px;
}

.feature-card-sports {
  grid-column: span 6;
  background:
    url("https://www.absiu88.com/res/img/sports-person.ce8f7cf.png") no-repeat right 28px bottom / 340px auto,
    url("https://www.absiu88.com/res/img/sports-banner.2583ae5.png") no-repeat center / cover;
}

.feature-card-live {
  grid-column: span 6;
  background:
    url("https://www.absiu88.com/res/img/live-person.9831989.png") no-repeat right bottom / 300px auto,
    url("https://www.absiu88.com/res/img/live-banner.4e41480.png") no-repeat center / cover;
}

.hot-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  color: #fff;
  background: #fe4e52;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.feature-title {
  position: absolute;
  left: 28px;
  bottom: 52px;
  z-index: 2;
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  text-shadow: 0 3px 0 rgba(28, 91, 180, 0.34);
}

.feature-card-live .feature-title {
  text-shadow: 0 3px 0 rgba(190, 102, 15, 0.34);
}

.feature-desc {
  position: absolute;
  left: 28px;
  bottom: 22px;
  z-index: 2;
  color: #fafafb;
  font-size: 22px;
  font-weight: 600;
}

.feature-person {
  position: absolute;
  pointer-events: none;
}

.sports-person {
  right: 34px;
  bottom: 0;
  width: 380px;
  height: 287px;
}

.live-person {
  right: 0;
  bottom: 0;
  width: 329px;
  height: 312px;
}

.small-category {
  position: relative;
  grid-column: span 2;
  min-height: 138px;
  overflow: hidden;
  background-color: #fff;
}

.small-category::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 78px;
  content: "";
  border-radius: 0 0 12px 12px;
}

.small-category span {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 1;
  width: 132px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.small-cockfight {
  background: url("https://www.absiu88.com/res/img/cockfight-banner.6b8db7a.png") no-repeat center / cover;
}

.small-cockfight::after {
  background: linear-gradient(180deg, rgba(104, 91, 199, 0) 44.83%, #685bc7 78.38%);
}

.small-esports {
  background: url("https://www.absiu88.com/res/img/esports-banner.0a14a47.png") no-repeat center / cover;
}

.small-esports::after {
  background: linear-gradient(180deg, rgba(16, 163, 111, 0) 44.83%, #10a36f 78.38%);
}

.small-elott {
  background: url("https://www.absiu88.com/res/img/elott-banner.51930ef.png") no-repeat center / cover;
}

.small-elott::after {
  background: linear-gradient(180deg, rgba(123, 178, 0, 0) 44.83%, #7ab200 78.38%);
}

.small-fish {
  background: url("https://www.absiu88.com/res/img/fish-banner.43ace54.png") no-repeat center / cover;
}

.small-fish::after {
  background: linear-gradient(180deg, rgba(254, 87, 42, 0) 44.83%, #fe572a 78.38%);
}

.small-rng {
  background: url("https://www.absiu88.com/res/img/rng-banner.cc9f138.png") no-repeat center / cover;
}

.small-rng::after {
  background: linear-gradient(180deg, rgba(3, 164, 252, 0) 44.83%, #03a4fc 78.38%);
}

.small-pvp {
  background: url("https://www.absiu88.com/res/img/pvp-banner.e760c6e.png") no-repeat center / cover;
}

.small-pvp::after {
  background: linear-gradient(180deg, rgba(202, 38, 20, 0) 44.83%, #b3220a 78.38%);
}

.section-headline,
.section-title-row {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.section-headline h2,
.section-title-row h2 {
  margin: 0;
  color: #3385f0;
  font-size: 31px;
  font-weight: 700;
}

.section-headline p,
.section-title-row p {
  margin: 8px 0 0;
  color: #3a3f46;
  font-size: 15px;
}

.hot-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.hot-card {
  overflow: hidden;
  background: #fff;
  border: 3px solid #2f86f1;
}

.hot-card-media {
  position: relative;
  min-height: 168px;
  padding: 12px 10px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 55%, #ffffff 100%);
}

.provider-tag {
  position: absolute;
  left: 10px;
  bottom: 70px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  color: #1b8df7;
  background: rgba(26, 145, 255, 0.12);
  font-size: 11px;
  font-weight: 700;
}

.provider-logo {
  position: absolute;
  top: 14px;
  left: 12px;
  z-index: 2;
  color: #d4486e;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hot-card:nth-child(2) .provider-logo,
.hot-card:nth-child(3) .provider-logo,
.hot-card:nth-child(4) .provider-logo,
.hot-card:nth-child(5) .provider-logo,
.hot-card:nth-child(6) .provider-logo {
  color: #e03e27;
}

.hot-card-media img {
  width: 100%;
  height: 152px;
  object-fit: contain;
}

.hot-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(95deg, #149cfe 0.42%, #0066ff 48.89%, #0a61d4 98.81%);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.promo-section .section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.more-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 56px;
  color: #fff;
  background: linear-gradient(95deg, #149cfe 0.42%, #06f 48.89%, #0a61d4 98.81%);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.promo-item {
  position: relative;
  overflow: hidden;
}

.promo-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(159, 227, 255, 0.28);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.promo-item:hover::before {
  opacity: 1;
}

.promo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 263 / 120;
}

.app-banner {
  display: block;
  overflow: hidden;
  background: url("https://www.absiu88.com/res/img/down-bg.ca6ed09.png") no-repeat center / cover;
}

.seo-content-section,
.faq-section {
  margin-top: 8px;
}

.seo-article,
.faq-list {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.seo-article > h2 {
  margin: 0;
  color: #2f3743;
  font-size: 28px;
  line-height: 1.25;
}

.seo-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.seo-card,
.faq-item {
  padding: 18px;
  background: #f7faff;
  border: 1px solid rgba(17, 90, 190, 0.08);
  border-radius: 12px;
}

.seo-card h3,
.faq-item h3 {
  margin: 0;
  color: #223042;
  font-size: 20px;
  line-height: 1.3;
}

.seo-card p,
.faq-item p {
  margin: 10px 0 0;
  color: #586270;
  font-size: 15px;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.app-banner-overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 340px;
  padding: 0 32px 0 18px;
}

.app-phones {
  align-self: flex-end;
  width: 500px;
  max-width: 52%;
}

.app-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-right: 16px;
}

.app-platforms {
  display: flex;
  gap: 34px;
}

.platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 22px;
  font-size: 48px;
  line-height: 1;
}

.platform-android {
  color: #fff;
  background: linear-gradient(180deg, #2fc6c7, #1ca3b1);
}

.platform-apple {
  color: #fff;
  background: linear-gradient(180deg, #ffc81b, #f7b300);
}

.store-row {
  display: flex;
  gap: 24px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  min-height: 58px;
  padding: 10px 18px;
  color: #fff;
  background: #0d0d12;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.footer-zone {
  padding-bottom: 30px;
}

.vendor-row,
.footer-main,
.footer-links,
.bank-row {
  background: #fff;
}

.vendor-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  padding: 28px 20px 24px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom: 1px solid #eceff4;
}

.vendor-row img {
  max-width: 100px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.92;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.95fr 2fr 1fr;
  gap: 24px;
  padding: 28px 20px;
  border-bottom: 1px solid #eceff4;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  width: 210px;
  height: auto;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.08));
}

.footer-copy {
  color: #2d3138;
  font-size: 16px;
  line-height: 1.45;
}

.footer-copy h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.footer-copy p + p {
  margin-top: 10px;
}

.footer-support h3 {
  margin: 0 0 18px;
  color: #2f3743;
  font-size: 22px;
}

.footer-support {
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.footer-support a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2f3743;
  font-size: 16px;
}

.footer-support a + a {
  margin-top: 14px;
}

.footer-links,
.bank-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 28px 24px;
  border-bottom: 1px solid #eceff4;
}

.footer-links a,
.bank-row span {
  color: #2f343c;
  font-size: 16px;
  text-align: center;
}

.bank-row {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.bank-row span {
  min-width: 92px;
  color: #7b7f85;
  font-size: 18px;
  font-weight: 700;
  filter: grayscale(1);
}

.floating-bar {
  position: fixed;
  right: 10px;
  top: 50%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.floating-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(180deg, #36a5ff, #1a84f4);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(19, 77, 162, 0.18);
  font-size: 24px;
}

.floating-promo {
  position: fixed;
  right: 14px;
  bottom: 78px;
  z-index: 51;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: #868686;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.floating-cash,
.floating-featured {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 84px;
  padding: 10px;
  color: #fff6d8;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.floating-cash::after,
.floating-featured::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  content: "";
  background: #ff2323;
  border: 2px solid #fff;
  border-radius: 50%;
}

.floating-cash {
  background: radial-gradient(circle at top, #ffd66a, #f25d22 72%);
}

.floating-featured {
  background: radial-gradient(circle at top, #d6efff, #4687ff 72%);
}

.scroll-top {
  position: fixed;
  right: 72px;
  bottom: 84px;
  z-index: 52;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(180deg, #ff9617, #ff5a00);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(255, 111, 0, 0.22);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 1380px) {
  .hot-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .hero-seo-copy h1 {
    font-size: 26px;
  }

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

  .header-top .container {
    flex-direction: column;
    align-items: center;
  }

  .header-login {
    width: 100%;
    justify-content: center;
  }

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

  .feature-card-sports,
  .feature-card-live {
    grid-column: span 2;
  }

  .small-category {
    grid-column: span 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .app-banner-overlay {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 30px 20px;
  }

  .app-phones {
    max-width: 100%;
    width: 520px;
    align-self: center;
  }

  .app-copy {
    padding-right: 0;
  }
}

@media (max-width: 860px) {
  .hero-seo-copy {
    padding: 14px 0 6px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero-seo-copy h1 {
    font-size: 22px;
  }

  .hero-seo-copy p:last-child {
    font-size: 13px;
    line-height: 1.65;
  }

  .section-copy {
    margin-bottom: 14px;
  }

  .section-copy h2 {
    font-size: 22px;
  }

  .section-copy p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.65;
  }

  .seo-article,
  .faq-list {
    padding: 16px;
  }

  .seo-article > h2 {
    font-size: 22px;
  }

  .seo-columns {
    gap: 12px;
    margin-top: 14px;
  }

  .seo-card,
  .faq-item {
    padding: 14px;
  }

  .seo-card h3,
  .faq-item h3 {
    font-size: 17px;
  }

  .seo-card p,
  .faq-item p {
    font-size: 13px;
    line-height: 1.65;
  }

  .container {
    width: min(calc(100% - 16px), 1440px);
  }

  .header-top .container {
    align-items: stretch;
    gap: 12px;
    padding: 12px 0 10px;
  }

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

  .brand img {
    width: 164px;
  }

  .header-login {
    display: grid;
    grid-template-columns: 1fr 1fr 44px;
    align-items: center;
    width: 100%;
    gap: 8px;
  }

  .input-shell,
  .password-shell {
    display: none;
  }

  .header-btn {
    min-width: 0;
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border-width: 1px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
  }

  .notify-btn {
    width: 44px;
    height: 42px;
    justify-self: end;
    border-radius: 10px;
    font-size: 18px;
  }

  .notify-btn i {
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
  }

  .header-nav-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-nav {
    min-height: 56px;
    gap: 14px;
  }

  .header-nav a {
    gap: 6px;
    font-size: 14px;
  }

  .header-nav a span {
    font-size: 16px;
  }

  .page-main {
    padding-bottom: 48px;
  }

  .hero-dots {
    bottom: 8px;
    gap: 8px;
  }

  .hero-dots button {
    width: 10px;
    height: 10px;
  }

  .hero-dots button.is-active {
    width: 14px;
    height: 14px;
  }

  .notice-inner {
    min-height: 42px;
    gap: 10px;
  }

  .notice-icon {
    font-size: 18px;
  }

  .notice-marquee {
    font-size: 13px;
  }

  .feature-title {
    left: 18px;
    bottom: 50px;
    font-size: 34px;
  }

  .feature-desc {
    left: 18px;
    bottom: 18px;
    font-size: 17px;
  }

  .feature-card-sports {
    min-height: 200px;
    background-size: auto 92%, cover;
  }

  .feature-card-live {
    min-height: 200px;
    background-size: auto 96%, cover;
  }

  .category-grid,
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hot-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-card-sports,
  .feature-card-live {
    grid-column: span 1;
    min-height: 200px;
  }

  .small-category {
    min-height: 148px;
  }

  .small-category span {
    width: 124px;
    font-size: 22px;
  }

  .section-headline h2,
  .section-title-row h2 {
    font-size: 23px;
  }

  .section-headline p,
  .section-title-row p {
    margin-top: 6px;
    font-size: 13px;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .more-btn {
    width: 120px;
    height: 40px;
    font-size: 14px;
  }

  .hot-card-media {
    min-height: 138px;
    padding: 10px 8px 0;
  }

  .hot-card-media img {
    height: 122px;
  }

  .hot-card-title {
    min-height: 38px;
    padding: 8px 8px;
    font-size: 13px;
    line-height: 1.15;
  }

  .provider-tag {
    bottom: 58px;
    height: 20px;
    padding: 0 6px;
    font-size: 10px;
  }

  .provider-logo {
    top: 10px;
    left: 10px;
    font-size: 14px;
  }

  .store-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .store-badge {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    font-size: 14px;
  }

  .app-banner-overlay {
    min-height: 0;
    gap: 18px;
    padding: 18px 14px 20px;
  }

  .app-phones {
    width: 100%;
    max-width: 100%;
  }

  .app-platforms {
    gap: 16px;
  }

  .platform {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 34px;
  }

  .vendor-row {
    gap: 14px;
    padding: 20px 14px 16px;
  }

  .vendor-row img {
    max-width: 70px;
    height: 22px;
  }

  .footer-main {
    gap: 16px;
    padding: 20px 14px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand img {
    width: 160px;
  }

  .footer-copy {
    font-size: 14px;
    text-align: center;
  }

  .footer-copy h2 {
    font-size: 18px;
  }

  .footer-support h3 {
    margin-bottom: 12px;
    font-size: 18px;
    text-align: center;
  }

  .footer-support {
    align-items: center;
  }

  .footer-support a {
    font-size: 14px;
  }

  .footer-links,
  .bank-row {
    gap: 14px 18px;
    padding: 18px 12px;
  }

  .footer-links a,
  .bank-row span {
    font-size: 13px;
  }

  .bank-row span {
    min-width: 64px;
  }

  .floating-bar {
    right: 8px;
  }

  .floating-bar a {
    width: 44px;
    height: 44px;
    border-radius: 9px;
    font-size: 19px;
  }

  .floating-promo {
    right: 8px;
    bottom: 66px;
    gap: 8px;
  }

  .floating-cash,
  .floating-featured {
    width: 56px;
    height: 66px;
    border-radius: 18px;
    font-size: 10px;
  }

  .floating-close {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .scroll-top {
    right: 60px;
    bottom: 70px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}
