:root {
  --bg: #ffffff;
  --card: #ffffff;
  --fg: #1a1a1a;
  --muted: #5f5f5f;
  --brand: #8b7546;
  --accent: #8b7546;
  --border: #e5e5e5;
  --ring: rgba(139, 117, 70, 0.35);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}

button {
  font-family: "Montserrat", "Inter", "Noto Sans SC", system-ui, -apple-system;
}
body {
  font-family: "Montserrat", "Inter", "Noto Sans SC", system-ui, -apple-system,
    Segoe UI, Roboto, Arial, sans-serif !important;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}
.smooth-scroll {
  scroll-behavior: smooth;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.branding {
  position: absolute;
  left: 20px;
  top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}
.branding img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px var(--ring) inset;
}
.branding .logo-text {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.brand-cn {
  font-family: "Montserrat", "Inter", "Noto Sans SC", system-ui, -apple-system,
    Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 22px;
  font-weight: 700;
}
.brand-en {
  font-size: 14px;
  color: var(--muted);
}
.tagline {
  font-size: 14px;
  color: var(--fg);
}
.tagline-en {
  font-size: 12px;
  color: var(--muted);
}
.nav a {
  color: var(--fg);
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
  opacity: 0.8;
}
.nav a:hover {
  opacity: 1;
  color: var(--brand);
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  margin: 2% auto 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), inset 0 0 0 1px var(--ring);
  pointer-events: auto;
  margin-top: 5% !important;
}
.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover {
  background: rgba(139, 117, 70, 0.12);
  border-color: rgba(139, 117, 70, 0.25);
  color: var(--fg);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--fg);
  cursor: pointer;
  pointer-events: auto;
  margin-top: 3% !important;
}
.nav-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
}
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 40;
  }
}

/* Mobile full-screen glassmorphic menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
}
.mobile-menu.show {
  display: block;
}
.mobile-menu-inner {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  padding: 8px 10px;
  cursor: pointer;
  z-index: 99999;
}
.mobile-nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.mobile-nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 20px;
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.04);
}
.lang-switch {
  margin-top: 5% !important;
  display: flex;
  gap: 8px;
  margin-left: 14px;
  pointer-events: auto;
}
.lang-btn {
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
}
.lang-btn.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--ring) inset;
  color: #1a1a1a;
  background: var(--brand);
}
.hero {
  position: relative;
  overflow: hidden;
  /* Fullscreen across mobile browsers */
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  min-height: 100dvh;
  padding: 64px 0;
  padding-top: 10vh !important;
  background: linear-gradient(180deg, rgba(139, 117, 70, 0.06), transparent);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blobs { position:absolute; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
.hero-blobs .blob { position:absolute; width:38vmax; height:38vmax; filter: blur(40px); opacity:.15; background: radial-gradient(circle at 30% 30%, var(--brand), transparent 60%); mix-blend-mode: multiply; animation: blob-float 18s ease-in-out infinite; }
.hero-blobs .b1 { top:-10vmax; left:-6vmax; }
.hero-blobs .b2 { bottom:-12vmax; right:-8vmax; animation-duration: 22s; animation-delay: -4s; }
@keyframes blob-float { 0%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(4vmax,-2vmax) scale(1.06);} 100%{ transform: translate(0,0) scale(1);} }
#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.35;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-inner h1 {
  font-size: 48px;
  margin: 0 0 8px;
}
.hero-inner p {
  max-width: 720px;
  color: var(--muted);
}
.intro-text {
  margin: 0;
  color: var(--fg);
  opacity: 0.92;
  font-size: 16px;
}
.intro-wrap {
  display: grid;
  gap: 14px;
}
.intro-head h2 {
  margin: 0;
  font-size: 20px;
  color: var(--brand);
}
.intro-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.intro-point {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}
.intro-point .bullet {
  font-style: normal;
  margin-right: 8px;
}
#hero-subtitle {
  position: relative;
  z-index: 3;
}
.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.cta-row {
  position: relative;
  z-index: 4;
}
.cta-row .btn {
  position: relative;
  z-index: 5;
}
.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(255,255,255,.5) 10%, rgba(255,255,255,0) 40%); transform: scale(0); opacity: 0; transition: transform .35s ease, opacity .45s ease; pointer-events: none; }
.btn-ripple:active::after { transform: scale(4); opacity: 1; }
.hero-spline {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  width: min(392px, calc(100% - 40px));
  height: auto;
  min-width: 0;
  min-height: 0;
  border-radius: 12px;
  border: none;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
  transform-origin: center;
  animation: hero-float 4.8s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-spline spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 900px) {
  .hero-spline {
    position: absolute;
    right: 12px;
    left: auto;
    top: 0;
    bottom: 0;
    width: min(60%, calc(100% - 24px));
    max-width: 392px;
    height: auto;
    pointer-events: none;
  }
}

