:root {
  --bg-0: #080615;
  --bg-1: #0f0a1f;
  --bg-2: #18102f;
  --bg-3: #221840;
  --bg-4: #2e2257;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.13);

  --purple-50: #f5f0ff;
  --purple-200: #d4b8ff;
  --purple-300: #b884ff;
  --purple-400: #a855f7;
  --purple-500: #9333ea;
  --purple-600: #7c3aed;
  --purple-700: #5b21b6;
  --purple-800: #4c1d95;
  --purple-900: #2e1065;

  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-600: #d97706;
  --gold-700: #b45309;

  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;

  --green: #1fd47a;
  --red: #ff4d4d;
  --blue: #36a3ff;

  --text-1: #ffffff;
  --text-2: #d4c8ee;
  --text-3: #8f7fa8;
  --text-4: #5a4e70;

  --grad-purple: linear-gradient(180deg, #c084fc 0%, #9333ea 55%, #6b21a8 100%);
  --grad-purple-h: linear-gradient(
    90deg,
    #c084fc 0%,
    #9333ea 50%,
    #7c3aed 100%
  );
  --grad-gold: linear-gradient(180deg, #fde68a 0%, #f59e0b 45%, #d97706 100%);
  --grad-gold-h: linear-gradient(90deg, #fcd34d 0%, #f59e0b 55%, #d97706 100%);
  --grad-hero:
    radial-gradient(
      140% 90% at 80% 10%,
      rgba(168, 85, 247, 0.5) 0%,
      rgba(168, 85, 247, 0) 55%
    ),
    radial-gradient(
      120% 80% at 10% 90%,
      rgba(251, 191, 36, 0.3) 0%,
      rgba(251, 191, 36, 0) 55%
    ),
    linear-gradient(180deg, #1a0e2c 0%, #0f0a1f 100%);
  --grad-card: linear-gradient(180deg, #221840 0%, #18102f 100%);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-card:
    0 8px 24px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --glow-purple:
    0 0 0 1px rgba(192, 132, 252, 0.35), 0 12px 32px rgba(147, 51, 234, 0.35);
  --glow-gold:
    0 0 0 1px rgba(251, 191, 36, 0.35), 0 12px 32px rgba(245, 158, 11, 0.35);

  --font-sans:
    'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-sans);
  color: var(--text-1);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--r-pill);
  padding: 10px 18px;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.12s ease;
  letter-spacing: 0.01em;
  color: #fff;
}
.btn:hover {
  filter: brightness(1.06);
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--grad-purple-h);
  box-shadow:
    0 6px 16px rgba(147, 51, 234, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-gold {
  color: #2a1700;
  background: var(--grad-gold-h);
  box-shadow:
    0 6px 16px rgba(245, 158, 11, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline-primary {
  color: var(--purple-200);
  background: transparent;
  border: 1px solid rgba(192, 132, 252, 0.45);
}
.btn-lg {
  padding: 14px 24px;
  font-size: 15px;
}
.btn-xl {
  padding: 16px 28px;
  font-size: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  border: 1px solid var(--line);
}
.chip-purple {
  background: rgba(147, 51, 234, 0.16);
  color: var(--purple-200);
  border-color: rgba(147, 51, 234, 0.35);
}
.chip-gold {
  background: rgba(245, 158, 11, 0.14);
  color: var(--gold-300);
  border-color: rgba(245, 158, 11, 0.35);
}
.chip-live {
  background: rgba(31, 212, 122, 0.14);
  color: var(--green);
  border-color: rgba(31, 212, 122, 0.35);
}
.chip-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.row {
  display: flex;
  align-items: center;
}
.gap-6 {
  gap: 6px;
}
.gap-8 {
  gap: 8px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
.muted {
  color: var(--text-3);
}
.small {
  font-size: 12px;
}

.t-purple {
  background: linear-gradient(180deg, #d4b8ff 0%, #a855f7 55%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
  box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.oly88-page {
  min-height: 100%;
  background: var(--bg-1);
  position: relative;
  overflow-x: hidden;
}
.oly88-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(8, 6, 21, 0.92),
    rgba(15, 10, 31, 0.88)
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.oly88-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oly88-logo {
  height: 57px;
  display: block;
}
.oly88-nav {
  display: flex;
  gap: 22px;
}
.oly88-nav a {
  color: var(--text-2);
  font-size: 16px;
  font-weight: 500;
  padding: 6px 2px;
  position: relative;
  transition: color 0.15s;
}
.oly88-nav a:hover {
  color: var(--gold-300);
}
.oly88-nav a.active {
  color: var(--gold-300);
}
.oly88-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 2px;
  background: var(--grad-gold-h);
  border-radius: 2px;
}
.oly88-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  width: 220px;
  color: var(--text-3);
}
.oly88-search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text-1);
  font-size: 13px;
  width: 100%;
  font-family: var(--font-sans);
}
.oly88-search input::placeholder {
  color: var(--text-4);
}

.oly88-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 28px 64px;
}

.oly88-section {
  margin-top: 56px;
}
.oly88-section:first-child {
  margin-top: 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 18px 0;
}
.section-title h2,
.section-title h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title h2::before,
.section-title h1::before {
  content: '';
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: var(--grad-gold);
}
.section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.section-more:hover {
  color: var(--text-1);
}

.oly88-hero-carousel {
  position: relative;
}
.hero-carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.hero-track {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  width: 100%;
}
.hero-item {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
}
.hero-item img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-slide {
  inset: 0;
  background: var(--grad-hero);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 56px 64px;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide.hero-accent-purple {
  background:
    radial-gradient(
      140% 90% at 80% 30%,
      rgba(147, 51, 234, 0.5) 0%,
      rgba(147, 51, 234, 0) 55%
    ),
    radial-gradient(
      120% 80% at 10% 90%,
      rgba(251, 191, 36, 0.25) 0%,
      rgba(251, 191, 36, 0) 55%
    ),
    linear-gradient(180deg, #1a0e2c 0%, #0f0a1f 100%);
}
.hero-slide.hero-accent-gold {
  background:
    radial-gradient(
      140% 90% at 75% 30%,
      rgba(251, 191, 36, 0.4) 0%,
      rgba(251, 191, 36, 0) 55%
    ),
    radial-gradient(
      120% 80% at 15% 80%,
      rgba(147, 51, 234, 0.3) 0%,
      rgba(147, 51, 234, 0) 55%
    ),
    linear-gradient(180deg, #1d1535 0%, #0f0a1f 100%);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    900px 400px at 75% 25%,
    rgba(147, 51, 234, 0.15),
    transparent 60%
  );
}
.hero-slide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 380px;
}
.hero-slide-copy {
  max-width: 520px;
}
.hero-headline {
  font-size: 78px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 16px 0 8px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.hero-subheadline {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.hero-body {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}
.hero-slide-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-art svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-slide-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}
.hero-arrow-prev {
  left: 16px;
}
.hero-arrow-next {
  right: 16px;
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.15s,
    width 0.25s;
}
.hero-dot.active {
  background: var(--grad-gold-h);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.hero-stats-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 32px;
}
.hero-stat {
  position: relative;
  padding: 0 24px;
}
.hero-stat:first-child {
  padding-left: 0;
}
.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 36px;
  background: var(--line);
  transform: translateY(-50%);
}
.stat-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.slot-card {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  cursor: pointer;
  display: block;
}
.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 16px 36px rgba(147, 51, 234, 0.25);
}
.slot-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #07060d;
}
.slot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  z-index: 2;
}
.slot-badge-primary {
  background: var(--grad-purple-h);
  color: #fff;
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.5);
}
.slot-badge-gold {
  background: var(--grad-gold-h);
  color: #2a1700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}
.slot-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
}
.slot-name-block {
  flex: 1;
  min-width: 0;
}
.slot-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-provider {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}
.slot-rtp {
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-300);
  padding: 4px 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

.provider-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.provider-pill {
  text-align: center;
  padding: 18px 10px;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition:
    border-color 0.15s,
    color 0.15s;
  cursor: pointer;
}
.provider-pill:hover {
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--gold-300);
}

.seo-section .seo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 44px;
}
.h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 6px 0 14px;
}
.seo-lead {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-1);
  padding: 16px 18px;
  background: rgba(147, 51, 234, 0.1);
  border-left: 3px solid var(--purple-500);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 18px 0;
}
.seo-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.seo-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.seo-point-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.seo-point-title {
  font-weight: 700;
  font-size: 14px;
}

