:root {
  --bg: #050711;
  --surface: #0b1020;
  --card: rgba(12, 18, 34, 0.82);
  --card-strong: rgba(16, 24, 46, 0.92);
  --border: rgba(148, 163, 184, 0.18);
  --accent: #00e5ff;
  --accent2: #8b5cf6;
  --accent3: #ff2e93;
  --accent4: #facc15;
  --text: #f8fbff;
  --muted: #9aa8c7;
  --glow: rgba(0, 229, 255, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(0, 229, 255, 0.16), transparent 28%, rgba(255, 46, 147, 0.14) 55%, transparent 78%),
    conic-gradient(from 210deg at 58% -12%, rgba(250, 204, 21, 0.2), rgba(139, 92, 246, 0.18), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-position: center top;
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 86%, transparent);
  opacity: 0.55;
  transform: perspective(720px) rotateX(58deg) translateY(118px) scale(1.55);
  transform-origin: top center;
}

body::after {
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.fx-stage {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.fx-stage::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    linear-gradient(100deg, transparent 8%, rgba(0, 229, 255, 0.13) 18%, transparent 28%),
    linear-gradient(35deg, transparent 55%, rgba(250, 204, 21, 0.12) 63%, transparent 74%),
    linear-gradient(145deg, transparent 32%, rgba(255, 46, 147, 0.12) 43%, transparent 53%);
  filter: saturate(1.4);
  animation: auroraShift 16s ease-in-out infinite alternate;
}

.fx-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.5px);
  background-size: 180px 180px;
  opacity: 0.18;
  animation: starDrift 22s linear infinite;
}

.fx-beam,
.fx-shard,
.fx-star {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

.fx-beam {
  left: var(--x);
  top: var(--y);
  width: min(62vw, 520px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tone), #fff, var(--tone), transparent);
  opacity: 0.42;
  transform: rotate(var(--r));
  filter: drop-shadow(0 0 12px var(--tone));
  animation: beamPulse var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}

.fx-shard {
  left: var(--x);
  top: var(--y);
  width: var(--size);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--tone) 58%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--tone) 25%, transparent), transparent 70%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0.48;
  transform: rotate(var(--r));
  animation: shardFloat var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}

.fx-star {
  left: var(--x);
  top: var(--y);
  width: 3px;
  height: 3px;
  color: var(--tone);
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
  opacity: 0.35;
  transform: rotate(45deg);
  animation: twinkle var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 460px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 54px 18px 68px;
  flex-direction: column;
  align-items: center;
}

.container::before {
  content: "";
  position: absolute;
  inset: 22px 8px 34px;
  z-index: -1;
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 12%, transparent 86%, rgba(0, 229, 255, 0.08)),
    linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
  opacity: 0.7;
  mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 94%, transparent);
}

.header {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  animation: fadeDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 190px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.8), rgba(255, 46, 147, 0.65), transparent);
  transform: translateX(-50%);
}

.avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
}

.floating-logo {
  animation: float 4s ease-in-out infinite;
}

.ring {
  position: absolute;
  inset: -6px;
  z-index: 0;
  border-radius: 50%;
  background: conic-gradient(var(--accent), var(--accent4), var(--accent3), var(--accent2), var(--accent));
  animation: spin 4s linear infinite;
}

.ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: var(--bg);
}

.ring-blur {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(0, 229, 255, 0.42), rgba(255, 46, 147, 0.32), rgba(250, 204, 21, 0.28), rgba(0, 229, 255, 0.42));
  filter: blur(18px);
  animation: breathe 2.5s ease-in-out infinite alternate;
}

.avatar {
  position: relative;
  z-index: 1;
  display: block;
  width: 104px;
  height: 104px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

h1 {
  margin-bottom: 8px;
  background: linear-gradient(120deg, #fff 14%, var(--accent) 38%, var(--accent4) 58%, var(--accent3) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Syne", sans-serif;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.22);
  -webkit-text-fill-color: transparent;
}

.badges {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(0, 229, 255, 0.32);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(139, 92, 246, 0.12));
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.12);
  color: #b9f7ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 12px;
}

.badge .dot {
  color: #4ade80;
  font-size: 9px;
  text-shadow: 0 0 10px currentColor;
}

.section-label {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin: 32px 0 14px;
  padding-left: 2px;
  color: var(--muted);
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 0.5s ease both;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.6), rgba(255, 46, 147, 0.22), transparent);
}

.contact-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-card,
.link-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, var(--card-strong), var(--card));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, 0, 0);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  animation: fadeUp 0.5s ease both;
}

.contact-card::before,
.link-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 24%, color-mix(in srgb, var(--c, var(--accent)) 18%, transparent) 45%, transparent 62%),
    linear-gradient(90deg, color-mix(in srgb, var(--c, var(--accent)) 22%, transparent), transparent 30%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 0.25s ease, transform 0.5s ease;
}

.contact-card:hover,
.link-btn:hover {
  border-color: color-mix(in srgb, var(--c, var(--accent)) 75%, white);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.48),
    0 0 0 1px color-mix(in srgb, var(--c, var(--accent)) 26%, transparent),
    0 0 32px color-mix(in srgb, var(--c, var(--accent)) 24%, transparent);
}

