.indigo-games-page,
.indigo-games-page *,
.ig-story-modal,
.ig-story-modal *,
.ig-songs-modal,
.ig-songs-modal *,
.ig-map-viewer,
.ig-map-viewer * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #140546;
}

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

.indigo-games-page {
  --ig-purple: #652AD4;
  --ig-night: #320972;
  --ig-deep: #140546;
  --ig-gold: #F2D46B;
  --ig-white: #FFFFFF;
  --ig-milk: #F5F4FF;
  min-height: 100vh;
  min-height: 100svh;
  padding: max(18px, env(safe-area-inset-top)) 14px max(24px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  color: var(--ig-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(242, 212, 107, 0.25), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(182, 140, 255, 0.24), transparent 30%),
    linear-gradient(160deg, var(--ig-night), var(--ig-deep));
}

.ig-stars,
.ig-sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ig-stars {
  background:
    radial-gradient(circle at 14% 18%, rgba(182, 140, 255, 0.2), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(242, 212, 107, 0.14), transparent 14%),
    radial-gradient(circle at 78% 72%, rgba(141, 227, 255, 0.12), transparent 18%),
    radial-gradient(ellipse at 32% 82%, rgba(101, 42, 212, 0.18), transparent 34%);
  opacity: 1;
}

.ig-sparkles {
  z-index: 1;
  overflow: hidden;
}

.ig-sparkles span {
  position: absolute;
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0%, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0% 50%, 39% 36%);
  color: #F2D46B;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
  opacity: 0;
  animation: ig-float-spark 8s linear infinite;
}

.ig-sparkles span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 58%;
  width: 68px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, currentColor);
  filter: blur(0.5px);
  opacity: 0.7;
}

