:root {
  --abyss: #010b17;
  --deep: #02182a;
  --ocean: #043a55;
  --cyan: #54e8ff;
  --blue: #168cff;
  --gold: #ffd43b;
  --gold-deep: #ff9e18;
  --white: #f5fbff;
  --muted: #abc8d8;
  --panel: rgba(3, 27, 43, .84);
  --line: rgba(122, 222, 255, .2);
  --danger: #ff6b72;
  --radius: 22px;
  --container: min(1180px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(25, 183, 218, .22), transparent 35rem),
    linear-gradient(180deg, #032238 0%, var(--abyss) 45%, #010711 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}

body::after {
  position: fixed;
  z-index: -3;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-radial-gradient(ellipse at 50% -10%, transparent 0 34px, rgba(70, 223, 255, .035) 35px 37px, transparent 38px 70px);
  transform: scale(1.35);
  animation: caustic-drift 18s ease-in-out infinite alternate;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: white;
  color: #031524;
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

#ocean-canvas {
  position: fixed;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.surface-rays {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .42;
}

.surface-rays::before,
.surface-rays::after {
  position: absolute;
  top: -20%;
  left: 18%;
  width: 18vw;
  height: 95vh;
  content: "";
  background: linear-gradient(180deg, rgba(180, 249, 255, .42), transparent 78%);
  filter: blur(22px);
  transform: skewX(-18deg);
  transform-origin: top;
  animation: ray-sway 10s ease-in-out infinite alternate;
}

.surface-rays::after {
  left: 66%;
  width: 12vw;
  opacity: .6;
  animation-delay: -4s;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(115, 222, 255, .18);
  background: rgba(1, 12, 24, .86);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  position: relative;
  width: 240px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(255, 190, 24, .16));
}

.indonesia {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #d8eaf4;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.flag-id {
  width: 29px;
  height: 19px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 3px;
  box-shadow: 0 0 15px rgba(255, 255, 255, .16);
  background: linear-gradient(#e52b3b 0 50%, #fff 50% 100%);
}

.nav-shell {
  min-width: 0;
  margin-left: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.nav-link {
  position: relative;
  flex: 0 0 auto;
  padding: 11px 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #b9d8e7;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  isolation: isolate;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-link::before,
.nav-link::after {
  position: absolute;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, #fff9a0, var(--gold), #ff7b17);
  clip-path: polygon(47% 0, 100% 0, 64% 42%, 89% 42%, 28% 100%, 42% 54%, 13% 54%);
  opacity: .12;
  filter: drop-shadow(0 0 8px var(--gold));
  transition: opacity .16s ease;
  animation: bolt-blink 3.2s steps(2, end) infinite;
}

.nav-link::before {
  top: -2px;
  right: 5px;
  width: 15px;
  height: 23px;
  transform: rotate(18deg);
}

.nav-link::after {
  bottom: -4px;
  left: 7px;
  width: 11px;
  height: 19px;
  transform: rotate(-14deg);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  border-color: rgba(255, 212, 59, .42);
  background: linear-gradient(135deg, rgba(8, 112, 150, .25), rgba(255, 181, 24, .12));
  color: white;
  transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link:hover::after,
.nav-link[aria-current="page"]::before,
.nav-link[aria-current="page"]::after {
  opacity: 1;
  animation: bolt-blink .9s steps(2, end) infinite;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid rgba(116, 221, 255, .22);
  background:
    linear-gradient(90deg, rgba(1, 10, 20, .94) 0%, rgba(1, 14, 28, .71) 37%, rgba(1, 17, 31, .08) 70%),
    linear-gradient(0deg, rgba(1, 9, 18, .86) 0%, transparent 40%),
    url("../images/zeus-underwater-hero.webp?v=20260724-1") center / cover no-repeat;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 190px;
  content: "";
  background: linear-gradient(transparent, var(--abyss));
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: var(--container);
  min-height: 680px;
  margin-inline: auto;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 610px) 1fr;
  padding-block: 90px 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(86, 225, 255, .31);
  border-radius: 999px;
  background: rgba(3, 36, 54, .72);
  color: #b9f3ff;
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(57, 201, 255, .06);
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 5.5vw, 5.15rem);
  letter-spacing: -.045em;
  text-wrap: balance;
}

.title-glow {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 193, 31, .34);
}

.hero-copy > p {
  max-width: 610px;
  margin: 23px 0 0;
  color: #c6deea;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 222, 83, .7);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffe566, #ffae19 68%, #eb7212);
  color: #1e1300;
  font-weight: 950;
  box-shadow: 0 10px 32px rgba(255, 171, 20, .2), inset 0 1px rgba(255, 255, 255, .72);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .62) 44%, transparent 68%);
  transform: translateX(-130%);
  animation: button-shine 3.8s ease-in-out infinite;
}

.button:hover {
  transform: translateY(-3px);
  filter: saturate(1.12);
  box-shadow: 0 14px 42px rgba(255, 186, 28, .3), 0 0 22px rgba(255, 214, 59, .18);
}

.button-secondary {
  border-color: rgba(91, 216, 255, .42);
  background: rgba(5, 43, 67, .77);
  color: white;
  box-shadow: inset 0 0 22px rgba(60, 202, 255, .05);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 7px 10px;
  border: 1px solid rgba(110, 220, 255, .18);
  border-radius: 9px;
  background: rgba(3, 28, 46, .7);
  color: #b9d6e3;
  font-size: .77rem;
  font-weight: 700;
}

.lightning-divider {
  position: relative;
  z-index: 12;
  width: 170px;
  height: 230px;
  margin: -112px auto -90px;
  filter: drop-shadow(0 0 12px #fff6a7) drop-shadow(0 0 35px #ffc21a);
  animation: divider-strike 3.2s ease-in-out infinite;
}

.lightning-divider svg {
  width: 100%;
  height: 100%;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-tight {
  padding: 74px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -.035em;
  text-wrap: balance;
}

.section-heading p {
  margin: 15px 0 0;
  color: var(--muted);
}

.kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

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

.card {
  position: relative;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(9, 54, 76, .62), rgba(2, 20, 34, .92)),
    var(--panel);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .2), inset 0 1px rgba(255, 255, 255, .03);
}

.card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.card h2 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.card h3 {
  margin-bottom: 11px;
  font-size: 1.28rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card a:not(.button) {
  color: #d9f7ff;
  text-decoration: underline;
  text-decoration-color: rgba(84, 232, 255, .4);
  text-underline-offset: 4px;
}

.icon-bubble {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 17px;
  place-items: center;
  border: 1px solid rgba(96, 226, 255, .34);
  border-radius: 50%;
  background: rgba(14, 125, 164, .18);
  font-size: 1.25rem;
  box-shadow: inset 0 0 18px rgba(90, 224, 255, .08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: var(--gold) !important;
  font-weight: 850;
  text-decoration: none !important;
}

.content-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
}

.article {
  padding: clamp(24px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(2, 19, 32, .84);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .24);
}

.article h2 {
  margin: 42px 0 15px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  margin: 26px 0 9px;
  font-size: 1.28rem;
}

.article p,
.article li {
  color: #c0d6e1;
}

.article a {
  color: #9feeff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article ul,
.article ol {
  padding-left: 22px;
}

.article li + li {
  margin-top: 8px;
}

.callout {
  margin: 26px 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 212, 59, .3);
  border-left: 4px solid var(--gold);
  border-radius: 13px;
  background: rgba(255, 184, 25, .07);
  color: #f2e7bc;
}

.callout-blue {
  border-color: rgba(83, 226, 255, .3);
  border-left-color: var(--cyan);
  background: rgba(43, 192, 229, .06);
  color: #cceef5;
}

.side-card {
  position: sticky;
  top: 102px;
  padding: 24px;
  border: 1px solid rgba(255, 212, 59, .24);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(8, 55, 76, .95), rgba(2, 18, 31, .96));
}

.side-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.side-card p {
  color: var(--muted);
}

.side-card .button {
  width: 100%;
  margin-top: 10px;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list a {
  display: block;
  padding: 11px 12px;
  border: 1px solid rgba(113, 214, 246, .14);
  border-radius: 10px;
  background: rgba(3, 27, 45, .7);
  color: #cce4ee;
  font-size: .88rem;
  font-weight: 750;
}

.promo-shell {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(2, 19, 32, .84);
}

.promo-track {
  display: grid;
  grid-auto-columns: min(86%, 900px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: #1c91b7 transparent;
  padding: 2px 2px 12px;
}

.promo-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 205, 54, .25);
  border-radius: 16px;
  scroll-snap-align: start;
  background: #071222;
}

.promo-item img {
  width: 100%;
  aspect-ratio: 5 / 1;
  object-fit: cover;
}

.promo-caption {
  position: absolute;
  inset: auto 10px 10px auto;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(0, 0, 0, .78);
  color: #eaf7fc;
  font-size: .68rem;
  font-weight: 700;
}

.update-table {
  width: 100%;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
}

.update-table th,
.update-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(119, 216, 246, .12);
  text-align: left;
  vertical-align: top;
}

