:root {
  --bg: #0b0d12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --brand: #7c3aed;
  --brand-2: #22c55e;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

:root[data-theme="light"] {
  --bg: #f6f7fb;
  --panel: rgba(10, 12, 18, 0.05);
  --panel-2: rgba(10, 12, 18, 0.08);
  --text: rgba(10, 12, 18, 0.92);
  --muted: rgba(10, 12, 18, 0.68);
  --line: rgba(10, 12, 18, 0.12);
  --shadow: 0 18px 60px rgba(10, 12, 18, 0.14);

  .btn:not(.ghost) {
    color: white;
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  position: relative;
  min-height: 100%;
}

/* fundo contínuo, sem “quebra” entre sections */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(124, 58, 237, 0.25), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(34, 197, 94, 0.18), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(124, 58, 237, 0.12), transparent 60%);

  background-repeat: no-repeat;
  transform: translateZ(0);
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 760; }

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

.skip {
  position: absolute;
  left: -999px;
  top: -999px;
  background: var(--panel-2);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.skip:focus { left: 14px; top: 14px; z-index: 9999; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
:root[data-theme="light"] .topbar {
  background: linear-gradient(to bottom, rgba(246,247,251,0.85), rgba(246,247,251,0));
  border-bottom: 1px solid rgba(10,12,18,0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(34, 197, 94, 0.18));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 860;
  letter-spacing: 0.3px;
}
.brand-text { display: flex; flex-direction: column; }
.brand-text span { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

.nav {
  display: flex;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 10px;
  transition: 160ms ease;
}
.nav a:hover {
  color: var(--text);
  background: var(--panel-2);
}

.actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(34, 197, 94, 0.75));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0px); }

.btn:not(.ghost) {
  border: 0;
}

.btn.ghost {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--text);
}

.btn .icon { opacity: 0.9; }
.btn-label { display: inline; }

.dropdown {
  position: relative;
  display: inline-flex;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  min-width: 220px;

  padding: 10px;
  border-radius: 16px;

  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: 160ms ease;
  z-index: 60;
}

:root[data-theme="dark"] .dropdown-menu {
  background: transparent;
  backdrop-filter: blur(12px);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;

  color: var(--text);
  background: transparent;
  font-size: 13px;
}

.dropdown-item:hover {
  background: var(--panel-2);
  border-color: var(--line);
}

.dropdown-note {
  padding: 8px 12px 0;
  color: var(--muted);
  font-size: 12px;
}


.hero { padding: 34px 0 10px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  width: fit-content;
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand-2);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 14px 0 10px;
  letter-spacing: -0.02em;
}
.lead {
  margin: 0;
  font-size: 16.5px;
  color: var(--muted);
  max-width: 62ch;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 16px;
}
.metric {
  padding: 12px 12px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}
.metric strong { display: block; font-size: 15px; }
.metric span { color: var(--muted); font-size: 12.5px; }

.cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.subtle { margin-top: 12px; color: var(--muted); font-size: 12.5px; }