/* looping chips marquee */
.chips-marquee { position: relative; margin-top: 18px; overflow: hidden; }
.chips-marquee .track { display: inline-flex; gap: 10px; white-space: nowrap; animation: marquee 18s linear infinite; }
.chips-marquee .chip { display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px; border:1px solid rgba(139,117,70,.35); color:#1a1a1a; background: rgba(139,117,70,.15); font-size:12px; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

@keyframes hero-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-8px);
  }
}
.hero-progress {
  margin-top: 22px;
  position: relative;
  z-index: 3;
}
.progress-track {
  position: relative;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--brand);
  transition: width 0.5s ease;
}
.progress-nodes {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.progress-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--fg);
  cursor: pointer;
}
.node-icon {
  font-size: 22px;
  line-height: 1;
}
.progress-node:hover .node-icon {
  animation: bop 0.9s ease-in-out infinite alternate;
  transform-origin: center bottom;
}
.node-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: var(--card);
  box-shadow: 0 0 0 2px var(--ring);
}
.progress-node.active .node-dot {
  background: var(--brand);
  border-color: var(--brand);
}
.node-label {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.progress-node.active .node-label {
  color: var(--fg);
}
@media (max-width: 540px) {
  .node-label {
    font-size: 11px;
  }
}

@keyframes bop {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-4px);
  }
}

/* Hero typography animation */
.typo {
  opacity: 0;
  transform: translateY(8px);
  letter-spacing: 0.02em;
  transition: opacity 0.7s ease, transform 0.7s ease, letter-spacing 0.7s ease;
}
.typo.in {
  opacity: 1;
  transform: none;
  letter-spacing: 0;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--fg);
  transition: 0.2s ease background, 0.2s ease border-color, 0.2s ease transform;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--brand);
}
.btn-primary {
  background: var(--brand);
  color: #1a1a1a;
  border-color: var(--brand);
}
.btn-primary:hover {
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
}
.section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.section.alt {
  background: #fafafa;
}

/* Accordion */
.accordion {
  display: grid;
  gap: 12px;
}
.acc-item {
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 5px 5px 10px #8f8f8f, -5px -5px 10px #ffffff;
}
.acc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--brand);
  border-radius: 12px 0 0 12px;
  opacity: 0.6;
  transition: width 0.3s ease, opacity 0.3s ease;
}
.acc-item.open {
  border-color: rgba(139, 117, 70, 0.6);
  background: linear-gradient(
      0deg,
      rgba(139, 117, 70, 0.08),
      rgba(139, 117, 70, 0.08)
    ),
    rgba(255, 255, 255, 0.6);
}
.acc-item.open::before {
  width: 4px;
  opacity: 0.8;
}
.acc-title {
  margin: 0;
}
.acc-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--brand);
  border: 1px solid rgba(139, 117, 70, 0.4);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  border-radius: 12px;
}
.acc-toggle:hover {
  filter: brightness(1.05);
}
.acc-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 117, 70, 0.25);
  border-radius: 10px;
}
.acc-icon {
  font-weight: 700;
  color: #ffffff;
}
.acc-item.open .acc-toggle {
  border-color: rgba(139, 117, 70, 0.6);
}
.acc-panel {
  padding: 0 14px 14px;
  border-top: 1px dashed var(--border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.acc-item.open .acc-panel {
  opacity: 1;
}
.acc-sub {
  margin: 12px 0 8px;
  color: var(--brand);
  font-size: 14px;
}
.acc-list {
  margin: 0;
  padding-left: 18px;
  color: var(--fg);
  opacity: 0.95;
}
.acc-list li {
  margin: 6px 0;
}
.acc-note {
  margin: 10px 0 0;
  color: var(--muted);
}

/* Membership video background */
#membership {
  position: relative;
  overflow: hidden;
}
#membership .membership-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#membership .membership-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.45),
    rgba(12, 12, 12, 0.7)
  );
}
#membership .membership-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(110%) contrast(105%);
}
#membership .container {
  position: relative;
  z-index: 1;
}