.update-table th {
  background: rgba(28, 137, 172, .14);
  color: #dbf7ff;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.update-table td {
  color: #bad3df;
}

.update-table tr:last-child td {
  border-bottom: 0;
}

.faq {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(4, 37, 55, .52);
}

.faq summary {
  padding: 16px 18px;
  cursor: pointer;
  color: #e8f8ff;
  font-weight: 850;
}

.faq details p {
  margin: 0;
  padding: 0 18px 17px;
}

.breadcrumbs {
  padding-top: 26px;
  color: #92b6c7;
  font-size: .82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "›";
  color: #527a8c;
}

.breadcrumbs a {
  color: #bfe7f4;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
  color: #9fbdca;
  font-size: .8rem;
}

.article-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 32, 50, .72);
}

.responsible {
  padding: 25px 0 0;
  color: #9cb8c5;
  font-size: .83rem;
}

.site-footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(104, 218, 255, .17);
  background: rgba(1, 9, 18, .95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 35px;
  padding-block: 55px 34px;
}

.footer-logo {
  width: 255px;
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 520px;
  color: #91afbd;
  font-size: .88rem;
}

.footer-title {
  margin-bottom: 13px;
  color: white;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #9dbecb;
  font-size: .88rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(115, 213, 244, .11);
  color: #718f9d;
  font-size: .78rem;
}

