:root {
  --bg-1: #fff5fb;
  --bg-2: #ffe8d6;
  --bg-3: #dfefff;
  --ink: #25182e;
  --ink-soft: rgba(37, 24, 46, 0.68);
  --pink: #ff7fb7;
  --pink-deep: #ea4f96;
  --peach: #ffb06b;
  --blue: #7eb5ff;
  --blue-deep: #4e7fd8;
  --cream: #fffdf8;
  --mint: #d7f4e3;
  --shadow: 0 28px 80px rgba(133, 80, 124, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 127, 183, 0.22), transparent 22%),
    radial-gradient(circle at 83% 14%, rgba(126, 181, 255, 0.26), transparent 24%),
    radial-gradient(circle at 70% 80%, rgba(255, 176, 107, 0.18), transparent 18%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.scene {
  position: relative;
  width: min(1360px, calc(100% - 20px));
  margin: 0 auto;
  padding:
    calc(26px + env(safe-area-inset-top))
    0
    calc(42px + env(safe-area-inset-bottom));
  overflow: hidden;
}

.scene__grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 18px 18px;
  mix-blend-mode: soft-light;
}

.spotlight {
  position: absolute;
  inset: 0 auto auto 50%;
  width: 440px;
  height: 640px;
  transform: translateX(-50%);
  filter: blur(6px);
  pointer-events: none;
}

.spotlight::before {
  position: absolute;
  inset: 0;
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
  content: "";
}

.spotlight--pink::before {
  background: linear-gradient(180deg, rgba(255, 127, 183, 0.24), rgba(255, 127, 183, 0));
}

.spotlight--blue {
  transform: translateX(-15%) rotate(8deg);
}

.spotlight--blue::before {
  background: linear-gradient(180deg, rgba(126, 181, 255, 0.24), rgba(126, 181, 255, 0));
}

.spotlight--gold {
  transform: translateX(-87%) rotate(-7deg);
}

.spotlight--gold::before {
  background: linear-gradient(180deg, rgba(255, 176, 107, 0.22), rgba(255, 176, 107, 0));
}

.stage {
  position: relative;
  min-height: 72vh;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.38) 28%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 245, 251, 0.36) 42%, rgba(255, 255, 255, 0.14) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stage::before {
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 44%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.42), transparent 60%),
    linear-gradient(180deg, rgba(103, 67, 131, 0), rgba(77, 53, 109, 0.12));
  content: "";
}

.button-zone {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(92vw, 760px);
}

.mode-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.mode-pill {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(83, 53, 104, 0.12);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mode-pill:hover,
.mode-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.88);
}

.mode-pill:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.42);
  outline-offset: 4px;
}

.mode-pill.is-active {
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.95), rgba(126, 181, 255, 0.92));
  color: #fffdf8;
  box-shadow: 0 20px 34px rgba(255, 127, 183, 0.2);
}

.jobs-controls {
  width: 100%;
  max-width: 1120px;
  padding: 18px 18px 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 245, 251, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 40px rgba(83, 53, 104, 0.12);
  backdrop-filter: blur(14px);
}

.jobs-controls__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.jobs-filter-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.jobs-filter-group__label {
  margin: 0;
  color: rgba(37, 24, 46, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jobs-filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
}

.jobs-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(83, 53, 104, 0.08);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.jobs-filter-pill:hover,
.jobs-filter-pill:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
}

.jobs-filter-pill:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.38);
  outline-offset: 3px;
}

.jobs-filter-pill.is-active {
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.94), rgba(126, 181, 255, 0.92));
  color: #fffdf8;
  box-shadow: 0 16px 28px rgba(255, 127, 183, 0.16);
}

.jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.jobs-summary {
  margin: 0;
  flex: 1 1 320px;
  min-width: 0;
  color: rgba(37, 24, 46, 0.82);
  font-size: 0.98rem;
  line-height: 1.5;
}