.ig-sparkles span:nth-child(1) { left: 8%; animation-delay: 0s; animation-duration: 7s; }
.ig-sparkles span:nth-child(2) { left: 18%; animation-delay: 2.3s; animation-duration: 9s; color: #fff; }
.ig-sparkles span:nth-child(3) { left: 27%; animation-delay: 1.1s; animation-duration: 8s; }
.ig-sparkles span:nth-child(4) { left: 39%; animation-delay: 3.4s; animation-duration: 10s; color: #b68cff; }
.ig-sparkles span:nth-child(5) { left: 51%; animation-delay: 0.7s; animation-duration: 7.5s; }
.ig-sparkles span:nth-child(6) { left: 63%; animation-delay: 2.8s; animation-duration: 8.5s; color: #fff; }
.ig-sparkles span:nth-child(7) { left: 72%; animation-delay: 1.6s; animation-duration: 9.5s; }
.ig-sparkles span:nth-child(8) { left: 84%; animation-delay: 4s; animation-duration: 7.8s; color: #b68cff; }
.ig-sparkles span:nth-child(9) { left: 94%; animation-delay: 2s; animation-duration: 8.8s; }
.ig-sparkles span:nth-child(10) { left: 13%; animation-delay: 5.2s; animation-duration: 11s; color: #fff; }
.ig-sparkles span:nth-child(11) { left: 58%; animation-delay: 5.8s; animation-duration: 10.5s; }
.ig-sparkles span:nth-child(12) { left: 77%; animation-delay: 6.4s; animation-duration: 9.2s; color: #fff; }

.ig-sparkles span:nth-child(3n) {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  clip-path: none;
  background:
    radial-gradient(circle, #fff 0 12%, currentColor 13% 34%, transparent 35%),
    radial-gradient(circle, rgba(182, 140, 255, 0.55), transparent 64%);
}

.ig-sparkles span:nth-child(3n)::after {
  width: 0;
}

@keyframes ig-float-spark {
  0% {
    transform: translate3d(20vw, 108vh, 0) rotate(-18deg) scale(0.55);
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  55% {
    transform: translate3d(-4vw, 44vh, 0) rotate(-18deg) scale(1.1);
  }
  100% {
    transform: translate3d(-24vw, -14vh, 0) rotate(-18deg) scale(0.65);
    opacity: 0;
  }
}

.ig-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.ig-page-topbar {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 10px;
}

.ig-page-topbar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: var(--ig-white);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 28px rgba(9,1,38,0.18);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.ig-hero {
  display: grid;
  gap: 26px;
  align-items: center;
  min-height: min(720px, calc(100svh - 88px));
  padding: 18px 0 26px;
}

.ig-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.ig-kicker,
.ig-lead,
.ig-hero h1,
.ig-game-card span,
.ig-game-card strong,
.ig-world-note p,
.ig-story-head p,
.ig-story-head h2,
.ig-story-panel h3,
.ig-story-panel p {
  margin: 0;
}

.ig-kicker {
  color: var(--ig-gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ig-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 14vw, 108px);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 14px 42px rgba(20, 5, 70, 0.42);
}

.ig-lead {
  max-width: 680px;
  color: rgba(245,244,255,0.9);
  font-size: clamp(17px, 3vw, 21px);
  line-height: 1.52;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.ig-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ig-primary-btn,
.ig-secondary-btn,
.ig-world-note button,
.ig-story-tab,
.ig-story-close {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ig-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #321A67;
  background: linear-gradient(135deg, var(--ig-gold), #ffe99b);
  box-shadow: 0 18px 34px rgba(242, 212, 107, 0.24);
  text-decoration: none;
}

.ig-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--ig-white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  text-decoration: none;
}

.ig-primary-btn:focus-visible,
.ig-secondary-btn:focus-visible,
.ig-world-note button:focus-visible,
.ig-page-topbar a:focus-visible,
.ig-game-card:focus-visible,
.ig-bubble:focus-visible,
.ig-story-tab:focus-visible,
.ig-story-close:focus-visible,
.ig-download-btn:focus-visible {
  outline: 3px solid rgba(242,212,107,0.95);
  outline-offset: 3px;
}

.ig-hero-character {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
}

.ig-hero-character::before {
  content: "";
  position: absolute;
  width: min(92vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 212, 107, 0.22), transparent 34%),
    radial-gradient(circle, rgba(101, 42, 212, 0.38), transparent 65%);
  filter: blur(2px);
}

.ig-hero-character img {
  position: relative;
  z-index: 1;
  width: min(78vw, 470px);
  max-height: 70svh;
  object-fit: contain;
  filter:
    drop-shadow(0 28px 42px rgba(5, 1, 25, 0.38))
    drop-shadow(0 0 24px rgba(182, 140, 255, 0.35));
  animation: ig-wishka-float 4.8s ease-in-out infinite;
}

.ig-wishka-button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ig-wishka-button:focus-visible {
  outline: 3px solid var(--ig-gold);
  outline-offset: 8px;
  border-radius: 34px;
}

@keyframes ig-wishka-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.018);
  }
}

.ig-bubble {
  position: absolute;
  z-index: 2;
  max-width: 176px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 999px;
  color: #321A67;
  background: rgba(245, 244, 255, 0.9);
  box-shadow: 0 14px 30px rgba(20, 5, 70, 0.26);
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.ig-bubble-eyes {
  top: 10%;
  left: 0;
}

.ig-bubble-ears {
  top: 28%;
  right: 0;
}

.ig-bubble-magic {
  bottom: 18%;
  left: 4%;
}

.ig-world-note {
  display: grid;
  gap: 14px;
  margin: 4px 0 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 18px 40px rgba(9,1,38,0.2);
}

.ig-world-note div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: start;
}

.ig-world-note span {
  grid-row: 1 / 3;
  font-size: 34px;
}

.ig-world-note strong {
  font-size: 20px;
  line-height: 1.2;
}

.ig-world-note p {
  color: rgba(245,244,255,0.84);
  line-height: 1.45;
  font-weight: 680;
}

.ig-world-note button {
  justify-self: start;
  padding: 0 18px;
  color: #321A67;
  background: var(--ig-gold);
}

.ig-game-picker {
  display: grid;
  gap: 14px;
  margin: 8px 0 20px;
}

.ig-game-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 4px 12px;
  width: 100%;
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  color: var(--ig-white);
  text-align: left;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 14px 32px rgba(9,1,38,0.18);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ig-game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242,212,107,0.8);
  background: linear-gradient(135deg, rgba(101,42,212,0.55), rgba(255,255,255,0.14));
}

.ig-game-card img {
  grid-row: 1 / 4;
  width: 76px;
  height: 76px;
  object-fit: contain;
  align-self: center;
}

.ig-game-tag {
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  color: #321A67;
  background: var(--ig-gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ig-game-card strong {
  font-size: 20px;
  line-height: 1.15;
}

.ig-game-card > span:not(.ig-game-tag):not(.ig-game-cta) {
  color: rgba(245,244,255,0.82);
  font-size: 14px;
  line-height: 1.35;
}

.ig-game-cta {
  justify-self: start;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #321A67;
  background: var(--ig-gold);
  box-shadow: 0 12px 26px rgba(242, 212, 107, 0.18);
  font-size: 13px;
  font-weight: 950;
}

.ig-song-section {
  display: grid;
  gap: 16px;
  margin: 22px 0 28px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 10%, rgba(242,212,107,0.16), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(101,42,212,0.28), transparent 32%),
    rgba(255,255,255,0.09);
  box-shadow: 0 18px 40px rgba(9,1,38,0.2);
}

.ig-section-head {
  display: grid;
  gap: 8px;
}

.ig-section-head h2,
.ig-section-head p {
  margin: 0;
}

.ig-section-head h2 {
  font-size: clamp(32px, 8vw, 54px);
  line-height: 1;
}

.ig-section-head p:last-child {
  max-width: 720px;
  color: rgba(245,244,255,0.84);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 720;
}

.ig-song-list {
  display: grid;
  gap: 10px;
}

.ig-song-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  background: rgba(20,5,70,0.28);
}

.ig-song-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ig-song-title span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #321A67;
  background: var(--ig-gold);
  font-size: 12px;
  font-weight: 950;
}

.ig-song-title h3 {
  margin: 0;
  color: var(--ig-white);
  font-size: 18px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.ig-song-card audio {
  width: 100%;
  min-width: 0;
  height: 38px;
  accent-color: var(--ig-gold);
}

.ig-download-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #321A67;
  background: var(--ig-gold);
  box-shadow: 0 12px 26px rgba(242, 212, 107, 0.18);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.ig-story-modal {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: none;
  padding: max(16px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  color: #321A67;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ig-story-modal.ig-visible {
  display: grid;
  place-items: center;
}

.ig-story-backdrop,
.ig-songs-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 5, 70, 0.74);
  backdrop-filter: blur(14px);
}

.ig-songs-modal {
  --ig-purple: #652AD4;
  --ig-night: #320972;
  --ig-deep: #140546;
  --ig-gold: #F2D46B;
  --ig-white: #FFFFFF;
  --ig-milk: #F5F4FF;
  position: fixed;
  z-index: 30;
  inset: 0;
  display: none;
  padding: max(16px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  color: var(--ig-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ig-songs-modal.ig-visible {
  display: grid;
  place-items: center;
}

.ig-songs-dialog {
  position: relative;
  width: min(100%, 980px);
  max-height: calc(100svh - 32px);
  display: grid;
  gap: 16px;
  overflow: auto;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(242,212,107,0.16), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(101,42,212,0.28), transparent 32%),
    linear-gradient(160deg, rgba(60,31,135,0.98), rgba(20,5,70,0.98));
  box-shadow: 0 32px 90px rgba(5, 1, 25, 0.54);
  border: 1px solid rgba(255,255,255,0.24);
  overscroll-behavior: contain;
}

.ig-songs-dialog .ig-kicker {
  color: var(--ig-gold);
}

.ig-songs-dialog .ig-section-head h2,
.ig-songs-dialog .ig-song-title h3 {
  color: var(--ig-white);
}

.ig-songs-dialog .ig-section-head p:last-child {
  color: rgba(245,244,255,0.86);
}

.ig-songs-dialog .ig-song-title span {
  color: #321A67;
  background: var(--ig-gold);
}

.ig-songs-dialog .ig-download-btn {
  color: #321A67;
  background: var(--ig-gold);
}

.ig-songs-dialog .ig-story-close {
  top: 14px;
  right: 14px;
}

.ig-story-dialog {
  position: relative;
  width: min(100%, 960px);
  max-height: calc(100svh - 32px);
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(242, 212, 107, 0.24), transparent 24%),
    linear-gradient(145deg, #fff7fb, #f5f4ff 48%, #eadfff);
  box-shadow: 0 32px 90px rgba(5, 1, 25, 0.54);
  border: 1px solid rgba(255,255,255,0.62);
}

.ig-story-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ig-white);
  background: var(--ig-purple);
  font-size: 28px;
  line-height: 1;
}

.ig-story-head {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 58px 12px 22px;
}

.ig-story-head img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(101,42,212,0.28));
}