.livechat {
  position: fixed;
  z-index: 180;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(255, 218, 67, .68);
  border-radius: 999px;
  background: rgba(1, 17, 29, .92);
  box-shadow: 0 0 0 4px rgba(255, 203, 40, .08), 0 15px 42px rgba(0, 0, 0, .44);
  backdrop-filter: blur(12px);
}

.livechat img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(57, 209, 255, .55);
}

.livechat span {
  display: block;
  max-width: 110px;
  color: #f6fbff;
  font-size: .73rem;
  font-weight: 900;
  line-height: 1.25;
}

.livechat strong {
  color: var(--gold);
}

.livechat::before,
.livechat::after {
  position: absolute;
  z-index: -1;
  width: 24px;
  height: 38px;
  content: "";
  background: linear-gradient(#fff8a2, #ffca24 55%, #ff8218);
  clip-path: polygon(48% 0, 100% 0, 62% 43%, 88% 43%, 25% 100%, 42% 56%, 12% 56%);
  filter: drop-shadow(0 0 9px #ffd029);
  animation: chat-spark 1.25s steps(2, end) infinite;
}

.livechat::before {
  top: -23px;
  right: 18px;
  transform: rotate(22deg);
}

.livechat::after {
  bottom: -24px;
  left: 22px;
  transform: rotate(-22deg);
  animation-delay: -.55s;
}

.flash-overlay {
  position: fixed;
  z-index: 160;
  inset: 0;
  pointer-events: none;
  background: rgba(207, 246, 255, .31);
  opacity: 0;
  mix-blend-mode: screen;
}

.flash-overlay.flash {
  animation: screen-flash .68s ease-out;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes caustic-drift {
  to { transform: translate3d(3%, 2%, 0) scale(1.45) rotate(1deg); }
}

@keyframes ray-sway {
  to { transform: skewX(-8deg) translateX(45px); opacity: .55; }
}

@keyframes bolt-blink {
  0%, 35%, 100% { opacity: .15; }
  38%, 52% { opacity: 1; }
}

@keyframes button-shine {
  0%, 58% { transform: translateX(-130%); }
  78%, 100% { transform: translateX(130%); }
}

@keyframes divider-strike {
  0%, 100% { opacity: .72; transform: scale(.95) rotate(2deg); }
  7% { opacity: 1; transform: scale(1.06) rotate(-1deg); }
  12% { opacity: .48; }
  17% { opacity: 1; }
  54% { opacity: .8; transform: scale(1) rotate(1deg); }
}

@keyframes chat-spark {
  0%, 37%, 100% { opacity: .2; }
  40%, 56% { opacity: 1; }
}

@keyframes screen-flash {
  0%, 100% { opacity: 0; }
  8% { opacity: .62; }
  12% { opacity: .05; }
  18% { opacity: .35; }
  34% { opacity: 0; }
}

@media (max-width: 1020px) {
  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 205px;
  }

  .indonesia {
    display: none;
  }

  .hero {
    background-position: 60% center;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 560px) 1fr;
  }

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

  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 22px, 680px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 7px;
    padding-block: 8px 10px;
  }

  .brand {
    width: 205px;
  }

  .nav-shell {
    width: 100%;
    margin-left: 0;
  }

  .main-nav {
    padding-bottom: 2px;
  }

  .nav-link {
    padding: 9px 11px;
    font-size: .75rem;
  }

  .hero {
    min-height: 760px;
    background-position: 67% center;
  }

  .hero-inner {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-items: end;
    padding-block: 245px 115px;
  }

  .hero-copy {
    padding: 26px 20px;
    border: 1px solid rgba(116, 218, 255, .19);
    border-radius: 22px;
    background: rgba(1, 15, 27, .79);
    backdrop-filter: blur(8px);
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .lightning-divider {
    width: 135px;
    height: 190px;
  }

  .section {
    padding: 78px 0;
  }

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

  .promo-shell {
    padding: 13px;
  }

  .promo-track {
    grid-auto-columns: 94%;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .livechat {
    right: 10px;
    bottom: 10px;
  }

  .livechat img {
    width: 50px;
    height: 50px;
  }

  .livechat span {
    max-width: 93px;
    font-size: .68rem;
  }

  .update-table {
    display: block;
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  #ocean-canvas,
}