.jobs-more-button {
  flex: 0 0 auto;
  max-width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: rgba(37, 24, 46, 0.92);
  color: #fffdf8;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(37, 24, 46, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}

@media (min-width: 761px) {
  body[data-mode="jobs"] .stage {
    min-height: auto;
  }

  body[data-mode="jobs"] .button-zone {
    position: relative;
    inset: auto;
    transform: none;
    width: min(94vw, 1160px);
    margin: 0 auto;
    padding: 36px 20px 44px;
  }

  body[data-mode="games"] .stage {
    min-height: auto;
  }

  body[data-mode="games"] .button-zone {
    position: relative;
    inset: auto;
    transform: none;
    width: min(94vw, 1160px);
    margin: 0 auto;
    padding: 36px 20px 44px;
  }
}

.jobs-more-button:hover,
.jobs-more-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(37, 24, 46, 0.2);
}

.jobs-more-button:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.38);
  outline-offset: 4px;
}

.jobs-more-button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
  box-shadow: 0 12px 22px rgba(37, 24, 46, 0.1);
}

.games-controls {
  width: 100%;
  max-width: 1120px;
  padding: 18px 18px 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 251, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 40px rgba(83, 53, 104, 0.12);
  backdrop-filter: blur(14px);
}

.games-controls__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.games-controls__label {
  margin: 0;
  color: rgba(37, 24, 46, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.games-controls__text {
  margin: 6px 0 0;
  color: rgba(37, 24, 46, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
}

.games-controls__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 14px;
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.14), rgba(126, 181, 255, 0.18));
  color: rgba(37, 24, 46, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.games-filter-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}

.games-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(83, 53, 104, 0.08);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.games-filter-pill:hover,
.games-filter-pill:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
}

.games-filter-pill:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.38);
  outline-offset: 4px;
}

.games-filter-pill.is-active {
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.96), rgba(126, 181, 255, 0.92));
  color: #fffdf8;
  box-shadow: 0 16px 28px rgba(255, 127, 183, 0.16);
}