.contact-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
}

.link-btn:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateX(4px);
}

.contact-card:hover::before,
.link-btn:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.contact-card:active,
.link-btn:active {
  transform: scale(0.98);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px 16px;
}

.icon-box,
.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--c, var(--accent)) 32%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--c, var(--accent)) 18%, transparent), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 18px color-mix(in srgb, var(--c, var(--accent)) 18%, transparent);
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.icon-box {
  width: 48px;
  height: 48px;
  font-size: 22px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.contact-card:hover .icon-box {
  transform: scale(1.12) rotate(-5deg);
}

.c-label,
.c-sub,
.link-text,
.link-icon,
.link-arrow {
  position: relative;
  z-index: 1;
}

.c-label {
  font-size: 13px;
  font-weight: 800;
}

.c-sub {
  color: var(--muted);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.links {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 9px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.link-icon {
  width: 40px;
  height: 40px;
  font-size: 19px;
}

.link-icon svg {
  width: 20px;
  height: 20px;
}

.link-btn:hover .link-icon {
  transform: scale(1.1) rotate(-4deg);
}

.link-text {
  min-width: 0;
  flex: 1;
}

.link-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.link-sub {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.link-arrow {
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  transition: color 0.2s ease, transform 0.2s ease;
}

.link-btn:hover .link-arrow {
  color: var(--c, var(--accent));
  transform: translateX(4px);
}

.links .link-btn:nth-child(1),
.contact-grid .contact-card:nth-child(1) {
  animation-delay: 0.05s;
}

.links .link-btn:nth-child(2),
.contact-grid .contact-card:nth-child(2) {
  animation-delay: 0.1s;
}

.links .link-btn:nth-child(3),
.contact-grid .contact-card:nth-child(3) {
  animation-delay: 0.15s;
}

.links .link-btn:nth-child(4),
.contact-grid .contact-card:nth-child(4) {
  animation-delay: 0.2s;
}

.links .link-btn:nth-child(5) {
  animation-delay: 0.25s;
}

.footer {
  margin-top: 52px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 2;
  text-align: center;
  animation: fadeUp 0.5s 0.3s ease both;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.14), rgba(0, 229, 255, 0.1));
  color: #ffe48a;
  font-size: 11px;
  padding: 4px 14px;
}

.footer-services {
  color: #5f6c8a;
  font-size: 11px;
}

.footer-copy {
  margin-top: 14px;
  color: #3d4865;
  font-size: 10px;
}

.tone-whatsapp { --c: #25d366; }
.tone-green { --c: #4ade80; }
.tone-instagram { --c: #e1306c; }
.tone-tiktok { --c: #ff0050; }
.tone-gold { --c: #fbbf24; }
.tone-orange { --c: #f97316; }
.tone-blue { --c: #60a5fa; }

.music-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    conic-gradient(from var(--spin, 0deg), #00e5ff, #ff2e93, #facc15, #4ade80, #00e5ff),
    rgba(7, 10, 24, 0.8);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 24px rgba(255, 46, 147, 0.42), 0 0 42px rgba(0, 229, 255, 0.24);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, filter 0.2s ease;
  animation: musicBob 1.8s ease-in-out infinite;
}

.music-toggle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: rgba(5, 7, 17, 0.76);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.12);
}

.music-toggle::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.65), transparent 58%);
  transform: translateX(-80%);
  animation: shineSweep 2.8s ease-in-out infinite;
}

.music-toggle:hover {
  filter: saturate(1.35);
  transform: scale(1.08) rotate(-5deg);
}

.music-toggle.is-playing {
  animation: musicParty 0.54s ease-in-out infinite;
}

.music-toggle.is-missing {
  filter: grayscale(0.45);
}

.music-icon {
  position: relative;
  z-index: 1;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 14px #00e5ff, 0 0 26px #ff2e93;
}

.music-equalizer {
  position: absolute;
  right: 11px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  height: 12px;
  align-items: end;
  gap: 2px;
}

.music-equalizer i {
  display: block;
  width: 3px;
  height: 5px;
  border-radius: 999px;
  background: #facc15;
  box-shadow: 0 0 8px currentColor;
}

.music-toggle.is-playing .music-equalizer i {
  animation: equalize 0.5s ease-in-out infinite alternate;
}

.music-toggle.is-playing .music-equalizer i:nth-child(2) {
  animation-delay: 0.12s;
}

.music-toggle.is-playing .music-equalizer i:nth-child(3) {
  animation-delay: 0.24s;
}

.party-mode .container {
  animation: containerHype 3.2s ease-in-out infinite;
}

.party-mode .contact-card,
.party-mode .link-btn {
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px color-mix(in srgb, var(--c, var(--accent)) 18%, transparent),
    0 0 24px color-mix(in srgb, var(--c, var(--accent)) 16%, transparent);
}

.party-mode .ring {
  animation: spin 1.15s linear infinite;
}

.fx-confetti,
.fx-sticker,
.click-spark {
  position: fixed;
  z-index: 9;
  pointer-events: none;
  will-change: transform, opacity;
}

.fx-confetti {
  top: -18px;
  left: var(--x);
  width: var(--w);
  height: calc(var(--w) * 1.8);
  border-radius: 2px;
  background: var(--tone);
  box-shadow: 0 0 14px var(--tone);
  transform: rotate(var(--r));
  animation: confettiFall var(--d) linear infinite;
  animation-delay: var(--delay);
}

.fx-sticker {
  left: var(--x);
  top: var(--y);
  padding: 4px 9px;
  border: 2px solid #fff;
  border-radius: 7px;
  background: var(--tone);
  box-shadow: 0 0 20px var(--tone), 4px 4px 0 rgba(0, 0, 0, 0.45);
  color: #06101f;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(var(--r));
  animation: stickerPop var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}

.click-spark {
  left: var(--x);
  top: var(--y);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tone);
  box-shadow: 0 0 14px var(--tone), 0 0 28px var(--tone);
  animation: sparkPop 0.7s ease-out forwards;
}

@keyframes musicBob {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-6px) rotate(4deg);
  }
}

@keyframes musicParty {
  0%,
  100% {
    transform: scale(1) rotate(-7deg);
  }

  50% {
    transform: scale(1.14) rotate(8deg);
  }
}

@keyframes shineSweep {
  0%,
  45% {
    transform: translateX(-85%) rotate(8deg);
  }

  100% {
    transform: translateX(85%) rotate(8deg);
  }
}

@keyframes equalize {
  from {
    height: 4px;
  }

  to {
    height: 12px;
  }
}

@keyframes containerHype {
  0%,
  100% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-1px) rotate(-0.15deg);
  }

  20% {
    transform: translateX(1px) rotate(0.15deg);
  }

  30% {
    transform: translateX(0);
  }
}

