/* Shared luxury-travel landing page styles */
:root {
  --accent: #c3a06c;
  --accent-strong: #e3c692;
  --accent-soft: rgba(195, 160, 108, 0.14);
  --bg: #0d0c0b;
  --bg-raised: #15130f;
  --bg-card: #1a1814;
  --ink: #f4eee3;
  --muted: #a99f8e;
  --line: rgba(244, 238, 227, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-head {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.12;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 9vw, 72px);
  font-weight: 500;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 6vw, 46px);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

.section-sub {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

em {
  font-style: italic;
  color: var(--accent-strong);
}

/* Top bar */
.topbar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 12, 11, 0.94);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent-strong);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-tag {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.lang-switch {
  position: relative;
  flex: 0 0 auto;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 92px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-raised);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lang-trigger:hover,
.lang-switch.is-open .lang-trigger {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.lang-trigger svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.lang-switch.is-open .lang-trigger svg {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  display: none;
  min-width: 168px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 19, 15, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.lang-switch.is-open .lang-menu {
  display: block;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

@media (max-width: 480px) {
  .topbar-inner {
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-tag {
    display: none;
  }

  .lang-trigger {
    min-width: 78px;
    height: 32px;
    padding: 0 10px;
  }
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 48px 0 84px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.18) 0%, rgba(10, 9, 8, 0.35) 42%, rgba(10, 9, 8, 0.92) 100%),
    radial-gradient(120% 90% at 78% 8%, rgba(10, 9, 8, 0.1) 0%, rgba(10, 9, 8, 0.58) 100%);
}

.hero-inner {
  max-width: 1120px;
}

.hero-eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 12, 11, 0.46);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-inner h1 {
  max-width: 720px;
}

.hero-sub {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(244, 238, 227, 0.86);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--accent);
  color: #17120c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(13, 12, 11, 0.4);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.btn-lg {
  min-height: 58px;
  font-size: 16px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin: 22px 0 0;
  color: rgba(244, 238, 227, 0.76);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.proof-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item::after {
  content: "◆";
  color: var(--accent);
  font-size: 9px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Countdown */
.countdown-section {
  padding: 64px 0 0;
}

.countdown-card {
  position: relative;
  padding: 28px 22px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, var(--accent-soft), transparent 46%),
    var(--bg-card);
  overflow: hidden;
}

.countdown-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.24;
}

.countdown-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.countdown-head h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(24px, 5vw, 36px);
}

.countdown-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.countdown-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

.countdown-sub {
  position: relative;
  max-width: 640px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.countdown {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 460px;
}

.count-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 78px;
  padding: 10px 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 12, 11, 0.72);
}

.count-cell strong {
  font-family: var(--serif);
  font-size: clamp(24px, 7vw, 38px);
  font-weight: 500;
  line-height: 1;
  color: var(--accent-strong);
}

.count-cell span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.countdown-note {
  position: relative;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.phase-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.phase-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.phase-chip i {
  font-style: normal;
  color: var(--accent-strong);
}

.phase-chip.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
}

/* Quiz */
.quiz-shell,
.reveal-shell {
  margin-top: 30px;
}

.profile-bar {
  margin-bottom: 22px;
}

.profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-head span:last-child {
  color: var(--accent-strong);
}

.profile-track {
  height: 5px;
  border-radius: 8px;
  background: rgba(244, 238, 227, 0.1);
  overflow: hidden;
}

.profile-track span {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.35s ease;
}

.quiz-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.quiz-topline span:last-child {
  color: var(--accent-strong);
  text-align: right;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 64px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.option-card:active {
  transform: scale(0.985);
}

.option-card:hover,
.option-card.is-selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent-soft), rgba(13, 12, 11, 0.4));
}

.option-index {
  flex: 0 0 auto;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent-strong);
  font-family: var(--serif);
  font-size: 13px;
}

.option-card.is-selected .option-index {
  border-color: var(--accent);
  background: var(--accent);
  color: #17120c;
}

.quiz-back {
  margin-top: 16px;
  padding: 8px 4px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quiz-back:hover {
  color: var(--accent-strong);
}

/* Reveal */
.reveal-shell {
  max-width: 760px;
}

.reveal-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reveal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  overflow: hidden;
}

.scan-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 24px;
}

.scan-ring {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  color: var(--accent-strong);
  animation: spin 2.4s linear infinite;
}

.scan-ring svg {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.scan-stage p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.scan-progress {
  width: min(320px, 78%);
  height: 6px;
  border-radius: 8px;
  background: rgba(244, 238, 227, 0.1);
  overflow: hidden;
}

.scan-progress span {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 0.1s linear;
}

.profile-content {
  padding: 24px;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

.profile-id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.profile-tag {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-id strong {
  margin: 3px 0 5px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.hash-chip {
  align-self: flex-start;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.meter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.meter {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 12, 11, 0.55);
}

.meter span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.meter strong {
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 700;
}

.profile-thesis {
  margin-bottom: 22px;
  color: rgba(244, 238, 227, 0.86);
  font-size: 15px;
}

.reveal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reveal-actions .btn {
  width: 100%;
}

.text-btn {
  padding: 8px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.text-btn:hover {
  color: var(--accent-strong);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  overflow: hidden;
}

.gallery-card.wide {
  grid-column: 1 / -1;
}

.gallery-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.gallery-card.wide .gallery-media {
  aspect-ratio: 16 / 9;
}

.gallery-card.landscape .gallery-media {
  aspect-ratio: 4 / 3;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-media img {
  transform: scale(1.04);
}

.gallery-index {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(13, 12, 11, 0.72);
  color: var(--accent-strong);
  font-family: var(--serif);
  font-size: 12px;
}

.gallery-caption {
  padding: 13px 14px 15px;
  border-top: 1px solid var(--line);
  color: rgba(244, 238, 227, 0.82);
  font-size: 13px;
  font-weight: 600;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.stat {
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 500;
  color: var(--accent-strong);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent-strong);
  font-family: var(--serif);
  font-size: 15px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 84px 0;
  background: var(--bg-card);
  overflow: hidden;
  isolation: isolate;
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.final-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 12, 11, 0.72), rgba(13, 12, 11, 0.94));
}

.final-inner {
  max-width: 760px;
  text-align: center;
}

.final-inner h2 {
  font-size: clamp(28px, 6vw, 44px);
}

.final-inner > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: rgba(244, 238, 227, 0.78);
  font-size: 15px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 44px 0 52px;
  border-top: 1px solid var(--line);
  background: #0a0908;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-note,
.footer-risk {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-risk {
  font-size: 11px;
  opacity: 0.78;
}

/* Larger screens */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-card.wide {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .topbar-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-tag {
    font-size: 10px;
  }

  .lang-trigger {
    min-width: 112px;
    height: 38px;
    font-size: 12px;
  }

  .lang-btn {
    height: 36px;
    font-size: 12px;
  }

  .countdown-card {
    padding: 38px 38px 40px;
  }

  .profile-content {
    padding: 34px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    align-items: center;
    padding: 80px 0 120px;
  }

  .hero-inner h1 {
    font-size: 76px;
  }

  .hero-sub {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