.joy-button {
  position: relative;
  width: min(92vw, 760px);
  padding: clamp(28px, 5vw, 44px) clamp(24px, 4vw, 34px);
  border: 0;
  border-radius: 38px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.2rem, 6.4vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #fffdf8;
  cursor: pointer;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, #ff7fb7 0%, #ffb06b 48%, #7eb5ff 100%);
  box-shadow:
    0 30px 70px rgba(255, 127, 183, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.joy-button::before,
.joy-button::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.joy-button::before {
  inset: 14px 18px auto auto;
  width: 110px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.joy-button::after {
  inset: auto auto 18px 20px;
  width: 132px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.joy-button:hover,
.joy-button:focus-visible {
  transform: translateY(-4px) scale(1.015);
  filter: saturate(1.05);
  box-shadow:
    0 34px 80px rgba(255, 127, 183, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.joy-button:focus-visible {
  outline: 4px solid rgba(126, 181, 255, 0.42);
  outline-offset: 8px;
}

.joy-button.is-loading {
  animation: pulseButton 1.3s ease-in-out infinite;
}

@keyframes pulseButton {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

.joy-button__label {
  display: block;
}

.loading-pulse {
  display: inline-flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.loading-pulse.is-active {
  opacity: 1;
  transform: translateY(0);
}

.loading-pulse span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(255, 127, 183, 0.26);
  animation: blink 1s infinite ease-in-out;
}

.loading-pulse span:nth-child(2) {
  animation-delay: 120ms;
}

.loading-pulse span:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes blink {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.55;
  }

  40% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.artist {
  position: absolute;
  z-index: 4;
  filter: drop-shadow(0 28px 34px rgba(83, 53, 104, 0.16));
}

.artist--left {
  inset: auto auto 42px 44px;
  width: min(29vw, 360px);
  height: min(60vw, 600px);
}

.artist__halo,
.artist__head,
.artist__hair,
.artist__face-glow,
.artist__body,
.artist__boa,
.artist__arm,
.artist__finger,
.artist__leg,
.artist__boot {
  position: absolute;
}

.artist__halo {
  inset: 26px auto auto 62px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 218, 0.62), rgba(255, 191, 218, 0));
}

.artist__hair {
  inset: 72px auto auto 86px;
  width: 126px;
  height: 122px;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(180deg, #5a345f 0%, #25182e 100%);
}

.artist__head {
  inset: 90px auto auto 112px;
  width: 82px;
  height: 98px;
  border-radius: 48px;
  background: linear-gradient(180deg, #ffd8c2 0%, #ffc6b1 100%);
}

.artist__face-glow {
  inset: 118px auto auto 126px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  filter: blur(4px);
}

.artist__body {
  inset: 188px auto auto 78px;
  width: 190px;
  height: 210px;
  border-radius: 56px 56px 42px 42px;
  background:
    linear-gradient(180deg, #86b8ff 0%, #6b7bf1 46%, #472d62 100%);
}

.artist__boa {
  inset: 192px auto auto 68px;
  width: 220px;
  height: 54px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.44), transparent 16%),
    linear-gradient(90deg, #ff9fc7 0%, #ffcf95 50%, #ff9fc7 100%);
  filter: blur(0.4px);
}

.artist__arm {
  background: linear-gradient(180deg, #ffd8c2 0%, #ffc6b1 100%);
}

.artist__arm--point {
  inset: 208px auto auto 228px;
  width: 150px;
  height: 28px;
  border-radius: 999px;
  transform: rotate(-18deg);
  transform-origin: left center;
}

.artist__arm--hip {
  inset: 246px auto auto 64px;
  width: 88px;
  height: 28px;
  border-radius: 999px;
  transform: rotate(34deg);
}

.artist__finger {
  inset: 166px auto auto 356px;
  width: 36px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd8c2 0%, #ffc6b1 100%);
  transform: rotate(-18deg);
}

.artist__leg {
  width: 42px;
  height: 170px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd8c2 0%, #ffc6b1 100%);
}

.artist__leg--left {
  inset: auto auto 70px 122px;
  transform: rotate(4deg);
}

.artist__leg--right {
  inset: auto auto 70px 182px;
  transform: rotate(-8deg);
}

.artist__boot {
  width: 74px;
  height: 52px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, #ff9fc7 0%, #c85799 100%);
}

.artist__boot--left {
  inset: auto auto 34px 98px;
  transform: rotate(-5deg);
}

.artist__boot--right {
  inset: auto auto 28px 168px;
  transform: rotate(6deg);
}

.stage-props {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bracelet,
.disco-ball,
.star,
.heart,
.arrow-swoosh {
  position: absolute;
}

.bracelet {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 18px dotted rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.12),
    0 24px 30px rgba(126, 181, 255, 0.12);
}

.bracelet--one {
  inset: 84px 92px auto auto;
  background: radial-gradient(circle, transparent 46%, rgba(255, 127, 183, 0.12) 47%);
  transform: rotate(18deg);
}

.bracelet--two {
  inset: 148px 180px auto auto;
  width: 82px;
  height: 82px;
  border-width: 14px;
  background: radial-gradient(circle, transparent 46%, rgba(126, 181, 255, 0.16) 47%);
  transform: rotate(-14deg);
}

.disco-ball {
  inset: 52px auto auto 50%;
  width: 100px;
  height: 100px;
  margin-left: 220px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(180deg, #f1f5ff 0%, #d6e7ff 100%);
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow: 0 22px 42px rgba(126, 181, 255, 0.2);
}

.star {
  width: 34px;
  height: 34px;
  background: linear-gradient(180deg, #fff9ce 0%, #ffc66b 100%);
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
  filter: drop-shadow(0 10px 16px rgba(255, 176, 107, 0.28));
}

.star--one {
  inset: 120px auto auto 48%;
}

.star--two {
  inset: auto 150px 190px auto;
  transform: scale(1.2);
}

.heart {
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, #ff94bf 0%, #ff6ca7 100%);
  transform: rotate(-45deg);
  border-radius: 10px;
  filter: drop-shadow(0 10px 18px rgba(255, 127, 183, 0.3));
}

.heart::before,
.heart::after {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.heart::before {
  inset: -22px auto auto 0;
}

.heart::after {
  inset: 0 auto auto 22px;
}

.heart--one {
  inset: 180px auto auto 58%;
}

.heart--two {
  inset: auto auto 150px 54%;
  transform: rotate(-45deg) scale(0.76);
}

.arrow-swoosh {
  inset: 220px auto auto 53%;
  width: 220px;
  height: 120px;
  border-top: 8px solid rgba(255, 255, 255, 0.86);
  border-right: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 100% 100% 0 0;
  transform: rotate(-16deg);
  opacity: 0.8;
}

.arrow-swoosh::after {
  position: absolute;
  inset: -12px -10px auto auto;
  width: 28px;
  height: 28px;
  border-top: 8px solid rgba(255, 255, 255, 0.96);
  border-right: 8px solid rgba(255, 255, 255, 0.96);
  transform: rotate(22deg);
  content: "";
}

.gallery {
  position: relative;
  margin-top: 22px;
  padding: 8px 8px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.gallery.is-active {
  opacity: 1;
  transform: translateY(0);
}

.gallery-note {
  max-width: 1120px;
  margin: 0 auto 18px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 30px rgba(126, 181, 255, 0.12);
  color: rgba(37, 24, 46, 0.82);
  font-size: 0.98rem;
  line-height: 1.55;
}

.games-gallery-controls {
  position: sticky;
  top: 10px;
  z-index: 7;
  max-width: 1120px;
  margin: 0 auto 18px;
  padding: 14px 16px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 32px rgba(83, 53, 104, 0.1);
  backdrop-filter: blur(14px);
}

.games-gallery-controls__label {
  margin: 0 0 10px;
  color: rgba(37, 24, 46, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.games-gallery-controls__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.games-gallery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(83, 53, 104, 0.08);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.games-gallery-pill:hover,
.games-gallery-pill:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.98);
}

.games-gallery-pill:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.38);
  outline-offset: 4px;
}

.games-gallery-pill.is-active {
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.96), rgba(126, 181, 255, 0.92));
  color: #fffdf8;
  box-shadow: 0 16px 28px rgba(255, 127, 183, 0.16);
}

.gallery[data-mode="artist"] .meme-grid {
  max-width: 820px;
  grid-template-columns: minmax(0, 1fr);
}

.gallery[data-mode="concert"] .meme-grid {
  max-width: 1180px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.gallery[data-mode="jobs"] .meme-grid {
  max-width: 1180px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.gallery[data-mode="games"] .meme-grid {
  max-width: 1220px;
  grid-template-columns: minmax(0, 1fr);
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.meme-card {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 249, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.meme-card::before {
  position: absolute;
  inset: 12px auto auto 26px;
  width: 98px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.meme-card__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #ffeef6 100%);
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.meme-card__frame:hover,
.meme-card__frame:focus-visible {
  transform: scale(1.018);
  box-shadow: 0 18px 34px rgba(255, 127, 183, 0.14);
}

.meme-card__frame:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.42);
  outline-offset: 4px;
}

.meme-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meme-card__zoom-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(37, 24, 46, 0.76);
  color: #fffdf8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
}

.meme-card__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 14px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 127, 183, 0.12), rgba(126, 181, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(126, 181, 255, 0.14);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(255, 127, 183, 0.18);
}

.icon-button:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.38);
  outline-offset: 3px;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.placeholder-card {
  min-height: 420px;
  border-radius: 28px;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.84),
      rgba(255, 255, 255, 0.84) 18px,
      rgba(255, 236, 244, 0.78) 18px,
      rgba(255, 236, 244, 0.78) 36px
    );
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.fact-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 34px clamp(22px, 4vw, 40px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.38), transparent 24%),
    linear-gradient(135deg, rgba(255, 244, 201, 0.94), rgba(255, 232, 244, 0.96) 48%, rgba(223, 239, 255, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.fact-card::before {
  position: absolute;
  inset: 14px auto auto 28px;
  width: 114px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  content: "";
}

.fact-card__eyebrow {
  margin: 0;
  color: rgba(37, 24, 46, 0.66);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-card__artist {
  margin: 18px 0 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.fact-card__text {
  margin: 0;
  font-size: clamp(1.08rem, 2.2vw, 1.34rem);
  line-height: 1.65;
  color: rgba(37, 24, 46, 0.86);
}

.fact-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(126, 181, 255, 0.12);
}

.concert-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 249, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.concert-card--status {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.38), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 232, 0.97), rgba(255, 238, 246, 0.94));
}

.concert-card--poland {
  box-shadow:
    0 0 0 2px rgba(255, 176, 107, 0.34),
    var(--shadow);
}

.concert-card__poster {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 127, 183, 0.34), rgba(126, 181, 255, 0.34)),
    linear-gradient(180deg, #fff8fc, #f0f6ff);
}

.concert-card__poster--status {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.8), transparent 22%),
    linear-gradient(135deg, rgba(255, 176, 107, 0.3), rgba(255, 127, 183, 0.3), rgba(126, 181, 255, 0.28));
}

.concert-card__poster--status::before {
  position: absolute;
  inset: calc(50% - 86px) auto auto calc(50% - 86px);
  display: block;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.24) 62%, transparent 70%);
  box-shadow: 0 24px 44px rgba(126, 181, 255, 0.16);
  content: "";
}

.concert-card__poster--status::after {
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 28px;
  border: 4px solid rgba(37, 24, 46, 0.14);
  transform: rotate(-8deg);
  content: "";
}

.concert-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concert-card__poster-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(37, 24, 46, 0.72);
  color: #fffdf8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.concert-card__poster-badge--status {
  background: rgba(37, 24, 46, 0.78);
}

