@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(242, 199, 102, 0.12),
      0 16px 40px rgba(242, 199, 102, 0.12);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(242, 199, 102, 0.22),
      0 20px 54px rgba(242, 199, 102, 0.24);
  }
}

@keyframes globalFireflyFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(18px, -14px, 0);
  }

  50% {
    transform: translate3d(-14px, 12px, 0);
  }

  75% {
    transform: translate3d(10px, -18px, 0);
  }
}

@keyframes globalFireflyPulse {
  0%,
  100% {
    opacity: 0.14;
    filter: brightness(0.9);
  }

  50% {
    opacity: 0.48;
    filter: brightness(1.18);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(242, 199, 102, 0.10), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.05), transparent 24%);
  opacity: 0.9;
  z-index: 0;
}

.site-fireflies {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-fireflies span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(242, 199, 102, 0.92);
  box-shadow:
    0 0 8px rgba(242, 199, 102, 0.7),
    0 0 18px rgba(242, 199, 102, 0.36);
  opacity: 0.18;
  animation:
    globalFireflyFloat 14s ease-in-out infinite,
    globalFireflyPulse 3.4s ease-in-out infinite;
}

.site-fireflies span:nth-child(1) { top: 8%; left: 10%; animation-delay: -1.1s; }
.site-fireflies span:nth-child(2) { top: 14%; left: 26%; width: 3px; height: 3px; animation-delay: -3.7s; }
.site-fireflies span:nth-child(3) { top: 10%; left: 48%; animation-delay: -5.2s; }
.site-fireflies span:nth-child(4) { top: 18%; left: 78%; width: 5px; height: 5px; animation-delay: -2.4s; }
.site-fireflies span:nth-child(5) { top: 28%; left: 16%; width: 3px; height: 3px; animation-delay: -6.3s; }
.site-fireflies span:nth-child(6) { top: 34%; left: 38%; animation-delay: -4.6s; }
.site-fireflies span:nth-child(7) { top: 30%; left: 62%; width: 3px; height: 3px; animation-delay: -8.2s; }
.site-fireflies span:nth-child(8) { top: 42%; left: 84%; animation-delay: -2.8s; }
.site-fireflies span:nth-child(9) { top: 52%; left: 12%; width: 5px; height: 5px; animation-delay: -7.4s; }
.site-fireflies span:nth-child(10) { top: 58%; left: 28%; width: 3px; height: 3px; animation-delay: -1.9s; }
.site-fireflies span:nth-child(11) { top: 50%; left: 50%; animation-delay: -4.9s; }
.site-fireflies span:nth-child(12) { top: 60%; left: 74%; width: 3px; height: 3px; animation-delay: -6.8s; }
.site-fireflies span:nth-child(13) { top: 70%; left: 18%; animation-delay: -5.8s; }
.site-fireflies span:nth-child(14) { top: 76%; left: 36%; width: 3px; height: 3px; animation-delay: -3.2s; }
.site-fireflies span:nth-child(15) { top: 72%; left: 58%; width: 5px; height: 5px; animation-delay: -7.9s; }
.site-fireflies span:nth-child(16) { top: 80%; left: 86%; width: 3px; height: 3px; animation-delay: -2.2s; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2500;
}

body.menu-open {
  overflow: hidden;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

body {
  padding-top: 92px;
}

body.has-maintenance {
  padding-top: 136px;
}

body.maintenance-modal-open {
  overflow: hidden;
}

.site-maintenance-strip {
  position: fixed;
  top: 92px;
  right: 0;
  left: 0;
  z-index: 2400;
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(242, 199, 102, 0.18);
  border-bottom: 1px solid rgba(242, 199, 102, 0.18);
  background:
    linear-gradient(90deg, rgba(20, 24, 32, 0.94), rgba(34, 29, 17, 0.94), rgba(20, 24, 32, 0.94));
  backdrop-filter: blur(12px);
}

.site-maintenance-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.site-maintenance-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: maintenanceTicker 24s linear infinite;
}

.site-maintenance-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 42px;
  color: #f2d48f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-maintenance-track span::before {
  content: "•";
  color: #f2c766;
}