.hero-card { display: grid; gap: 12px; }
.card {
  padding: 16px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  z-index: 2;
  position: relative;
}
:root[data-theme="light"] .card {
  background: linear-gradient(180deg, rgba(10,12,18,0.03), rgba(10,12,18,0.015));
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.card h2 { margin: 0; font-size: 16px; }
.card h3 { margin: 0 0 8px; font-size: 15px; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--text);
}
.badge.ghost {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.facts li { display: grid; grid-template-columns: 92px 1fr; gap: 10px; }
.facts .k { color: var(--muted); font-size: 12.5px; }
.facts .v { font-size: 13.5px; }

.links { display: flex; gap: 12px; flex-wrap: wrap; }
.link {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 13px;
  color: var(--muted);
  transition: 160ms ease;
}
.link:hover { color: var(--text); background: var(--panel-2); }

.list { margin: 0; padding-left: 18px; color: var(--muted); }
.list li { margin: 8px 0; }

.glow {
  position: relative;
  overflow: hidden;
}
.glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(260px 140px at 10% 10%, rgba(124, 58, 237, 0.25), transparent 60%),
              radial-gradient(260px 140px at 90% 30%, rgba(34, 197, 94, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
  filter: blur(8px);
}
.glow > * { position: relative; }

.section { padding: 38px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.section-head h2 { margin: 0; font-size: 20px; }
.section-head p { margin: 0; color: var(--muted); font-size: 13px; max-width: 62ch; }

.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 10px; }

.chip {
  position: relative;
  padding: 7px 12px;
  border-radius: 999px;

  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;

  color: var(--text);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(4px);

  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

/* glow discreto */
.chip::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(
      120px 40px at 20% 0%,
      rgba(124, 58, 237, 0.35),
      transparent 60%
    );
  opacity: 0.55;
  pointer-events: none;
}

/* hover com presença física */
.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 58, 237, 0.45);

  box-shadow:
    0 8px 24px rgba(124, 58, 237, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* active */
.chip:active {
  transform: translateY(0);
  box-shadow:
    0 4px 12px rgba(124, 58, 237, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* tema claro */
:root[data-theme="light"] .chip {
  background:
    linear-gradient(
      180deg,
      rgba(10, 12, 18, 0.04),
      rgba(10, 12, 18, 0.015)
    );

  color: rgba(10, 12, 18, 0.85);

  border: 1px solid rgba(10, 12, 18, 0.18);

  box-shadow:
    0 4px 14px rgba(10, 12, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

:root[data-theme="light"] .chip::after {
  background:
    radial-gradient(
      120px 40px at 20% 0%,
      rgba(124, 58, 237, 0.25),
      transparent 60%
    );
}


.muted { color: var(--muted); margin: 0; }

.timeline { display: grid; gap: 12px; }
.role { padding: 16px; border-radius: var(--radius2); border: 1px solid var(--line); background: var(--panel); }
.role-head h3 { margin: 0 0 6px; font-size: 16px; }
.role-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.meta { color: var(--muted); font-size: 12.5px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.03); }
:root[data-theme="light"] .meta { background: rgba(10,12,18,0.03); }

.company { margin: 10px 0 10px; color: var(--muted); }
.bullets { margin: 0; padding-left: 18px; }
.bullets li { margin: 8px 0; color: var(--text); }
.stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; margin-bottom: 20px; }

.contact { padding-bottom: 60px; }
.contact-card {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
}
.contact-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.mini { display: grid; gap: 10px; align-content: start; }
.mini-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding: 12px;
}
.mini-card strong { display: block; font-size: 13px; }
.mini-card span { color: var(--muted); font-size: 12.5px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12.5px;
  padding: 12px 2px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .brand { min-width: unset; }
  .grid3 { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .btn-label { display: none; } /* mantém só ícone no mobile */
  .dropdown-menu {
    right: unset;
  }
}


.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}

.section-head p {
  max-width: 72ch;
}

/* =========================
   FAB
   ========================= */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--text);

  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);

  font-weight: 800;
  cursor: pointer;

  transition: 160ms ease;
}

.fab:hover { transform: translateY(-2px); }
.fab:active { transform: translateY(0); }

.fab-ic { font-size: 18px; }
.fab-txt { font-size: 13px; letter-spacing: .2px; }

:root[data-theme="light"] .fab {
  border: 1px solid rgba(10,12,18,0.14);
  background: rgba(255,255,255,0.75);
  color: rgba(10,12,18,0.9);
  box-shadow: 0 18px 45px rgba(10,12,18,0.15);
}

/* =========================
   Modal
   ========================= */
.skills-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}

.skills-modal.open { display: block; }

.skills-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
  backdrop-filter: blur(6px);
}

.skills-modal__panel {
  position: relative;
  margin: 24px auto;
  width: min(1280px, calc(100% - 28px));
  height: min(840px, calc(100% - 48px));

  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);

  box-shadow: 0 28px 90px rgba(0,0,0,0.55);

  overflow: hidden;
  display: flex;
  flex-direction: column;
}

:root[data-theme="light"] .skills-modal__panel {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(10,12,18,0.12);
  box-shadow: 0 28px 80px rgba(10,12,18,0.18);
}

/* Header */
.skills-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;

  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

:root[data-theme="light"] .skills-modal__header {
  border-bottom: 1px solid rgba(10,12,18,0.10);
}

.skills-modal__header h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}

.skills-modal__header p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}

:root[data-theme="light"] .icon-btn {
  border: 1px solid rgba(10,12,18,0.12);
  background: rgba(10,12,18,0.03);
  color: rgba(10,12,18,0.85);
}

/* Body layout */
.skills-modal__body {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 16px;

  overflow-y: auto;
}

/* Gráfico grande e “invadindo” */
.skills-modal__chart {
  position: relative;
  padding: 16px;
  overflow: hidden;
  background: white;
}

:root[data-theme="dark"] .skills-modal__chart {
  background: transparent;
}