.ig-story-head h2 {
  font-size: clamp(30px, 8vw, 56px);
  line-height: 0.95;
}

.ig-story-head p:last-child {
  margin-top: 8px;
  color: rgba(50, 26, 103, 0.72);
  font-weight: 720;
}

.ig-story-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 18px 14px;
  scrollbar-width: thin;
}

.ig-story-tab {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ig-purple);
  background: rgba(101,42,212,0.1);
  border: 1px solid rgba(101,42,212,0.16);
}

.ig-story-tab.ig-active {
  color: #321A67;
  background: var(--ig-gold);
}

.ig-story-panels {
  overflow: auto;
  padding: 0 18px 22px;
}

.ig-story-panel {
  display: none;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(101,42,212,0.12);
}

.ig-story-panel.ig-active {
  display: grid;
  gap: 12px;
}

.ig-story-panel h3 {
  color: var(--ig-purple);
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.05;
}

.ig-story-panel p {
  font-size: 17px;
  line-height: 1.58;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.ig-story-panel blockquote {
  margin: 6px 0;
  padding: 14px 16px;
  border-left: 5px solid var(--ig-gold);
  border-radius: 16px;
  background: rgba(242, 212, 107, 0.22);
  font-size: 18px;
  font-weight: 900;
}

.ig-map-viewer {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  place-items: start center;
  padding: max(14px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(36px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  background: rgba(20, 5, 70, 0.92);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-padding-top: max(14px, env(safe-area-inset-top));
}

.ig-map-viewer.ig-visible {
  display: grid;
}

.ig-map-viewer img {
  display: block;
  width: min(96vw, 1600px);
  max-width: none;
  min-width: min(100%, 980px);
  min-height: 0;
  height: auto;
  object-fit: contain;
  object-position: top center;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.ig-map-close {
  position: fixed;
  z-index: 41;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #321A67;
  background: #F2D46B;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  .ig-map-viewer {
    padding: 0 0 max(20px, env(safe-area-inset-bottom));
  }

  .ig-map-viewer img {
    width: 100vw;
    min-width: 0;
    min-height: 0;
    border-radius: 0;
  }
}

@media (min-width: 760px) {
  .indigo-games-page {
    padding: 28px;
  }

  .ig-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }

  .ig-world-note {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .ig-game-picker {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }

  .ig-song-section {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .indigo-games-page {
    padding: max(10px, env(safe-area-inset-top)) 14px max(22px, env(safe-area-inset-bottom));
  }

  .ig-hero {
    gap: 14px;
    min-height: auto;
    padding: 10px 0 18px;
  }

  .ig-page-topbar {
    justify-content: center;
    padding-bottom: 8px;
  }

  .ig-page-topbar a {
    width: 100%;
  }

  .ig-hero-copy {
    gap: 10px;
    width: min(100%, 340px);
    max-width: 100%;
    margin: 0;
    text-align: center;
  }

  .ig-hero h1 {
    font-size: clamp(38px, 13vw, 54px);
    line-height: 0.96;
  }

  .ig-lead {
    font-size: 15px;
    line-height: 1.42;
    max-width: 100%;
  }

  .ig-hero-actions {
    justify-content: center;
  }

  .ig-hero-actions,
  .ig-world-note button {
    width: 100%;
  }

  .ig-primary-btn,
  .ig-secondary-btn,
  .ig-world-note button {
    width: 100%;
  }

  .ig-bubble {
    position: static;
    inset: auto;
    width: min(100%, 310px);
    max-width: none;
    min-height: 40px;
    margin: 0 auto;
    padding: 9px 13px;
    text-align: center;
  }

  .ig-lead,
  .ig-world-note p,
  .ig-story-panel p {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .ig-hero-character {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .ig-wishka-button {
    order: -1;
  }

  .ig-hero-character img {
    width: min(82vw, 340px);
    max-height: 54svh;
  }

  .ig-world-note {
    margin-top: 0;
    border-radius: 20px;
  }

  .ig-song-section {
    margin-top: 16px;
    padding: 14px;
    border-radius: 20px;
  }

  .ig-song-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .ig-song-card audio {
    height: 42px;
  }

  .ig-download-btn {
    width: 100%;
  }

  .ig-story-head {
    grid-template-columns: 70px 1fr;
    padding: 18px 52px 10px 16px;
  }

  .ig-story-head img {
    width: 70px;
    height: 70px;
  }

  .ig-story-panel {
    padding: 16px;
  }
}
