:root {
  --v88-black: #111312;
  --v88-green: #062d24;
  --v88-green-2: #0c4b3d;
  --v88-mint: #14c48e;
  --v88-red: #e33135;
  --v88-red-dark: #b8141c;
  --v88-gold: #f4c35e;
  --v88-ink: #1e2926;
  --v88-muted: #68746f;
  --v88-line: #e7ebe8;
  --v88-soft: #f4fbf8;
  --v88-max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body.v88-page {
  min-width: 320px;
  color: var(--v88-ink);
  background: #fff;
  font-family: Arial, "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

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

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

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

.v88-topbar {
  background: var(--v88-black);
  color: #fff;
}

.v88-topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.v88-brand-mark {
  width: 52px;
  aspect-ratio: 1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, #fff8 0 10%, transparent 11%),
    linear-gradient(135deg, var(--v88-mint), #0d735c 48%, var(--v88-gold));
  box-shadow: 0 12px 28px #0008, inset 0 1px 0 #ffffff55;
  font-size: 17px;
  font-weight: 900;
}

.v88-brand-text {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.v88-brand-name {
  color: #f7fbf9;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 0 #062d24, 0 0 20px #14c48e5c;
}

.v88-brand-kicker {
  color: var(--v88-gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.v88-account-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.v88-pill {
  min-height: 40px;
  min-width: 116px;
  border: 1px solid #ffffff24;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: #2e5d55;
  box-shadow: inset 0 1px 0 #ffffff22;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.v88-pill.primary {
  border-color: #ff9ca055;
  background: linear-gradient(135deg, #ff464b, var(--v88-red-dark));
  box-shadow: 0 12px 24px #e3313538, inset 0 1px 0 #ffffff30;
}

.v88-nav {
  background: var(--v88-red);
  color: #171717;
  box-shadow: 0 2px 0 #0000000a;
}

.v88-nav-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  overflow-x: auto;
  scrollbar-width: none;
}

.v88-nav-inner::-webkit-scrollbar {
  display: none;
}

.v88-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 23px 0 18px;
  color: #161616;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.v88-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--v88-gold);
  box-shadow: 0 0 0 1px #00000018;
}

.v88-hero {
  border-bottom: 1px solid #dbe8e2;
  background: #071916;
}

.v88-hero-visual {
  min-height: 590px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, #071916 0%, #071916d9 26%, #07191624 64%, #07191666 100%),
    linear-gradient(180deg, transparent 0%, #07191600 68%, #071916 100%),
    url("/assets/vivu88-hero.png") center / cover no-repeat;
}

.v88-hero-panel {
  width: min(var(--v88-max), calc(100% - 40px));
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 288px;
  gap: 28px;
  align-items: end;
}

.v88-hero-copy {
  max-width: 680px;
  padding: 30px 32px;
  border: 1px solid #ffffff2a;
  border-radius: 8px;
  color: #fff;
  background: #061d19d9;
  box-shadow: 0 26px 58px #00000040;
  backdrop-filter: blur(12px);
}

.v88-section-label,
.v88-eyebrow {
  margin: 0 0 12px;
  color: var(--v88-red-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.v88-eyebrow {
  color: var(--v88-gold);
}

.v88-page h1,
.v88-page h2,
.v88-page h3,
.v88-page p,
.v88-page li,
.v88-brand,
.v88-hero-panel > *,
.v88-intro > *,
.v88-spotlight-inner > *,
.v88-news-head > *,
.v88-feature-card,
.v88-news-card {
  min-width: 0;
}

.v88-page h1,
.v88-page h2,
.v88-page h3 {
  overflow-wrap: anywhere;
}

.v88-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
}

.v88-hero-copy p:not(.v88-eyebrow) {
  margin: 16px 0 0;
  max-width: 620px;
  color: #dbe8e2;
  font-size: 17px;
  line-height: 1.75;
}

.v88-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.v88-button {
  min-height: 46px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #ff464b, var(--v88-red-dark));
  box-shadow: 0 14px 30px #e3313535;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.v88-button.secondary {
  color: #fff;
  border: 1px solid #ffffff33;
  background: #ffffff12;
  box-shadow: none;
}

.v88-hero-note {
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, #f4c35e66, transparent 30%),
    linear-gradient(145deg, var(--v88-green), #0d5a49 55%, #1c1712);
  box-shadow: 0 24px 50px #00000036;
}

.v88-hero-note small {
  display: block;
  color: #c9fff0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.v88-hero-note strong {
  display: block;
  margin-top: 8px;
  color: var(--v88-gold);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.v88-hero-note span {
  display: block;
  margin-top: 10px;
  color: #f3fbf8;
  font-size: 14px;
  line-height: 1.55;
}

.v88-main {
  background: #fff;
}

.v88-section {
  padding: 58px 0;
}

.v88-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.v88-page h2 {
  margin: 0;
  color: #17332c;
  font-size: 32px;
  line-height: 1.22;
  font-weight: 900;
}

.v88-text-flow p {
  margin: 0 0 18px;
  color: var(--v88-muted);
  font-size: 16px;
  line-height: 1.8;
}

.v88-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.v88-feature-card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--v88-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px #08251f0d;
}

.v88-feature-icon {
  width: 44px;
  aspect-ratio: 1;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--v88-mint), var(--v88-green) 60%, var(--v88-gold));
  font-weight: 900;
}

.v88-feature-card h3 {
  margin: 0 0 9px;
  color: #1c3a32;
  font-size: 18px;
  line-height: 1.25;
}

.v88-feature-card p {
  margin: 0;
  color: #68746f;
  font-size: 14px;
  line-height: 1.65;
}

.v88-spotlight {
  border-top: 1px solid #dfe8e4;
  border-bottom: 1px solid #dfe8e4;
  background: linear-gradient(180deg, #f1fbf7, #fff);
}

.v88-spotlight-inner {
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.v88-hotel-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 390px;
  margin: 0;
  background: #061d19;
  box-shadow: 0 24px 50px #06382f24;
}

.v88-hotel-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.v88-hotel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, #031815cc 100%);
  pointer-events: none;
}

.v88-hotel-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 20px;
  border: 1px solid #ffffff30;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #061d19e8, #0d5b49dc);
  box-shadow: 0 18px 36px #00000030;
}

.v88-hotel-caption strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}

.v88-hotel-caption span {
  display: block;
  margin-top: 8px;
  color: #dbe8e2;
  font-size: 14px;
  line-height: 1.55;
}

.v88-detail-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.v88-detail-item {
  min-height: 96px;
  padding: 16px;
  border: 1px solid #dfe8e4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px #08251f08;
}

.v88-detail-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--v88-red-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.v88-detail-item strong {
  display: block;
  color: #1c3a32;
  font-size: 15px;
  line-height: 1.45;
}

.v88-check-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.v88-check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: #5f6c67;
  font-size: 16px;
  line-height: 1.6;
}

.v88-check-list li::before {
  content: "";
  width: 28px;
  aspect-ratio: 1;
  margin-top: 1px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 40%, #fff 41% 50%, transparent 51%) 8px 7px / 12px 12px no-repeat,
    var(--v88-mint);
}

.v88-news-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.v88-news-head p {
  max-width: 510px;
  margin: 0;
  color: #68746f;
  font-size: 15px;
  line-height: 1.65;
}

.v88-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.v88-news-card {
  overflow: hidden;
  border: 1px solid var(--v88-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px #08251f0d;
}

.v88-news-thumb {
  min-height: 156px;
  display: grid;
  place-items: center;
  color: #fff !important;
  background:
    linear-gradient(135deg, #00000040, #00000000),
    linear-gradient(135deg, var(--v88-green), #0aa879 58%, var(--v88-gold));
  font-size: 42px;
  font-weight: 900;
  text-shadow: 0 2px 12px #00000066;
}

.v88-news-card:nth-child(2) .v88-news-thumb {
  background:
    linear-gradient(135deg, #00000040, #00000000),
    linear-gradient(135deg, var(--v88-red), var(--v88-green) 70%, var(--v88-mint));
}

.v88-news-card:nth-child(3) .v88-news-thumb {
  background:
    linear-gradient(135deg, #00000040, #00000000),
    linear-gradient(135deg, var(--v88-gold), var(--v88-green-2) 48%, var(--v88-red));
}

.v88-news-body {
  padding: 22px;
}

.v88-news-body time,
.v88-news-body .v88-time {
  color: var(--v88-red-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.v88-news-body h3 {
  margin: 10px 0;
  color: #1c3a32;
  font-size: 20px;
  line-height: 1.32;
}

.v88-news-body p {
  margin: 0;
  color: #68746f;
  font-size: 14px;
  line-height: 1.65;
}

.v88-footer {
  margin-top: 18px;
  background: var(--v88-black);
  color: #cbd8d3;
}

.v88-footer-inner {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 14px;
  line-height: 1.6;
}

.v88-footer strong {
  color: #fff;
}

.v88-breadcrumb {
  width: min(var(--v88-max), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 13px 16px;
  border: 1px solid var(--v88-line);
  border-radius: 8px;
  color: #62716b;
  background: #fff;
  font-size: 14px;
  list-style: none;
}

.v88-breadcrumb ol,
.v88-breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v88-breadcrumb li {
  display: inline;
}

.v88-breadcrumb li + li::before {
  content: " / ";
  color: #8d9994;
}

.v88-article-hero {
  padding: 46px 0;
  background:
    linear-gradient(90deg, #071916f0, #07191699),
    url("/assets/vivu88-hero.png") center / cover no-repeat;
  color: #fff;
}

.v88-article-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 900;
}

.v88-article-hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #dbe8e2;
  font-size: 16px;
  line-height: 1.75;
}

.v88-article-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  padding: 42px 0 58px;
}

.v88-article-side,
.v88-article-card {
  border: 1px solid var(--v88-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px #08251f0d;
}

.v88-article-side {
  overflow: hidden;
  align-self: start;
}

.v88-article-side img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.v88-side-body {
  padding: 22px;
}

.v88-side-body strong {
  display: block;
  color: #17332c;
  font-size: 22px;
  line-height: 1.2;
}

.v88-side-body p {
  margin: 12px 0 0;
  color: var(--v88-muted);
  line-height: 1.7;
}

.v88-article-card {
  padding: 30px;
}

.v88-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: #76827d;
  font-size: 13px;
}

.v88-article-image {
  overflow: hidden;
  margin: 0 0 24px;
  border-radius: 8px;
}

.v88-article-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.v88-article-body {
  color: #2f3d38;
  font-size: 16px;
  line-height: 1.9;
}

.v88-article-body h2,
.v88-article-body h3 {
  margin: 30px 0 12px;
}

.v88-article-body p {
  margin: 0 0 16px;
}

.v88-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

.v88-article-actions a,
.v88-article-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  background: var(--v88-green);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.v88-prenext {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--v88-line);
  color: #51615b;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .v88-topbar-inner {
    min-height: 0;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .v88-account-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v88-pill {
    min-width: 0;
    padding-inline: 12px;
  }

  .v88-nav-inner {
    justify-content: flex-start;
  }

  .v88-hero-visual {
    min-height: 680px;
    align-items: end;
    background:
      linear-gradient(180deg, #071916f2 0%, #071916a6 54%, #071916 100%),
      url("/assets/vivu88-hero.png") center top / cover no-repeat;
  }

  .v88-hero-panel,
  .v88-intro,
  .v88-spotlight-inner,
  .v88-article-layout {
    grid-template-columns: 1fr;
  }

  .v88-hero-note {
    width: 100%;
  }

  .v88-hero-copy h1,
  .v88-article-hero h1 {
    font-size: 34px;
  }

  .v88-feature-grid,
  .v88-news-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 540px) {
  .v88-container,
  .v88-hero-panel,
  .v88-breadcrumb {
    width: min(100% - 28px, var(--v88-max));
  }

  .v88-brand-name {
    font-size: 29px;
  }

  .v88-brand-mark {
    width: 48px;
  }

  .v88-nav-inner {
    flex-wrap: wrap;
    gap: 0 18px;
    padding: 8px 0;
    overflow-x: visible;
  }

  .v88-nav a {
    padding: 10px 0;
    font-size: 12px;
  }

  .v88-hero-copy,
  .v88-article-card {
    width: 100%;
    max-width: 100%;
    padding: 22px;
  }

  .v88-hero-visual {
    min-height: 760px;
  }

  .v88-hero-copy h1,
  .v88-article-hero h1 {
    font-size: 29px;
  }

  .v88-page h2 {
    font-size: 25px;
  }

  .v88-hotel-visual,
  .v88-hotel-visual img {
    min-height: 330px;
  }

  .v88-hotel-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .v88-detail-grid {
    grid-template-columns: 1fr;
  }
}
