/* Play88 @ p88asia.com — design system */
:root {
  --bg-deep: #07060b;
  --bg-panel: #12101a;
  --bg-elevated: #1a1726;
  --border: rgba(245, 197, 66, 0.15);
  --text: #f4f2f8;
  --text-muted: #a8a3b8;
  --accent: #f5c542;
  --accent-2: #ff3d9a;
  --cyan: #3ee2ff;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-glow: 0 0 60px rgba(255, 61, 154, 0.12);
  --header-h: 72px;
  --container: min(1160px, 92vw);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Mesh background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(255, 61, 154, 0.22), transparent),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(62, 226, 255, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(245, 197, 66, 0.08), transparent),
    var(--bg-deep);
}

.bg-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 6, 11, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.logo__accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__mark svg {
  display: block;
}

.logo--footer .logo__text {
  font-size: 1.5rem;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 1.25rem;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s var(--ease-out);
}

.nav__link:hover {
  color: var(--text);
  text-decoration: none;
}

.nav__link--active {
  color: var(--accent);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.nav__item--dropdown {
  position: relative;
}

.nav__link--dropdown {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 200px;
  box-shadow: var(--shadow-glow);
}

.nav__dropdown[hidden] {
  display: none !important;
}

.nav__dropdown-link {
  display: block;
  padding: 0.55rem 0.75rem;
  color: var(--text);
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
}

.nav__dropdown-link:hover {
  background: rgba(245, 197, 66, 0.08);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-panel);
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .header__cta {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(7, 6, 11, 0.96);
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 90;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.mobile-menu--open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__link {
  display: block;
  padding: 0.85rem 0;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.mobile-menu__link:hover {
  color: var(--accent);
  text-decoration: none;
}

.mobile-menu__link--active {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #ff9a3c);
  color: #1a1206;
  box-shadow: 0 8px 28px rgba(245, 197, 66, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn__icon {
  opacity: 0.9;
}

/* Hero home */
.hero-home {
  padding: clamp(2.5rem, 6vw, 5rem) 0 3rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-home {
    grid-template-columns: 1fr;
  }
}

.hero-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s var(--ease-out) both;
}

.hero-home__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin: 0 0 1rem;
  animation: fadeUp 0.75s var(--ease-out) 0.05s both;
}

.hero-home__title .grad {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-home__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0 0 1.75rem;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.85s var(--ease-out) 0.15s both;
}

.hero-home__panel {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(26, 23, 38, 0.95), rgba(18, 16, 26, 0.9));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  animation: floatIn 1s var(--ease-out) 0.2s both;
}

.hero-home__panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg at 50% 50%, rgba(255, 61, 154, 0.15), transparent, rgba(62, 226, 255, 0.12), transparent);
  animation: spinSlow 14s linear infinite;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .hero-home__panel::before {
    animation: none;
  }
}

.hero-home__panel-inner {
  position: relative;
  z-index: 1;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-card {
  background: var(--bg-deep);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card__val {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-card__lab {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* USP strip */
.usp-strip {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.usp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.08);
  border: 1px solid rgba(245, 197, 66, 0.2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.usp-pill svg {
  color: var(--accent);
}

/* Bento */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section__head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.section__desc {
  color: var(--text-muted);
  margin: 0;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1rem;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.bento__card {
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.bento__card:hover {
  border-color: rgba(62, 226, 255, 0.35);
  transform: translateY(-3px);
}

.bento__card--wide {
  grid-column: span 2;
}

.bento__card--tall {
  grid-row: span 2;
}

.bento__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 61, 154, 0.2), rgba(62, 226, 255, 0.15));
  color: var(--cyan);
}

.bento__card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.bento__card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Promo marquee */
.promo-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(18, 16, 26, 0.9), rgba(26, 23, 38, 0.95));
  padding: 0.85rem 0;
}

.promo-marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.promo-marquee__track strong {
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .promo-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: 1rem;
  }
}

/* Split feature */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .split-feature {
    grid-template-columns: 1fr;
  }
}

.split-feature__visual {
  border-radius: var(--radius);
  min-height: 280px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 61, 154, 0.25), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(62, 226, 255, 0.18), transparent 50%),
    var(--bg-panel);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.split-feature__orb {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  filter: blur(40px);
  opacity: 0.45;
  top: 20%;
  left: 15%;
  animation: orbMove 8s ease-in-out infinite alternate;
}

.split-feature__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.split-feature__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}

.split-feature__list svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* FAQ */
.faq {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__btn {
  width: 100%;
  text-align: left;
  padding: 1.15rem 0;
  background: none;
  border: none;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item__btn::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item--open .faq-item__btn::after {
  transform: rotate(45deg);
}

.faq-item__panel {
  display: none;
  padding-bottom: 1.15rem;
  color: var(--text-muted);
}

.faq-item--open .faq-item__panel {
  display: block;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Page heroes (varied) */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}

.page-hero--slant {
  position: relative;
  padding-bottom: 3.5rem;
}

.page-hero--slant::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-panel) 50%);
  pointer-events: none;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.page-hero__lead {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0;
}

/* Slots stagger grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.slot-card {
  grid-column: span 4;
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease-out);
}

@media (max-width: 1024px) {
  .slot-card {
    grid-column: span 6;
  }
}

@media (max-width: 600px) {
  .slot-card {
    grid-column: span 12;
  }
}

.slot-card:nth-child(2) {
  transform: translateY(1.25rem);
}

.slot-card:nth-child(5) {
  transform: translateY(1.25rem);
}

.slot-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 61, 154, 0.35);
}

.slot-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.slot-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.slot-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Live alternating */
.live-band {
  padding: 3rem 0;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  overflow: hidden;
}

.live-band:nth-child(even) .live-band__inner {
  flex-direction: row-reverse;
}

.live-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  width: var(--container);
  margin-inline: auto;
}

.live-band__visual {
  flex: 1 1 280px;
  min-height: 200px;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(255, 61, 154, 0.15), rgba(18, 16, 26, 0.9));
}

.live-band__copy {
  flex: 1 1 300px;
}

.live-band__copy h2 {
  margin-top: 0;
}

/* Promotions timeline */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
  margin-left: 0.75rem;
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1.5rem - 7px);
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px var(--bg-deep);
}

.timeline__item h3 {
  margin: 0 0 0.35rem;
}

.timeline__item p {
  margin: 0;
  color: var(--text-muted);
}

/* Sports asymmetric */
.sports-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 840px) {
  .sports-hero {
    grid-template-columns: 1fr;
  }
}

.sports-stat {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.sports-stat__big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.sports-stat__lbl {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Cards row */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.simple-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.simple-card h3 {
  margin-top: 0;
}

/* Prose block */
.prose-block {
  max-width: 720px;
}

.prose-block p {
  color: var(--text-muted);
}

/* CTA ribbon */
.cta-ribbon {
  margin: 3rem 0;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(245, 197, 66, 0.15), rgba(255, 61, 154, 0.12));
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-ribbon h2 {
  margin: 0;
  font-size: 1.45rem;
}

.cta-ribbon p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  max-width: 46ch;
}

/* Footer */
.footer {
  position: relative;
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-panel);
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  inset: auto 20% -40% 20%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(255, 61, 154, 0.2), transparent);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 36ch;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.footer__heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--text);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer__legal {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 900px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
}

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes orbMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(30px, 20px);
  }
}

/* Utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}