@keyframes confettiFall {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0) rotate(var(--r));
  }

  10%,
  88% {
    opacity: 0.9;
  }

  to {
    opacity: 0;
    transform: translate3d(var(--drift), 110vh, 0) rotate(calc(var(--r) + 420deg));
  }
}

@keyframes stickerPop {
  0%,
  100% {
    opacity: 0.26;
    transform: translateY(0) rotate(var(--r)) scale(0.92);
  }

  50% {
    opacity: 0.9;
    transform: translateY(-18px) rotate(calc(var(--r) + 24deg)) scale(1.08);
  }
}

@keyframes sparkPop {
  from {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.4);
  }

  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(2.1);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

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

@keyframes breathe {
  from {
    opacity: 0.35;
    transform: scale(0.94);
  }

  to {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes auroraShift {
  from {
    transform: translate3d(-4%, -2%, 0) rotate(-2deg);
  }

  to {
    transform: translate3d(5%, 4%, 0) rotate(3deg);
  }
}

@keyframes starDrift {
  to {
    background-position: 180px 180px;
  }
}

@keyframes beamPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: rotate(var(--r)) translateX(-16px) scaleX(0.82);
  }

  50% {
    opacity: 0.62;
    transform: rotate(var(--r)) translateX(16px) scaleX(1);
  }
}

@keyframes shardFloat {
  0%,
  100% {
    opacity: 0.25;
    transform: translate3d(0, 0, 0) rotate(var(--r));
  }

  50% {
    opacity: 0.68;
    transform: translate3d(18px, -26px, 0) rotate(calc(var(--r) + 36deg));
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.15;
    transform: rotate(45deg) scale(0.7);
  }

  50% {
    opacity: 0.78;
    transform: rotate(45deg) scale(1.35);
  }
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: linear-gradient(var(--accent), var(--accent3));
}

@media (max-width: 380px) {
  .container {
    padding-inline: 14px;
  }

  h1 {
    font-size: 28px;
  }

  .link-btn {
    gap: 11px;
    padding: 13px 12px;
  }

  .link-title {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  body::before {
    opacity: 0.38;
    background-size: 56px 56px;
  }

  body::after {
    opacity: 0.18;
  }

  .fx-stage::before {
    animation-duration: 24s;
    opacity: 0.72;
  }

  .fx-beam {
    display: none;
  }

  .fx-shard,
  .fx-star {
    opacity: 0.28;
  }

  .fx-sticker {
    display: none;
  }

  .contact-card,
  .link-btn {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .contact-card:hover,
  .link-btn:hover {
    transform: translateY(-2px);
  }

  .music-toggle {
    width: 50px;
    height: 50px;
  }
}

body.lite-mode::before,
body.lite-mode::after {
  opacity: 0.16;
}

.lite-mode .fx-stage::before,
.lite-mode .fx-stage::after {
  animation: none;
  opacity: 0.16;
}

.lite-mode .fx-beam,
.lite-mode .fx-sticker {
  display: none;
}

.lite-mode .ring-blur {
  filter: blur(10px);
}

.lite-mode .contact-card,
.lite-mode .link-btn {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.lite-mode.party-mode .container {
  animation: none;
}

body.lite-mode .music-toggle.is-playing {
  animation: musicBob 1.35s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .fx-stage {
    display: none;
  }
}