.skills-modal__chart {
  border-right: 1px solid rgba(0,0,0,0.08);
}

:root[data-theme="dark"] .skills-modal__chart {
  border-right: 1px solid rgba(255,255,255,0.12);
}

/* canvas normal, contido */
#skillsRadar {
  width: 100%;
  height: auto;
  display: block;

  transform: none;
  filter: none;
  pointer-events: none;
}

:root[data-theme="light"] #skillsRadar {
  filter: drop-shadow(0 18px 40px rgba(10,12,18,0.15));
}

/* Legend */
.skills-legend {
  position: absolute;
  left: 20px;
  bottom: 18px;

  display: flex;
  gap: 14px;
  flex-wrap: wrap;

  padding: 10px 12px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

:root[data-theme="light"] .skills-legend {
  border: 1px solid rgba(10,12,18,0.10);
  background: rgba(255,255,255,0.78);
}

.lg {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sw {
  width: 18px;
  height: 8px;
  border-radius: 999px;
  background: var(--c);
  display: inline-block;
}

.sw.dash {
  background: transparent;
  border: 2px dashed var(--c);
}

/* Cards coluna */
.skills-modal__cards {
  padding: 16px;
  overflow: visible;
}


/* Cards melhorados */
.skills-modal__cards .skill-card {
  border-radius: 22px;
  padding: 14px 16px;
  margin-bottom: 12px;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

:root[data-theme="light"] .skills-modal__cards .skill-card {
  border: 1px solid rgba(10,12,18,0.12);
  background: rgba(255,255,255,0.92);
}

.skills-modal__cards .skill-card h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--text);
}

.skills-modal__cards .skill-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.skills-modal__cards .skill-card .score {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.skills-modal__cards .skill-card.good {
  border-color: rgba(34,197,94,0.45);
}

.skills-modal__cards .skill-card.gap {
  border-color: rgba(251,146,60,0.55);
}

@media (max-width: 980px) {
  .skills-modal__panel {
    margin: 14px auto;
    height: calc(100% - 28px);
  }

  .skills-modal__body {
    grid-template-columns: 1fr;
  }

  #skillsRadar {
    width: 100%;
    transform: none;
  }

  .skills-modal__chart {
    padding: 16px;
  }

  .skills-modal__cards {
    padding: 0 16px 16px;
  }

  .skills-legend {
    position: static;
    margin-top: 12px;
    border-radius: 18px;
  }
}

.skills-modal__body::-webkit-scrollbar {
  width: 12px;
}

.skills-modal__body::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.skills-modal__body::-webkit-scrollbar-track {
  background: transparent;
}

.skills-modal__body {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0, 0) transparent;
}

.chart-tools {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.chart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 10px;
  border-radius: 999px;

  border: 1px solid rgba(10,12,18,0.12);
  background: rgba(255,255,255,0.75);
  color: rgba(10,12,18,0.85);

  font-size: 12px;
  font-weight: 700;
  user-select: none;
}

:root[data-theme="dark"] .chart-toggle {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
}

.chart-toggle input {
  width: 16px;
  height: 16px;
  accent-color: #3b82f6;
}

@media (max-width: 980px) {
  .skills-modal__cards {
    padding: 16px;
  }

  .skills-modal__chart {
    display: none;
  }
  /* deixa o header quebrar linha */
  .topbar-inner {
    align-items: center;
  }

  /* actions vira “linha 1”, e o botão principal vira “linha 2” full */
  .actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
    gap: 10px;
  }

  /* mantém Tema e Idioma compactos (sem label) */
  .actions .btn.ghost {
    padding: 10px 12px;
  }

  /* o botão traduzido vai pra baixo e pega 100% */
  .actions > .btn:not(.ghost) {
    order: 99;
    width: 100%;
    justify-content: center;
  }

  /* garante que o texto do botão continue aparecendo no mobile */
  .actions > .btn:not(.ghost) [data-i18n="ui.talk"] {
    display: inline;
  }
}

  #paper-crystals {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

  /* canvas do rastro */
  #paper-crystals canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* sprite do cristal */
  .pc-ship {
    position: absolute;
    width: var(--s, 64px);
    height: var(--s, 64px);
    background: var(--img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 16px 26px rgba(0,0,0,.28));
    opacity: 0.95;
    will-change: transform, left, top, opacity;
    transform-origin: 50% 50%;
  }

  @media (prefers-reduced-motion: reduce) {
    #paper-crystals { display: none; }
  }