.maintenance-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
}

.maintenance-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.72);
  backdrop-filter: blur(12px);
}

.maintenance-modal__dialog {
  position: relative;
  width: min(640px, calc(100vw - 28px));
  margin: min(12vh, 120px) auto 0;
  padding: 30px;
  border: 1px solid rgba(242, 199, 102, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 199, 102, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(9, 15, 24, 0.98), rgba(9, 15, 24, 0.94));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.maintenance-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(242, 199, 102, 0.12);
  color: #f2d48f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maintenance-modal__dialog h2 {
  margin: 0 0 14px;
  color: #f4eee7;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.02;
}

.maintenance-modal__dialog p {
  margin: 0;
  color: #c3cad3;
  font-size: 18px;
  line-height: 1.75;
}

.maintenance-modal__hint {
  margin-top: 16px !important;
  color: #e5d4a7 !important;
}

.maintenance-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.brand {
  gap: 14px;
}

.brand-mark {
  width: 90px;
  height: 90px;
  display: inline-block;
  flex: 0 0 90px;
  border-radius: 50%;
  background: url("../img/dubrovnikgo-logo.png") center/contain no-repeat;
  color: transparent;
  font-size: 0;
  padding: 8px;
}

.site-header::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(242, 199, 102, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(5, 9, 20, 0.94), rgba(5, 9, 20, 0.985));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: -1;
}

body.menu-open .site-header::after {
  opacity: 1;
  pointer-events: auto;
}

.btn,
.tour-card,
.detail-card,
.info-card,
.contact-card,
.checkout-card,
.notice,
.faq details,
.feature-strip article,
.mystery-card,
.secret-card,
.voucher-step,
.kpi-card,
.admin-card,
.rounded-img,
.timeline-card,
.timeline-number {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    opacity 0.35s ease;
}

.btn:hover,
.tour-card:hover,
.detail-card:hover,
.info-card:hover,
.contact-card:hover,
.checkout-card:hover,
.faq details:hover,
.mystery-card:hover,
.secret-card:hover,
.voucher-step:hover,
.kpi-card:hover,
.admin-card:hover,
.timeline-card:hover {
  transform: translateY(-4px);
}

.btn-primary:hover {
  box-shadow: 0 24px 52px rgba(242, 199, 102, 0.28);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-on-scroll.is-visible {
  animation: revealUp 0.8s ease both;
}

.kicker,
.eyebrow,
.timeline-label,
.mystic-card-content > span {
  display: none !important;
}

.hero h1,
.sub-hero h1,
.timeline-head h2,
.section-head h2,
.about-intro-copy h1,
.mystic-card-content h2,
.story-content h2,
.voucher-grid h2,
.secret-head h2,
.secret-banner h3,
.final-cta-inner h2 {
  margin-top: 0;
}

.main-nav a,
.footer-grid a {
  position: relative;
}

.main-nav a::after,
.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2c766, #9c8450);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.lang-wrapper {
  position: relative;
  z-index: 2600;
}

.language-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 180, 107, 0.18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lang-btn:hover,
.lang-wrapper.is-open .lang-btn {
  border-color: rgba(242, 199, 102, 0.4);
  box-shadow: 0 14px 30px rgba(242, 199, 102, 0.14);
}