.oly88-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  margin-top: 64px;
}
.oly88-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 28px 24px;
}
.oly88-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-h {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.oly88-footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.oly88-footer-grid li {
  color: var(--text-2);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.15s;
}
.oly88-footer-grid li:hover {
  color: var(--gold-300);
}
.bank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.bank-pill {
  text-align: center;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
}
.license-pill {
  padding: 6px 12px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-300);
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-2);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.social-icon:hover {
  background: var(--grad-purple-h);
  color: #fff;
  border-color: transparent;
}
.oly88-footer-base {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(
    180deg,
    rgba(15, 10, 31, 0.96),
    rgba(8, 6, 21, 0.98)
  );
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
.bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 600px;
  margin: 0 auto;
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  border-radius: var(--r-md);
  transition: background 0.15s;
  cursor: pointer;
  min-width: 56px;
  text-decoration: none;
  color: var(--text-2);
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
}
.bottom-nav-item svg {
  width: 25px;
  height: 25px;
  color: var(--text-3);
}
.bottom-nav-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bottom-nav-item:hover {
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
}
.bottom-nav-item.active {
  color: var(--gold-300);
}
.bottom-nav-item.active svg {
  filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.4));
}

@media (max-width: 1024px) {
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .provider-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .seo-section .seo-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 56px;
  }
  .oly88-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .oly88-nav,
  .oly88-search {
    display: none;
  }
  .bottom-nav {
    display: block;
  }

  .oly88-header-inner {
    padding: 10px 16px;
  }
  .oly88-logo {
    height: 56px;
  }
  .oly88-main {
    padding: 20px 16px 40px;
  }
  .hero-slide {
    padding: 32px 22px;
    min-height: 380px;
  }
  .hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }
  .hero-headline {
    font-size: 44px;
  }
  .hero-subheadline {
    font-size: 18px;
  }
  .hero-arrow {
    display: none;
  }
  .hero-dots {
    bottom: 12px;
  }
  .hero-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
    gap: 16px;
  }
  .hero-stat {
    padding: 0;
  }
  .hero-stat::after {
    display: none !important;
  }
  .stat-num {
    font-size: 22px;
  }
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .provider-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-section .seo-grid {
    padding: 24px 20px;
  }
  .oly88-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .oly88-footer-base {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .oly88-footer {
    margin-bottom: 64px;
  }
}
@media (max-width: 480px) {
  .oly88-logo {
    height: 42px;
  }
  .oly88-header-inner {
    padding: 8px 12px;
  }
  .btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  .hero-headline {
    font-size: 34px;
  }
  .hero-subheadline {
    font-size: 16px;
  }
  .hero-body {
    font-size: 13px;
  }
  .hero-dots {
    bottom: 8px;
    gap: 6px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  .hero-dot.active {
    width: 20px;
  }
  .hero-slide {
    padding: 20px 16px;
    min-height: 300px;
  }
  .section-title h2,
  .section-title h1 {
    font-size: 18px;
  }
  .stat-num {
    font-size: 18px;
  }
  .slot-name {
    font-size: 11px;
  }
  .slot-foot {
    padding: 8px 10px;
  }
  .h2 {
    font-size: 20px;
  }
  .bottom-nav-item {
    padding: 4px 8px;
    min-width: 48px;
  }
  .bottom-nav-item svg {
    width: 20px;
    height: 20px;
  }
  .bottom-nav-item span {
    font-size: 9px;
  }
}
