:root {
  --bg: #050817;
  --panel: rgba(14, 21, 55, 0.78);
  --panel-strong: rgba(20, 28, 72, 0.92);
  --line: rgba(151, 211, 255, 0.18);
  --text: #ffffff;
  --muted: #aab7d6;
  --cyan: #20d8ff;
  --purple: #8d48ff;
  --pink: #ff5fd7;
  --gold: #ffd25f;
  --green: #49d68b;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 72% 8%, rgba(141, 72, 255, 0.34), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(32, 216, 255, 0.16), transparent 26rem),
    linear-gradient(135deg, #060917 0%, #0c1133 46%, #160a35 100%);
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10% -22% -10%;
  height: 44vh;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(32, 216, 255, 0.18), transparent 62%);
  filter: blur(28px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

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

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

.creator-shell {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
}

.creator-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.player-strip {
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(180, 218, 255, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: #dfe9ff;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 22px rgba(32, 216, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
}

.player-strip strong {
  position: relative;
  flex: 1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.player-strip i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  box-shadow: 0 0 18px rgba(141, 72, 255, 0.72);
}

.creator-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
  box-shadow: 0 0 26px rgba(141, 72, 255, 0.56);
  transform: rotate(45deg);
}

.brand-mark span {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--bg);
}

.creator-brand strong,
.creator-brand small {
  display: block;
  transform: none;
}

.creator-brand strong {
  font-size: 1.35rem;
  letter-spacing: 0;
}

.creator-brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.creator-topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.creator-topbar nav a,
.creator-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180, 218, 255, 0.18);
  border-radius: 14px;
  padding: 0 18px;
  color: #edf4ff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
}

.creator-button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 16px 34px rgba(63, 88, 255, 0.28);
}

.creator-button.secondary {
  border-color: rgba(141, 72, 255, 0.42);
  background: rgba(141, 72, 255, 0.16);
}

.creator-hero {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(300px, 0.84fr) minmax(420px, 1.16fr);
  gap: 24px;
  align-items: stretch;
  padding: 28px 0 16px;
}

.hero-copy,
.hero-world,
.tool-card,
.forge-panel,
.preview-panel,
.asset-panel,
.copilot-card,
.asset-library article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(19, 29, 74, 0.88), rgba(10, 13, 36, 0.82));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-copy,
.forge-panel,
.preview-panel,
.asset-panel,
.copilot-card,
.recent-projects,
.asset-library article {
  position: relative;
}

.hero-copy::before,
.forge-panel::before,
.preview-panel::before,
.asset-panel::before,
.copilot-card::before,
.recent-projects::before,
.asset-library article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 20% 12%, rgba(32, 216, 255, 0.12), transparent 32rem);
  opacity: 0.72;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.mode-pill,
.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  border: 1px solid rgba(141, 72, 255, 0.4);
  border-radius: 999px;
  padding: 7px 12px;
  color: #bda6ff;
  background: rgba(141, 72, 255, 0.16);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p:not(.mode-pill) {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.58;
}

.forge-cta {
  min-height: 58px;
  padding: 0 26px;
  font-size: 1.05rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 26px;
}

.hero-stats span {
  border: 1px solid rgba(180, 218, 255, 0.16);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
}

.hero-actions,
.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-world {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  margin: 0;
  background: #0b102c;
}

.hero-world img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.hero-world::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 23, 0.5), transparent 45%), linear-gradient(to top, rgba(5, 8, 23, 0.36), transparent 45%);
}

.hero-world figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: #eaf7ff;
  background: rgba(8, 14, 36, 0.62);
  font-size: 0.8rem;
  font-weight: 900;
}

.floating-cube,
.portal-ring,
.coin-orb,
.moving-platform {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.floating-cube {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff8c3f, #8d48ff 48%, #20d8ff);
  box-shadow: 0 0 26px rgba(141, 72, 255, 0.78);
  transform: rotate(18deg);
  animation: creatorFloat 5.8s ease-in-out infinite;
}

.cube-one {
  top: 12%;
  right: 20%;
}

.cube-two {
  top: 34%;
  left: 22%;
  width: 22px;
  height: 22px;
  animation-delay: -2s;
}

.portal-ring {
  right: 12%;
  bottom: 22%;
  width: 72px;
  height: 72px;
  border: 8px solid rgba(32, 216, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(32, 216, 255, 0.86), inset 0 0 20px rgba(141, 72, 255, 0.62);
  animation: portalPulse 2.6s ease-in-out infinite;
}

.coin-orb {
  top: 28%;
  right: 36%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8b4, #ffd25f 42%, #ff8c25 70%);
  box-shadow: 0 0 24px rgba(255, 210, 95, 0.8);
  animation: coinSpin 2.4s linear infinite;
}

.moving-platform {
  left: 42%;
  bottom: 17%;
  width: 92px;
  height: 20px;
  border-radius: 9px;
  background: linear-gradient(90deg, #20d8ff, #8d48ff);
  box-shadow: 0 0 26px rgba(32, 216, 255, 0.72);
  animation: platformSlide 3.5s ease-in-out infinite;
}

.quick-launch {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 12px 0 24px;
}

.tool-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: space-between;
  gap: 16px;
  overflow: hidden;
  padding: 20px;
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tool-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(32, 216, 255, 0.2);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(32, 216, 255, 0.18), rgba(141, 72, 255, 0.08));
  transform: rotate(18deg);
}

.tool-card:hover {
  border-color: rgba(32, 216, 255, 0.54);
  box-shadow: 0 26px 90px rgba(32, 216, 255, 0.16), 0 18px 60px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px);
}