.concert-card__poster-badge--priority {
  background: linear-gradient(135deg, rgba(255, 176, 107, 0.96), rgba(255, 127, 183, 0.92));
}

.concert-card__body {
  padding: 22px 22px 24px;
}

.concert-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.concert-card__eyebrow {
  margin: 0;
  color: rgba(37, 24, 46, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concert-card__days {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.16), rgba(126, 181, 255, 0.18));
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.concert-card__artist {
  margin: 14px 0 8px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.concert-card__venue {
  margin: 0 0 18px;
  color: rgba(37, 24, 46, 0.7);
  font-size: 1rem;
  line-height: 1.45;
}

.concert-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.concert-fact {
  padding: 14px 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 20px rgba(126, 181, 255, 0.08);
}

.concert-fact--wide {
  grid-column: 1 / -1;
}

.concert-fact__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(37, 24, 46, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concert-fact__value {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.concert-card__price-note {
  margin: 14px 0 0;
  color: rgba(37, 24, 46, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.concert-status-card__status {
  font-size: 1.05rem;
}

.concert-status-card__note {
  min-height: 4.2em;
}

.concert-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.concert-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.96), rgba(126, 181, 255, 0.94));
  color: #fffdf8;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 26px rgba(255, 127, 183, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.concert-link:hover,
.concert-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 28px rgba(255, 127, 183, 0.24);
}

.concert-link:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.38);
  outline-offset: 3px;
}

.concert-link--soft {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.job-card {
  position: relative;
  overflow: hidden;
  padding: 24px 22px 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 242, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.job-card::before {
  position: absolute;
  inset: 14px auto auto 24px;
  width: 108px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  content: "";
}

.job-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.job-card__eyebrow {
  margin: 0;
  color: rgba(37, 24, 46, 0.6);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-card__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.16), rgba(126, 181, 255, 0.18));
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.job-card__title {
  position: relative;
  z-index: 1;
  margin: 16px 0 16px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.72rem, 3.7vw, 2.28rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.job-card__facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.job-fact {
  padding: 14px 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 20px rgba(126, 181, 255, 0.08);
}

.job-fact__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(37, 24, 46, 0.54);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-fact__value {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.job-card__section {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 16px 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
}

.job-card__section-label {
  margin: 0 0 10px;
  color: rgba(37, 24, 46, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-card__section-text {
  margin: 0;
  color: rgba(37, 24, 46, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

.job-card__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.job-card--empty {
  max-width: 760px;
  margin: 0 auto;
}

.job-empty-state__text {
  font-size: 1rem;
  line-height: 1.65;
}

.game-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(135deg, rgba(255, 249, 231, 0.98), rgba(255, 238, 247, 0.96) 46%, rgba(228, 240, 255, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.game-card::before {
  position: absolute;
  inset: 14px auto auto 24px;
  width: 118px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  content: "";
}

.game-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.game-card__eyebrow {
  margin: 0;
  color: rgba(37, 24, 46, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-card__title {
  margin: 14px 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.game-card__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 11px 14px;
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.18), rgba(126, 181, 255, 0.2));
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.game-card__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.game-stage {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(39, 18, 49, 0.96), rgba(23, 14, 35, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.game-canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}

.game-overlay {
  position: absolute;
  inset: 18px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 28%),
    rgba(23, 14, 35, 0.78);
  color: #fffdf8;
  text-align: center;
  backdrop-filter: blur(10px);
}

.game-overlay[hidden] {
  display: none;
}

.game-overlay__title {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 0.96;
}

.game-overlay__text {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

.game-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.game-stat,
.game-panel {
  padding: 16px 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 24px rgba(126, 181, 255, 0.1);
}

.game-stat__label,
.game-panel__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(37, 24, 46, 0.54);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-stat__value {
  display: block;
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1;
}

.game-side-rail {
  display: none;
}

.game-panels {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.game-panel__text {
  margin: 0;
  color: rgba(37, 24, 46, 0.84);
  font-size: 1rem;
  line-height: 1.58;
}

.game-instructions {
  margin: 0;
  padding-left: 18px;
  color: rgba(37, 24, 46, 0.84);
  font-size: 0.98rem;
  line-height: 1.58;
}

.game-instructions li + li {
  margin-top: 8px;
}

.game-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 12px;
  justify-content: flex-start;
}

.game-controls .concert-link {
  min-width: 0;
}

.game-joystick-wrap {
  display: none;
  gap: 10px;
  justify-items: center;
}

.game-joystick {
  position: relative;
  width: 172px;
  height: 172px;
  margin-top: 6px;
  border-radius: 50%;
  touch-action: none;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.42), transparent 28%),
    rgba(37, 24, 46, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.game-joystick__ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 2px dashed rgba(37, 24, 46, 0.2);
}

.game-joystick__thumb {
  position: absolute;
  inset: calc(50% - 28px) auto auto calc(50% - 28px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.42), transparent 36%),
    linear-gradient(135deg, rgba(255, 127, 183, 0.96), rgba(126, 181, 255, 0.94));
  box-shadow: 0 12px 22px rgba(255, 127, 183, 0.24);
}

.guessing-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.44), transparent 22%),
    linear-gradient(135deg, rgba(255, 246, 224, 0.98), rgba(255, 236, 247, 0.96) 42%, rgba(228, 239, 255, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.guessing-card::before {
  position: absolute;
  inset: 16px auto auto 24px;
  width: 132px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  content: "";
}

.guessing-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.guessing-card__eyebrow {
  margin: 0;
  color: rgba(37, 24, 46, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guessing-card__title {
  margin: 12px 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.guessing-card__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.guessing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.2), rgba(126, 181, 255, 0.2));
  color: rgba(37, 24, 46, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.guessing-card__badge--soft {
  background: rgba(255, 255, 255, 0.72);
}

.guessing-progress {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.guessing-progress__tile,
.guessing-clue,
.guessing-feedback,
.guessing-summary,
.guessing-instructions {
  position: relative;
  z-index: 1;
  padding: 16px 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 24px rgba(126, 181, 255, 0.1);
}

.guessing-progress__label,
.guessing-clue__label,
.guessing-instructions__label,
.guessing-feedback__label,
.guessing-summary__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(37, 24, 46, 0.54);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guessing-progress__value {
  display: block;
  color: var(--ink);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.52rem);
  line-height: 1;
}

.guessing-clue {
  margin-bottom: 16px;
}

.guessing-clue__text {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  font-weight: 700;
  line-height: 1.6;
}

.guessing-clue__meta {
  margin: 12px 0 0;
  color: rgba(37, 24, 46, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
}

.guessing-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guessing-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  min-height: 110px;
  border: 0;
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(83, 53, 104, 0.1);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.guessing-option:hover,
.guessing-option:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.94);
}

.guessing-option:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.38);
  outline-offset: 4px;
}

.guessing-option.is-selected {
  background: linear-gradient(135deg, rgba(255, 127, 183, 0.18), rgba(126, 181, 255, 0.18));
  box-shadow: 0 18px 30px rgba(255, 127, 183, 0.16);
}

.guessing-option.is-correct {
  background: linear-gradient(135deg, rgba(125, 221, 166, 0.3), rgba(216, 250, 228, 0.92));
}

.guessing-option.is-wrong {
  background: linear-gradient(135deg, rgba(255, 162, 162, 0.3), rgba(255, 238, 238, 0.94));
}

.guessing-option[disabled] {
  cursor: default;
  transform: none;
}

.guessing-option__badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(37, 24, 46, 0.9);
  color: #fffdf8;
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.guessing-option__title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.guessing-option__artist {
  display: block;
  margin-top: 6px;
  color: rgba(37, 24, 46, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
}

.guessing-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.guessing-feedback,
.guessing-summary {
  margin-top: 16px;
}

.guessing-feedback[hidden],
.guessing-summary[hidden] {
  display: none;
}

.guessing-feedback.is-correct {
  background: linear-gradient(135deg, rgba(216, 250, 228, 0.96), rgba(255, 255, 255, 0.8));
}

.guessing-feedback.is-wrong {
  background: linear-gradient(135deg, rgba(255, 238, 238, 0.96), rgba(255, 255, 255, 0.8));
}

.guessing-feedback__headline,
.guessing-summary__headline {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1;
}

.guessing-feedback__body,
.guessing-summary__body {
  margin: 10px 0 0;
  color: rgba(37, 24, 46, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}

.guessing-instructions {
  margin-top: 16px;
}

.guessing-instructions__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(37, 24, 46, 0.84);
  font-size: 0.98rem;
  line-height: 1.58;
}

.guessing-instructions__list li + li {
  margin-top: 8px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 127, 183, 0.24), transparent 28%),
    rgba(28, 18, 35, 0.84);
  backdrop-filter: blur(14px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1120px);
  max-height: calc(100vh - 40px);
  display: grid;
  gap: 14px;
  justify-items: center;
}

.lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 130px);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.lightbox__actions {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fffdf8;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox__close:focus-visible {
  outline: 3px solid rgba(126, 181, 255, 0.42);
  outline-offset: 4px;
}

.lightbox__close svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.icon-button--lightbox {
  background: rgba(255, 255, 255, 0.88);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .artist--left {
    left: 6px;
    bottom: 28px;
    transform: scale(0.8);
    transform-origin: bottom left;
  }

  .disco-ball {
    margin-left: 150px;
  }
}

@media (max-width: 760px) {
  .stage {
    min-height: auto;
    border-radius: 30px;
  }

  .artist--left {
    opacity: 0.5;
    transform: scale(0.58);
    left: -34px;
    bottom: -16px;
  }

  .bracelet--one,
  .bracelet--two,
  .disco-ball,
  .arrow-swoosh {
    opacity: 0.58;
  }

  .button-zone {
    position: relative;
    inset: auto;
    transform: none;
    width: min(100%, 680px);
    margin: 0 auto;
    padding: 34px 16px 54px;
  }

  .joy-button {
    border-radius: 30px;
  }

  .jobs-controls__grid {
    grid-template-columns: 1fr;
  }

  .jobs-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .jobs-more-button {
    width: 100%;
  }

  .games-controls__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .games-controls__badge {
    white-space: normal;
  }

  .games-gallery-controls {
    top: 8px;
  }

  .game-card__layout {
    gap: 14px;
  }

  .game-stage {
    min-height: 0;
  }

  .game-panels {
    grid-template-columns: 1fr;
  }

  .game-controls .concert-link {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .game-joystick {
    width: 112px;
    height: 112px;
    margin-top: 0;
  }

  .game-joystick__ring {
    inset: 12px;
  }

  .game-joystick__thumb {
    inset: calc(50% - 20px) auto auto calc(50% - 20px);
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 520px) {
  .scene {
    width: min(100% - 12px, 1360px);
    padding-top: 10px;
  }

  .stage {
    min-height: auto;
    border-radius: 24px;
  }

  .artist--left {
    display: none;
  }

  .star--two,
  .heart--two,
  .bracelet--two {
    display: none;
  }

  .meme-grid {
    grid-template-columns: 1fr;
  }

  .button-zone {
    padding: 22px 10px 32px;
  }

  .game-card {
    padding: 14px;
  }

  .game-card__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .mode-switch {
    width: 100%;
  }

  .mode-pill {
    width: 100%;
    justify-content: center;
  }

  .jobs-controls {
    width: 100%;
    padding: 16px 14px 18px;
  }

  .games-controls {
    width: 100%;
    padding: 16px 14px 18px;
  }

  .games-gallery-controls {
    width: 100%;
    padding: 14px;
  }

  .jobs-filter-pill {
    width: 100%;
    justify-content: center;
  }

  .games-filter-pill {
    width: 100%;
  }

  .games-gallery-pill {
    width: 100%;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox__image {
    max-height: calc(100vh - 92px);
  }

  .lightbox__actions {
    position: static;
  }

  .concert-card__facts {
    grid-template-columns: 1fr;
  }

  .job-card__facts {
    grid-template-columns: 1fr;
  }

  .concert-card__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-card__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-card__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .guessing-card {
    padding: 14px;
  }

  .guessing-card__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .guessing-card__badges {
    justify-content: flex-start;
  }

  .guessing-progress {
    grid-template-columns: 1fr;
  }

  .guessing-options {
    grid-template-columns: 1fr;
  }

  .guessing-option {
    min-height: 0;
  }

  .job-card__badge {
    white-space: normal;
  }

  .game-stats {
    grid-template-columns: 1fr 1fr;
  }

  .game-stat,
  .game-panel {
    padding: 14px 14px 16px;
    border-radius: 20px;
  }

  .game-stat__value {
    font-size: 1.1rem;
  }

  .game-controls {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .game-controls .concert-link {
    min-height: 40px;
    padding: 10px 6px;
    font-size: 0.78rem;
  }

  .game-joystick-wrap {
    gap: 8px;
  }

  .game-joystick {
    width: 82px;
    height: 82px;
  }

  .game-joystick__ring {
    inset: 9px;
  }

  .game-joystick__thumb {
    inset: calc(50% - 15px) auto auto calc(50% - 15px);
    width: 30px;
    height: 30px;
  }
}

@media (hover: none), (pointer: coarse), (max-width: 760px) {
  .game-card__layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .game-stage {
    grid-column: 1;
    grid-row: 2;
  }

  .game-side-rail {
    display: grid;
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    align-self: center;
    margin-right: 10px;
    z-index: 3;
    pointer-events: none;
  }

  .game-joystick-wrap {
    display: grid;
    pointer-events: auto;
    justify-items: end;
  }
}