/* Membership inline media next to card */
#membership .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) {
  #membership .container {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
  #membership h2 {
    grid-column: 1 / -1;
  }
}
.membership-media {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 0 0 1px var(--ring) inset;
}
.membership-media video {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  #membership {
    min-height: 50vh;
  }
  .membership-media video {
    height: 50vh;
    object-fit: cover;
  }
}
h2 {
  font-size: 22px;
  margin: 0 0 18px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.media-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}
.media-item img,
.media-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-item video {
  background: #000;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.card {
  box-shadow: 5px 5px 10px #8f8f8f, -5px -5px 10px #ffffff;
  background: var(--brand);
  color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(139, 117, 70, 0.4);
  border-radius: 14px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  border-color: rgba(139, 117, 70, 0.6);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--ring) inset;
}
.card-title {
  margin: 0 0 8px;
  font-size: 20px;
  color: #ffffff;
}
.icon {
  font-style: normal;
  opacity: 0.95;
}
.icon.sm {
  font-size: 12px;
  opacity: 0.6;
}
.card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}
.service-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  
}
.service-group {
  background: var(--brand);
  color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(139, 117, 70, 0.4);
  border-radius: 14px;
  padding: 16px;
  box-shadow:  5px 5px 10px #8f8f8f,
  -5px -5px 10px #ffffff;  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}
.service-group:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  border-color: rgba(139, 117, 70, 0.6);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--ring) inset;
}
.service-title {
  margin: 0 0 10px;
  font-size: 20px;
  color: #ffffff;
}
.service-list {
  display: grid;
  gap: 10px;
}
.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  padding-bottom: 8px;
}
.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.service-name {
  font-size: 16px;
  color: #ffffff;
}
.service-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.price-current {
  font-weight: 600;
  color: #ffffff;
}
.price-original {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.7);
}
.membership {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.membership-title {
  margin: 0 0 8px;
}
.membership-desc {
  margin: 0 0 12px;
  color: var(--muted);
}
.membership-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.tier {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #101010;
}
.tier-topup {
  font-weight: 600;
}
.tier-bonus {
  color: var(--accent);
}
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.contact-phone {
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 10px;
}
.contact-phone:hover {
  border-color: var(--brand);
}
.contact-unit {
  color: var(--muted);
}
.contact-address {
  color: var(--fg);
  opacity: 0.9;
}

/* Contact section layout and map styling */
#contact .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
#contact .container h2 {
  margin-bottom: 6px;
}
@media (min-width: 900px) {
  #contact .container {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
  #contact .container h2 {
    grid-column: 1 / -1;
  }
}

#contact-info.contact {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 0 0 1px var(--ring) inset;
}

.map-embed {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: none;
}
@media (max-width: 600px) {
  .map-embed iframe {
    height: 280px;
  }
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  color: var(--muted);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0.9;
}
.footer-nav a:hover {
  opacity: 1;
  border-color: var(--brand);
}
@media (min-width: 900px) {
  .hero-inner h1 {
    font-size: 44px;
  }
  .service-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .header-inner {
    justify-content: center;
  }
  .branding {
    display: inline-flex;
  }
  .lang-switch {
    display: flex;
  }
}
@media (max-width: 600px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 50%;
  }
  .cta-row .btn {
    width: 100%;
    text-align: center;
  }
  .hero {
    padding-top: 20% !important;
  }
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Site unavailable overlay */
#site-unavailable-overlay {
  position: fixed;
  inset: 0;
  z-index: 40000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
#site-unavailable-overlay .notice {
  background: rgba(12, 12, 12, 0.75);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  max-width: 560px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
#site-unavailable-overlay .notice h1 {
  margin: 0 0 8px;
  font-size: 22px;
}
#site-unavailable-overlay .notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