.tool-card.featured {
  border-color: rgba(32, 216, 255, 0.48);
  background: linear-gradient(145deg, rgba(28, 83, 139, 0.88), rgba(82, 27, 160, 0.82));
}

.tool-card h2,
.forge-panel h2,
.preview-panel h2,
.asset-panel h2,
.copilot-card h2,
.asset-library h2 {
  margin: 0;
  letter-spacing: 0;
}

.tool-card p,
.tool-card span,
.asset-library p,
.copilot-card p {
  color: var(--muted);
  line-height: 1.45;
}

.tool-card p {
  margin: 0 0 8px;
  color: #8eeaff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-card a {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.tool-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 26px rgba(32, 216, 255, 0.22);
}

.tool-icon.props { background: linear-gradient(135deg, #49d68b, #20d8ff); }
.tool-icon.image { background: linear-gradient(135deg, #ff9f42, #ff5fd7); }
.tool-icon.texture { background: linear-gradient(135deg, #ffd25f, #8d48ff); }
.tool-icon.pack { background: linear-gradient(135deg, #20d8ff, #ffd25f); }
.tool-icon.model { background: linear-gradient(135deg, #7b809c, #252b4a); }

.tool-card.locked {
  opacity: 0.78;
}

.creator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  gap: 18px;
}

.forge-panel,
.preview-panel,
.asset-panel,
.copilot-card {
  overflow: hidden;
  padding: 22px;
}

.forge-panel > *,
.preview-panel > *,
.asset-panel > *,
.copilot-card > * {
  position: relative;
  z-index: 1;
}

.panel-head,
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.panel-head span,
.panel-head a {
  border-radius: 999px;
  padding: 7px 10px;
  color: #f7efff;
  background: rgba(141, 72, 255, 0.22);
  font-size: 0.76rem;
  font-weight: 900;
}

.prompt-card {
  margin: 18px 0;
  border: 1px solid rgba(151, 211, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  background: rgba(3, 8, 25, 0.36);
}

.prompt-card p {
  margin: 0 0 8px;
  color: #8eeaff;
  font-weight: 900;
  text-transform: uppercase;
}

.prompt-card strong {
  font-size: 1.12rem;
  line-height: 1.5;
}

.forge-wide {
  width: fit-content;
  margin-bottom: 16px;
}

.build-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.build-steps span {
  border-radius: 12px;
  padding: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}

.build-steps .done {
  color: #b8ffd9;
  background: rgba(73, 214, 139, 0.14);
}

.build-steps .active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(32, 216, 255, 0.3), rgba(141, 72, 255, 0.3));
}

.forge-panel > img {
  width: 100%;
  max-height: 360px;
  border-radius: 18px;
  object-fit: cover;
}

.preview-panel img,
.asset-library img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.preview-stage {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.scan-line {
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(32, 216, 255, 0.28), transparent);
  transform: skewX(-16deg);
  animation: scanWorld 3.8s ease-in-out infinite;
}

.preview-panel img {
  aspect-ratio: 16 / 9;
}

.preview-actions a {
  flex: 1;
  min-width: 120px;
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-align: center;
}

.preview-actions a:first-child {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.asset-panel {
  grid-column: 1 / 2;
}

.asset-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.asset-tags span {
  border-radius: 999px;
  padding: 8px 10px;
  color: #cfefff;
  background: rgba(32, 216, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.asset-backpack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.asset-backpack-grid.compact {
  min-height: 240px;
  align-content: center;
}

.asset-piece,
.tool-icon-grid span {
  display: grid;
  min-height: 98px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(180, 218, 255, 0.18);
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(145deg, rgba(32, 216, 255, 0.22), rgba(141, 72, 255, 0.18));
  box-shadow: inset 0 0 26px rgba(255, 255, 255, 0.04), 0 16px 34px rgba(0, 0, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.asset-piece::before,
.tool-icon-grid span::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 0 22px rgba(32, 216, 255, 0.34);
}

.asset-piece.lava::before { background: linear-gradient(135deg, #ff5f27, #ffd25f); }
.asset-piece.checkpoint::before { background: linear-gradient(135deg, #20d8ff, #49d68b); }
.asset-piece.portal::before { border-radius: 50%; background: radial-gradient(circle, transparent 38%, #20d8ff 40%, #8d48ff 72%); }
.asset-piece.coin::before { border-radius: 50%; background: radial-gradient(circle, #fff7a4, #ffd25f 55%, #ff8c25); }
.asset-piece.trap::before { clip-path: polygon(50% 0, 100% 100%, 0 100%); background: linear-gradient(135deg, #ffffff, #8fa8c8); }
.asset-piece.decor::before { border-radius: 50% 50% 44% 44%; background: linear-gradient(135deg, #49d68b, #1f8b59); }

.tool-icon-grid {
  display: grid;
  min-height: 240px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.tool-icon-grid span {
  min-height: 78px;
}

.tool-icon-grid span:nth-child(1)::before { background: linear-gradient(135deg, #ff8c3f, #8d48ff); }
.tool-icon-grid span:nth-child(2)::before { border-radius: 50%; background: radial-gradient(circle, transparent 36%, #20d8ff 38%, #8d48ff 72%); }
.tool-icon-grid span:nth-child(3)::before { background: linear-gradient(135deg, #49d68b, #20d8ff); }
.tool-icon-grid span:nth-child(4)::before { background: linear-gradient(135deg, #ffd25f, #ff5fd7); }
.tool-icon-grid span:nth-child(5)::before { border-radius: 50%; background: radial-gradient(circle, #fff8b4, #ffd25f 50%, #ff8c25); }
.tool-icon-grid span:nth-child(6)::before { background: linear-gradient(135deg, #252b4a, #8d48ff); }

.copilot-card {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  min-height: 420px;
}

.copilot-card img {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: min(210px, 46%);
  filter: drop-shadow(0 0 28px rgba(32, 216, 255, 0.32));
}

.copilot-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 58%;
  margin: 20px 0 10px;
  padding: 0;
  list-style: none;
}

.copilot-timeline li {
  border: 1px solid rgba(180, 218, 255, 0.12);
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 900;
}

.copilot-timeline li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(170, 183, 214, 0.52);
}

.copilot-timeline .done {
  color: #c8ffe1;
}

.copilot-timeline .done::before {
  background: var(--green);
  box-shadow: 0 0 14px rgba(73, 214, 139, 0.78);
}

.copilot-timeline .active {
  color: #ffffff;
}

.copilot-timeline .active::before {
  background: var(--purple);
  box-shadow: 0 0 14px rgba(141, 72, 255, 0.86);
}

.recent-projects {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr)) 0.8fr;
  gap: 14px;
  align-items: stretch;
  margin: 18px 0 8px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(19, 29, 74, 0.88), rgba(10, 13, 36, 0.82));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.recent-projects > * {
  position: relative;
  z-index: 1;
}

.recent-projects h2 {
  margin: 0;
}

.recent-projects article,
.new-project {
  overflow: hidden;
  border: 1px solid rgba(180, 218, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.recent-projects article img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.recent-projects article span,
.new-project {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-weight: 900;
}

.new-project {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(32, 216, 255, 0.22), rgba(141, 72, 255, 0.3));
  text-align: center;
}

.copilot-card .creator-button {
  position: relative;
  z-index: 2;
  margin-top: 16px;
}

.asset-library {
  padding: 26px 0 60px;
}

.section-head {
  max-width: 920px;
  display: block;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.library-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.asset-library article {
  overflow: hidden;
  padding: 16px;
}

.asset-library article img {
  aspect-ratio: 16 / 10;
}

.asset-library article h3 {
  margin: 14px 0 6px;
}

.platform-note {
  margin: -26px 0 42px;
  color: rgba(170, 183, 214, 0.78);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 1120px) {
  .creator-hero,
  .creator-grid {
    grid-template-columns: 1fr;
  }

  .quick-launch,
  .library-row,
  .recent-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-panel,
  .copilot-card {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .creator-shell {
    width: min(100% - 20px, 1500px);
  }

  .creator-topbar {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .player-strip {
    width: 100%;
  }

  .creator-topbar nav {
    justify-content: flex-start;
  }

  .creator-hero {
    min-height: auto;
    padding-top: 8px;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-world,
  .hero-world img {
    min-height: 320px;
  }

  .quick-launch,
  .library-row,
  .build-steps,
  .hero-stats,
  .recent-projects {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 160px;
  }

  .copilot-card {
    min-height: 320px;
  }

  .copilot-timeline {
    max-width: 100%;
  }

  .copilot-card img {
    opacity: 0.46;
  }
}

@keyframes creatorFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(32deg);
  }
}

@keyframes portalPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.86;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes coinSpin {
  0% {
    transform: rotateY(0deg) translateY(0);
  }
  50% {
    transform: rotateY(180deg) translateY(-8px);
  }
  100% {
    transform: rotateY(360deg) translateY(0);
  }
}

@keyframes platformSlide {
  0%, 100% {
    transform: translateX(-24px);
  }
  50% {
    transform: translateX(28px);
  }
}

@keyframes scanWorld {
  0%, 100% {
    transform: translateX(0) skewX(-16deg);
    opacity: 0;
  }
  18%, 72% {
    opacity: 1;
  }
  100% {
    transform: translateX(560%) skewX(-16deg);
  }
}

@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;
  }
}