.lang-btn img,
.lang-dropdown img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3200;
  width: min(248px, calc(100vw - 24px));
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: rgba(13, 18, 24, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(214, 180, 107, 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(18px);
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.lang-wrapper.is-open .lang-dropdown {
  display: grid;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-dropdown button {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px;
  min-height: 56px;
  border-radius: 14px;
  color: #cfd6dd;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
}

.lang-dropdown button:hover {
  background: rgba(214, 180, 107, 0.1);
}

.lang-dropdown button.is-active {
  background: rgba(242, 199, 102, 0.14);
  color: #fff4cf;
}

.lang-dropdown button span {
  display: none;
}

.buy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.buy-btn img {
  width: 18px;
  height: 18px;
  filter: none;
}

.burger {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 180, 107, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.burger-line {
  position: absolute;
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #f4eee7;
  transition: transform 0.3s ease, opacity 0.24s ease, width 0.24s ease;
}

.burger-line:nth-child(1) {
  transform: translateY(-8px);
}

.burger-line:nth-child(3) {
  transform: translateY(8px);
}

.burger.is-open .burger-line:nth-child(1) {
  transform: rotate(45deg);
}

.burger.is-open .burger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.is-open .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.tour-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.tour-card-link {
  flex: 1 1 180px;
}

.detail-card-actions {
  margin-top: 24px;
}

.tour-card .btn-primary,
.detail-card .btn-primary {
  color: #2b210f;
}

.tour-card .btn-ghost,
.detail-card .btn-ghost {
  color: #f4eee7;
}

.input,
.select,
.textarea {
  color: #f4eee7;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(242, 199, 102, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, #f2c766 50%),
    linear-gradient(135deg, #f2c766 50%, transparent 50%);
  background-position:
    calc(100% - 24px) calc(50% - 3px),
    calc(100% - 18px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  font-weight: 800;
}

.select option {
  color: #0b1015;
  background: #f7f1e8;
}

.checkout-card .select {
  min-height: 56px;
  font-size: 18px;
  border-radius: 18px;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  position: relative;
  display: block;
  visibility: visible;
  width: 100%;
  min-height: 60px;
  padding: 0 58px 0 18px;
  border: 1px solid rgba(242, 199, 102, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(17, 22, 28, 0.96);
  color: #f4eee7;
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.custom-select-trigger::before,
.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #f2c766;
  transition: transform 0.22s ease;
}

.custom-select-trigger::before {
  transform: translateY(-50%) rotate(45deg);
  right: 28px;
}

.custom-select-trigger::after {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.is-open .custom-select-trigger::before {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(45deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 25;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(242, 199, 102, 0.20);
  border-radius: 20px;
  background: rgba(11, 16, 21, 0.98);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-option {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #dfe5ea;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option.is-active {
  background: linear-gradient(135deg, rgba(242, 199, 102, 0.18), rgba(242, 199, 102, 0.06));
  color: #fff4cf;
}

.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.checkout-copy-minimal {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 8px;
}

.checkout-copy-minimal h2,
.checkout-copy-minimal p {
  margin: 0;
}

.tour-language-pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 6px 0 0;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(242, 199, 102, 0.22);
  background: rgba(242, 199, 102, 0.08);
  color: #f7df9d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.footer-grid {
  align-items: start;
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1.15fr;
  gap: 24px 40px;
}

.footer-grid > div:first-child {
  max-width: 380px;
  text-align: center;
}

.footer-grid > div:nth-child(2),
.footer-grid > div:nth-child(3) {
  display: grid;
  align-content: flex-start;
  justify-items: start;
  gap: 10px;
}

.footer-grid > div:nth-child(2) h3,
.footer-grid > div:nth-child(3) h3 {
  margin: 0 0 6px;
}

.footer-grid a {
  display: inline-flex;
  width: fit-content;
}

.footer-grid a::after {
  display: none !important;
}

.footer-brand-solo {
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
}

.footer-lead-centered {
  max-width: none;
  margin: 0 auto;
  color: #d7c7a0;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.footer-highlight {
  display: none;
}

.footer-business {
  display: flex;
  align-items: flex-start;
}

.footer-business-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-business-stack {
  display: grid;
  gap: 10px;
}

.footer-mail-link {
  color: #f2c766 !important;
  font-weight: 800;
}

.footer-note {
  display: none;
}

.footer-business p,
.footer-business-meta p {
  margin: 0;
}

.footer-legal-row {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(214, 180, 107, 0.14);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.footer-legal-links a {
  color: #d7c7a0;
  font-weight: 700;
  font-size: 15px;
}

.footer-legal-copy {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
}

.footer-legal-copy p {
  margin: 0;
  color: #b7bdc5;
  font-size: 14px;
  line-height: 1.75;
}

.support-hero-visual {
  min-height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .cards-3,
  .mystery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .footer-business {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .site-fireflies span {
    opacity: 0.12;
  }

  .cards-3,
  .mystery-grid {
    grid-template-columns: 1fr !important;
  }

  .nav-actions {
    gap: 10px;
  }

  .buy-btn span {
    display: none;
  }

  .buy-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }

  .brand-mark {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-business,
  .footer-business-meta {
    display: grid;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }

  .footer-grid a {
    width: 100%;
    justify-content: center;
  }

  .footer-lead-centered {
    white-space: nowrap;
    font-size: clamp(18px, 5vw, 24px);
  }

  .lang-dropdown {
    width: min(232px, calc(100vw - 20px));
  }

  .footer-legal-links {
    justify-content: center;
  }

  .footer-highlight,
  .footer-legal-copy {
    max-width: 100%;
  }

  .tour-card p {
    display: none;
  }

  body.has-maintenance {
    padding-top: 128px;
  }

  .site-maintenance-strip {
    top: 86px;
    height: 42px;
  }

  .site-maintenance-track span {
    font-size: 12px;
    padding-right: 28px;
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 82px;
  }

  body.has-maintenance {
    padding-top: 122px;
  }

  .brand-mark {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
    padding: 6px;
  }

  .checkout-card .select {
    font-size: 16px;
  }

  .site-maintenance-strip {
    top: 82px;
    height: 40px;
  }

  .maintenance-modal__dialog {
    margin-top: 84px;
    padding: 22px;
    border-radius: 24px;
  }

  .maintenance-modal__dialog p {
    font-size: 16px;
  }

  .maintenance-modal__actions {
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .burger {
    display: inline-flex !important;
    flex: 0 0 56px;
  }

  .main-nav {
    position: fixed !important;
    top: 86px !important;
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    min-height: calc(100dvh - 98px);
    height: calc(100dvh - 98px) !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start;
    gap: 14px !important;
    padding: 18px !important;
    border: 1px solid rgba(214, 180, 107, 0.18) !important;
    border-radius: 28px !important;
    background:
      linear-gradient(180deg, rgba(8, 14, 22, 0.98), rgba(8, 14, 22, 0.94)) !important;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px) scale(0.98);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    margin-left: 0 !important;
    overflow-y: auto;
    z-index: 2600;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    padding: 16px 18px !important;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(214, 180, 107, 0.14);
    color: #f4eee7 !important;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .main-nav a::after {
    display: none !important;
  }

  .main-nav a.active {
    background: linear-gradient(135deg, rgba(242, 199, 102, 0.22), rgba(242, 199, 102, 0.08));
    border-color: rgba(242, 199, 102, 0.34);
    box-shadow: 0 16px 34px rgba(242, 199, 102, 0.14);
  }

  .mobile-cta {
    position: fixed !important;
    right: 16px !important;
    left: auto !important;
    bottom: 16px !important;
    width: 74px;
    height: 74px;
    min-height: 74px;
    padding: 0 !important;
    display: flex !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #f2c766, #9c8450) !important;
    box-shadow:
      0 22px 50px rgba(242, 199, 102, 0.26),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    z-index: 2200;
    font-size: 0 !important;
    color: transparent !important;
    overflow: hidden;
  }

  .mobile-cta::before,
  .mobile-cta::after {
    content: "";
    position: absolute;
  }

  .mobile-cta::before {
    inset: 11px;
    border-radius: 999px;
    background:
      url("../img/wallet-icon-reference.png") center/86% no-repeat,
      transparent;
    mix-blend-mode: multiply;
    opacity: 0.98;
  }

  .mobile-cta::after {
    inset: 0;
    border-radius: inherit;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      inset 0 14px 26px rgba(255, 255, 255, 0.06);
    pointer-events: none;
  }

  body[data-page="buy"] .mobile-cta,
  body[data-page="tour-detail"] .mobile-cta,
  body[data-page="success"] .mobile-cta,
  body[data-page="cancel"] .mobile-cta {
    display: none !important;
  }
}

@keyframes maintenanceTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-25%, 0, 0);
  }
}
