@font-face {
  font-family: "esamanru OTF";
  src: url("../font/esamanru Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "esamanru OTF";
  src: url("../font/esamanru Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "esamanru OTF";
  src: url("../font/esamanru Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #10131a;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --surface-muted: #f0f0f0;
  --ink: #2a2a2b;
  --ink-strong: #333333;
  --ink-soft: #8c8c8c;
  --ink-faint: #b7b7b7;
  --line: #d8d8d8;
  --brand: #0068b7;
  --danger: #ff0000;
  --dream: #df002e;
  --share: #8bc53f;
  --radius-phone: 32px;
  --radius-card: 12px;
  --shadow-panel: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.14);
  --font-stack: "esamanru OTF", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --device-width: 430px;
  --device-height: 932px;
  --figma-frame-width: 375px;
  --figma-grid-margin-base: 16px;
  --figma-grid-gutter-base: 8px;
  --figma-stage-width: min(100vw, var(--device-width));
  --figma-stage-scale: calc(var(--figma-stage-width) / var(--figma-frame-width));
  --figma-page-margin: calc(var(--figma-grid-margin-base) * var(--figma-stage-scale));
  --figma-page-gutter: calc(var(--figma-grid-gutter-base) * var(--figma-stage-scale));
  --figma-content-width: calc(var(--figma-stage-width) - (var(--figma-page-margin) * 2));
  --mockup-stage-width: 100vw;
  --mockup-stage-height: 100dvh;
  --mockup-screen-height: max(var(--device-height), 100dvh);
  --figma-package-card-gap: calc(7px * var(--figma-stage-scale));
  --figma-cta-width: calc(285px * var(--figma-stage-scale));
  --figma-modal-width: calc(285px * var(--figma-stage-scale));
  --intro-promo-bg-height: calc(var(--figma-stage-width) * 4630 / 750);
  --figma-cta-side-gap: calc((var(--figma-stage-width) - var(--figma-cta-width)) / 2);
  --safe-top: env(safe-area-inset-top, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #0d1016;
  color: var(--ink);
  font-family: var(--font-stack);
  font-synthesis: none;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

button,
input,
textarea {
  font: inherit;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
dt,
dd,
figcaption,
blockquote,
label,
a,
span {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

button:disabled,
input:disabled,
textarea:disabled {
  cursor: default;
}

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

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

.mockup-shell {
  display: grid;
  min-height: 100dvh;
  justify-content: center;
  padding: 0;
}

.desktop-sitemap,
.desktop-preview {
  display: none;
}

.phone-stage {
  position: relative;
  width: var(--mockup-stage-width);
  max-width: 100%;
  height: var(--mockup-stage-height);
  min-height: var(--mockup-stage-height);
  overflow: auto;
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  scrollbar-width: none;
}

.phone-stage::-webkit-scrollbar {
  display: none;
}

.screen {
  position: relative;
  min-height: var(--mockup-screen-height);
  overflow: hidden;
}

.screen--light {
  background: var(--surface);
}

.screen--scroll {
  overflow: visible;
}

.screen[data-parallax] {
  --parallax-offset: 0px;
}

.screen__body {
  position: relative;
  padding-top: calc(var(--safe-top) + 86px);
  padding-right: var(--figma-page-margin);
  padding-bottom: 120px;
  padding-left: var(--figma-page-margin);
}

.screen__footer {
  position: sticky;
  bottom: 0;
  z-index: 4;
  padding: 16px var(--figma-cta-side-gap) 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 24%, #fff 60%);
}

.app-loader {
  position: absolute;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.app-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.app-loader__indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: min(168px, calc(100% - 72px));
}

.app-loader__bar {
  position: relative;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 104, 183, 0.14);
}

.app-loader__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0068b7 0%, #2d9ee8 100%);
  transform-origin: left center;
  transform: scaleX(var(--loader-progress, 0.08));
  transition: transform 160ms ease;
}

.app-loader__bar-fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  bottom: 0;
  width: 28px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
  animation: loader-sheen 900ms linear infinite;
}

.app-loader__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.app-loader__dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 104, 183, 0.22);
  animation: loader-dot 840ms ease-in-out infinite;
}

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

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

@keyframes loader-dot {
  0%,
  100% {
    transform: translateY(0) scale(0.84);
    background: rgba(0, 104, 183, 0.22);
  }

  50% {
    transform: translateY(-4px) scale(1);
    background: rgba(0, 104, 183, 0.88);
  }
}

@keyframes loader-sheen {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-loader,
  .app-loader__bar-fill,
  .app-loader__dots span,
  .app-loader__bar-fill::after {
    animation: none !important;
    transition: none !important;
  }
}

.status-bar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 0;
  color: #010101;
  font-size: 17px;
  font-weight: 600;
}

.status-bar.is-dark {
  color: #ffffff;
}

.status-bar__time {
  position: relative;
  z-index: 2;
}

.status-bar__notch {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 164px;
  height: 32px;
  transform: translateX(-50%);
  border-radius: 0 0 24px 24px;
  background: #000;
}

.status-bar__signals {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.status-bar__signals span {
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.status-bar__signals span:nth-child(1) { width: 4px; height: 7px; }
.status-bar__signals span:nth-child(2) { width: 4px; height: 9px; }
.status-bar__signals span:nth-child(3) { width: 4px; height: 11px; }
.status-bar__signals span:nth-child(4) {
  width: 18px;
  height: 10px;
  background: transparent;
  border: 1.6px solid currentColor;
}

.topbar,
.menu-topbar {
  position: absolute;
  top: calc(var(--safe-top) + 22px);
  left: 50%;
  right: auto;
  z-index: 9;
  display: grid;
  grid-template-columns: 24px 132px 24px;
  align-items: center;
  gap: 82px;
  width: 344px;
  transform: translateX(-50%);
  color: var(--ink);
}

.topbar.is-dark {
  color: #ffffff;
}

.topbar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.topbar__slot {
  display: block;
  width: 24px;
  height: 24px;
}

.topbar__icon {
  width: 24px;
  height: 24px;
}

.topbar:not(.is-dark) .topbar__icon {
  filter: brightness(0) saturate(100%);
}

.topbar__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.topbar__brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 128px;
}

.topbar__brand-image {
  display: block;
  width: 100%;
  height: 20px;
  object-fit: contain;
}

.topbar__brand--light,
.topbar__brand-lockup--light {
  width: 111px;
  min-width: 111px;
  height: 20px;
}

.topbar__brand--dark,
.topbar__brand-lockup--dark {
  width: 128px;
  min-width: 128px;
  height: 20px;
}

.topbar__brand-lockup--split {
  gap: 4px;
  width: auto;
}

.topbar__brand-part {
  display: block;
  flex: none;
}

.topbar__brand-part--left {
  width: 53px;
  height: 16px;
}

.topbar__brand-part--x {
  width: 12px;
  height: 12px;
}

.topbar__brand-part--right {
  width: 55px;
  height: 20px;
}

.topbar__brand-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.page-eyebrow {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3125;
  text-align: center;
}

.page-title {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.page-title--brand {
  color: var(--brand);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
  box-shadow: none;
}

.cta--muted {
  background: #efefef;
  color: var(--ink-faint);
}

.cta:disabled {
  pointer-events: none;
}

.cta--kakao {
  background: #fee500;
  color: rgba(0, 0, 0, 0.86);
}

.cta--naver {
  background: #03c75a;
  color: #ffffff;
}

.cta--social {
  position: relative;
  min-height: 52px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
}

.cta__image {
  display: block;
  width: 100%;
  height: auto;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0 30px;
}

.pager span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.pager .is-active {
  background: var(--dream);
}

.hero-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.hero-copy--light {
  color: #fff;
}

.hero-copy__eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
}

.hero-copy__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.hero-copy__caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.43;
}

.screen--landing {
  background: #0c2344;
}

.screen--landing .topbar {
  position: relative;
  z-index: 3;
}

.landing__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.landing__background img {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 121.867%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: translateX(-50%);
}

.landing__title {
  position: absolute;
  top: min(14.7%, 137px);
  left: 50%;
  width: min(89.6%, 385px);
  max-width: calc(100% - 40px);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.landing__title img {
  width: 100%;
  height: auto;
}

.landing__hero {
  position: absolute;
  top: min(14.7%, 137px);
  left: 50%;
  width: min(91.73%, 394px);
  max-width: calc(100% - 20px);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.landing__hero img {
  width: 100%;
  height: auto;
}

.landing__actions {
  position: absolute;
  left: 50%;
  bottom: min(11.08%, 103px);
  width: min(76%, 327px);
  transform: translateX(-50%);
  display: grid;
  gap: 8px;
  z-index: 4;
}

.agreements {
  padding-bottom: 44px;
}

.agreements__title {
  margin-bottom: 16px;
}

.agreements__lead {
  margin: 0 0 24px;
  color: var(--ink-strong);
  font-size: 12px;
  line-height: 1.5;
}

.legal-block {
  padding: 14px 0;
  border-top: 1px solid #e4e4e4;
}

.legal-block h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.43;
}

.legal-block p {
  margin: 0 0 6px;
  color: var(--ink-strong);
  font-size: 12px;
  line-height: 1.45;
}

.consent-card {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px 16px;
  border-radius: 8px;
  background: #f7f7f7;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.agreements__warning {
  margin: 18px 0 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.member-form {
  padding-top: 160px;
}

.form-stack {
  display: grid;
  gap: 24px;
  margin-top: 72px;
}

.line-field {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-soft);
  color: var(--ink-faint);
  font-size: 16px;
  line-height: 1.3125;
}

.line-field__input {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3125;
}

.line-field__input::placeholder {
  color: var(--ink-faint);
}

.line-field--split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}

.line-field--blank {
  min-height: 32px;
}

.gender-options {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--ink);
  font-size: 16px;
}

.gender-options label {
  display: flex;
  gap: 6px;
  align-items: center;
}

.address-field {
  position: relative;
}

.search-button {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 109px;
  height: 37px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

.screen--package {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 4px, transparent 4px) 0 0 / 28px 28px,
    var(--dream);
  color: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 28px;
}

.package-card {
  min-height: 360px;
  padding: 28px 12px 18px;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}

.package-card--dream {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 4px, transparent 4px) 0 0 / 34px 34px,
    #ef2030;
}

.package-card--share {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 4px, transparent 4px) 0 0 / 34px 34px,
    #8bc53f;
}

.package-card__title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.package-card__pack-image {
  width: min(100%, 190px);
  margin: auto auto 22px;
}

.package-card__caption {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.home {
  color: #fff;
}

.home--dream {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px) 0 0 / 56px 56px,
    var(--dream);
}

.home--share {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px) 0 0 / 56px 56px,
    var(--share);
}

.home__hero {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 138px 24px 0;
}

.home__product {
  width: min(100%, 248px);
}

.home__team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 16px;
  font-weight: 700;
}

.home__sheet {
  position: absolute;
  inset: auto 0 0 0;
  min-height: 360px;
  padding: 80px 16px 30px;
  border-radius: 32px 32px 0 0;
  background: #fff;
  color: var(--ink);
}

.home__metric {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.home__metric strong {
  color: var(--brand);
}

.intro {
  color: #fff;
}

.intro__background {
  position: absolute;
  inset: 0;
  background-position: center calc(50% + var(--parallax-offset, 0px));
  background-repeat: no-repeat;
  background-size: cover;
  will-change: background-position;
}

.intro__background--promo-long {
  inset: 0;
  width: 100%;
  height: 100%;
  background: #b8b8b8;
  overflow: hidden;
  will-change: auto;
}

.intro__background--promo-long img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.intro__hero {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 137px 20px 0;
  text-align: center;
}

.intro__hero img {
  display: block;
  width: 334px;
  margin: 0 auto;
}

.intro__stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  width: 285px;
  margin: 40px auto 0;
}

.glass-card {
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

.glass-card__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.glass-card__body p,
.glass-card__list li {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.43;
}

.glass-card__list {
  margin: 0;
  padding-left: 18px;
}

.glass-card__note {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.43;
  text-align: center;
}

.points-table {
  margin-top: 20px;
}

.points-table__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.points-table__caption {
  margin: 0;
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
}

.points-table__note {
  margin: 2px 0 10px;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.points-table__head,
.points-table__row {
  display: grid;
  grid-template-columns: 1fr 92px;
}

.points-table__head {
  background: var(--brand);
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.points-table__head span,
.points-table__row span,
.points-table__row strong {
  padding: 6px 8px;
}

.points-table__head span:last-child,
.points-table__row strong {
  text-align: center;
}

.points-table__row {
  background: #fff;
  color: var(--ink-strong);
  font-size: 12px;
  border-bottom: 1px solid var(--ink-soft);
}

.points-table__row strong {
  color: var(--brand);
  font-weight: 700;
}

.intro__notices {
  position: relative;
  z-index: 2;
  width: 343px;
  margin: 36px auto 0;
  padding: 32px 0 0;
  color: var(--ink-strong);
  background: #fff;
}

.intro__notices h2 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.notice-block + .notice-block {
  margin-top: 24px;
}

.notice-block h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.notice-block ul {
  margin: 0;
  padding-left: 18px;
}

.notice-block li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.43;
}

.intro__notices-tail {
  position: relative;
  z-index: 2;
  width: 375px;
  max-width: 100%;
  margin: 0 auto 0;
}

.intro__notices-tail img {
  display: block;
  width: 100%;
  height: auto;
}

.intro--promo .intro__background {
  background-position: top center;
}

.intro--promo .intro__hero,
.intro--promo .intro__stack,
.intro--promo .pager {
  position: relative;
  z-index: 2;
}

.intro--promo .intro__stack {
  width: var(--figma-cta-width);
  max-width: var(--figma-cta-width);
  margin-top: 24px;
  gap: 0;
  overflow: hidden;
}

.intro--promo {
  min-height: calc(var(--intro-promo-bg-height) + 240px);
}

.intro__promo-content {
  display: block;
  width: 103.5%;
  height: auto;
  max-width: none;
  margin-left: -1.75%;
}

.intro__promo-spacer {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 240px;
}

.intro--howto .intro__hero {
  padding: 136px 16px 0;
}

.intro--howto .intro__hero img {
  width: min(343px, calc(100vw - 32px));
}

.intro--howto .intro__stack {
  width: var(--figma-cta-width);
  max-width: var(--figma-cta-width);
  margin-top: 24px;
  gap: 0;
  padding-bottom: 30px;
  overflow: hidden;
}

.intro__howto-content {
  display: block;
  width: 103.5%;
  height: auto;
  max-width: none;
  margin-left: -1.75%;
}

.intro--howto .glass-card {
  padding: 22px 18px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(164, 179, 199, 0.68) 0%, rgba(140, 153, 170, 0.58) 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
}

.intro--howto .glass-card__title {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.intro--howto .glass-card__body p,
.intro--howto .glass-card__list li {
  margin: 0 0 4px;
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.intro--howto .glass-card__list {
  padding-left: 18px;
}

.intro--howto .points-table {
  margin-top: 16px;
}

.intro--howto .points-table__title {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}

.intro--howto .points-table__caption {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.intro--howto .points-table__note {
  margin: 2px 0 8px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.intro--howto .points-table__head,
.intro--howto .points-table__row {
  grid-template-columns: 1fr 88px;
}

.intro--howto .points-table__head {
  border-radius: 8px 8px 0 0;
  background: #0b78cf;
  font-size: 11px;
}

.intro--howto .points-table__head span,
.intro--howto .points-table__row span,
.intro--howto .points-table__row strong {
  padding: 5px 8px;
}

.intro--howto .points-table__row {
  font-size: 10px;
  line-height: 1.35;
}

.intro--howto .points-table__row strong {
  font-size: 10px;
  line-height: 1.35;
}

.menu {
  padding-top: 148px;
}

.menu-screen__close {
  position: absolute;
  top: 70px;
  right: 16px;
  z-index: 9;
}

.menu__profile {
  display: grid;
  gap: 16px;
}

.menu__profile h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.menu__profile p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.35;
}

.rank-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 104, 183, 0.1);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.rank-link .topbar__icon {
  width: 20px;
  height: 20px;
}

.menu__list {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.menu__list--plain {
  gap: 0;
  margin-top: 58px;
}

.menu-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.menu-card.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(0, 104, 183, 0.15);
}

.menu-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.menu-card span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.menu-card__chevron {
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  border-bottom: 1px solid var(--ink);
}

.menu-row strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3125;
}

.menu-row__chevron {
  font-size: 26px;
  line-height: 1;
}

.menu-row.is-active strong {
  color: var(--brand);
}

.register-screen__close {
  position: absolute;
  top: calc(var(--safe-top) + 70px);
  right: 16px;
  z-index: 9;
  color: var(--ink);
  width: 24px;
  height: 24px;
}

.register-screen__body {
  width: 285px;
  margin: 0 auto;
  padding: calc(var(--safe-top) + 148px) 0 0;
}

.register-screen__body .page-title--brand {
  width: 285px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
  word-break: keep-all;
}

.register-input {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: 24px;
  border: 2px solid var(--ink-faint);
  border-radius: 8px;
  color: var(--ink-faint);
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  transition: border-color 180ms ease, color 180ms ease;
}

.register-input.is-filled {
  border-color: var(--brand);
  color: var(--ink);
}

.register-input:focus-within {
  border-color: var(--ink);
  color: var(--ink);
}

.register-input__field {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.register-input__field::placeholder {
  color: inherit;
}

.register-screen__body .cta {
  margin-top: 12px;
  min-height: 52px;
  height: 52px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.register-guide {
  margin-top: 17px;
  padding: 18px 32px 21px;
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 17px;
  letter-spacing: -0.24px;
  word-break: keep-all;
}

.register-guide__title {
  margin: 0 0 5px;
  font-weight: 700;
}

.register-guide p {
  margin: 0 0 4px;
  padding-left: 8px;
  text-indent: -8px;
}

.collection-screen {
  color: #fff;
  background: linear-gradient(180deg, #0081d8 0%, #0f65be 36%, #0f65be 54%, #fff 54%);
}

.collection-screen__pattern {
  position: absolute;
  inset: 0 0 auto;
  height: 452px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0 6px, transparent 6px) 0 0 / 38px 38px,
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.04) 100%);
  opacity: 0.8;
}

.collection-screen__hero {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 148px 16px 0;
}

.collection-screen__hero h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.collection-screen__hero p {
  margin: 8px 0 0;
  font-size: 21px;
  line-height: 1.3;
}

.collection-screen__hero strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 57px;
  height: 29px;
  margin: 0 4px;
  border-radius: 8px;
  background: #fff45a;
  color: var(--ink);
}

.team-pill {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 8px;
  background: #ff2030;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.collection-summary {
  position: relative;
  z-index: 2;
  margin: 28px 16px 0;
  padding: 24px 24px 18px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.collection-summary__metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
}

.collection-summary__metric strong {
  font-size: 18px;
}

.collection-summary__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.collection-summary__stats div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f0f0f0;
  font-size: 14px;
  font-weight: 700;
}

.collection-summary__stats .is-active {
  background: var(--brand);
  color: #fff;
}

.team-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 14px;
  padding: 0 16px;
}

.team-tab {
  min-height: 29px;
  border-radius: 8px 8px 0 0;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.team-tab.is-active {
  color: var(--brand);
}

.collection-sheet {
  position: relative;
  padding: 18px 15px 24px;
  border-radius: 0 0 32px 32px;
  background: #fff;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 8px;
}

.player-card {
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #0d70d6;
  background: #fff;
}

.player-card.is-empty {
  opacity: 0.3;
}

.player-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.play-screen {
  color: #fff;
}

.play-screen__backdrop {
  position: absolute;
  inset: 0;
}

.play-screen__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.play-screen__title {
  position: absolute;
  top: 136px;
  left: 50%;
  width: 300px;
  transform: translateX(-50%);
}

.play-screen__actions {
  position: absolute;
  top: 290px;
  left: 26px;
  right: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.play-screen__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.play-screen__sheet {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 26px;
  padding: 24px 18px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.play-screen__sheet p {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.play-screen__sheet strong {
  color: var(--brand);
}

.panel-button {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f3f5f8;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.predict,
.lineup {
  padding-top: 148px;
}

.predict-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.predict-match__team {
  display: grid;
  place-items: center;
  min-height: 172px;
  border: 2px solid var(--brand);
  border-radius: 18px;
  background: #fff;
}

.predict-match__team strong {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.predict-match__team span {
  margin-top: 8px;
  color: var(--brand);
  font-size: 18px;
  font-weight: 800;
}

.predict-match__team.is-selected {
  background: rgba(0, 104, 183, 0.08);
}

.predict-match__team.is-disabled {
  opacity: 0.4;
}

.predict-match__vs {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 800;
}

.predict-sheet {
  margin-top: 24px;
  padding: 20px;
  border-radius: 20px;
  background: #f7f8fb;
}

.predict-sheet__label {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.predict-sheet__value {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.lineup-board {
  position: relative;
  height: 343px;
  margin-top: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #94bf8a 0%, #6aa46c 100%);
  box-shadow: inset 0 0 0 16px #7eb07f;
}

.lineup-board__diamond {
  position: absolute;
  top: 74px;
  left: 50%;
  width: 172px;
  height: 172px;
  transform: translateX(-50%) rotate(45deg);
  border: 4px solid rgba(255, 255, 255, 0.92);
}

.lineup-board--field {
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lineup-board__field {
  position: absolute;
  inset: 31px 0 0;
  border-radius: 32px 32px 0 0;
  background:
    radial-gradient(circle at center, #f7d28d 0 24%, transparent 24%),
    linear-gradient(45deg, transparent 47%, #f6f6f6 47%, #f6f6f6 53%, transparent 53%) center/82% 82% no-repeat,
    repeating-linear-gradient(90deg, #499c24 0 22px, #3c891d 22px 44px);
  clip-path: polygon(50% 0%, 94% 18%, 100% 58%, 77% 80%, 50% 100%, 23% 80%, 0% 58%, 6% 18%);
}

.lineup-chip {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 86px;
  border-radius: 4px;
  border: 1px solid #d8d8d8;
  background: linear-gradient(180deg, #fff 0%, #fbf6ef 100%);
  color: var(--brand);
  font-size: 24px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.lineup-chip.is-selected {
  border-color: var(--brand);
  background: linear-gradient(180deg, #fff 0%, #fbf6ef 100%);
  color: var(--brand);
}

.lineup-chip--1 { top: 0; left: 160px; }
.lineup-chip--2 { top: 146px; left: 160px; }
.lineup-chip--3 { top: 47px; left: 18px; }
.lineup-chip--4 { top: 82px; left: 97px; }
.lineup-chip--5 { top: 82px; right: 97px; }
.lineup-chip--6 { top: 47px; right: 18px; }
.lineup-chip--7 { top: 194px; left: 19px; }
.lineup-chip--8 { top: 228px; left: 160px; }
.lineup-chip--9 { top: 194px; right: 18px; }

.lineup-bench {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.lineup-bench__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  background: #eff3f8;
  color: var(--ink);
  font-weight: 700;
}

.lineup-bench__card.is-picked {
  background: var(--brand);
  color: #fff;
}

.lineup-tray {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.lineup-tray::-webkit-scrollbar {
  display: none;
}

.lineup-tray__card {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 86px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #cfcfcf;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-tray__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-tray__card span {
  position: absolute;
  inset: auto 0 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.lineup-tray__card.is-picked {
  outline: 2px solid var(--brand);
}

.lineup-team-logo {
  position: absolute;
  right: 16px;
  bottom: 18px;
  color: #b60025;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.ranking {
  color: #fff;
  background: linear-gradient(180deg, #151a4d 0%, #3443b5 46%, #f5f5f8 46%, #f5f5f8 100%);
}

.ranking__hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: end;
  padding: 164px 18px 0;
}

.ranking-podium {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.ranking-podium img {
  width: 88px;
}

.ranking-podium strong {
  font-size: 22px;
  line-height: 1.1;
}

.ranking-podium span {
  font-size: 18px;
  font-weight: 800;
}

.ranking-podium em {
  font-size: 12px;
  font-style: normal;
}

.ranking__sheet {
  margin: 30px 16px 0;
  padding: 18px 16px 24px;
  border-radius: 24px 24px 0 0;
  background: #fff;
  color: var(--ink);
}

.ranking-row {
  display: grid;
  grid-template-columns: 32px 52px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #ececec;
}

.ranking-row__rank {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand);
}

.ranking-row__team {
  font-size: 12px;
  color: var(--ink-soft);
}

.ranking-row__name {
  font-size: 16px;
  font-weight: 700;
}

.ranking-row__points {
  font-size: 15px;
  color: var(--ink-strong);
}

.community-screen {
  padding-top: 148px;
}

.community-screen__lead {
  margin: 16px 0 0;
  color: var(--ink-strong);
  font-size: 16px;
  line-height: 1.3125;
  text-align: center;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.community-tile,
.community-card {
  padding: 8px;
  border-radius: 10px;
  border: 1.5px solid var(--brand);
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.community-card--detail {
  margin-top: 24px;
  padding: 12px;
}

.community-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.community-card__meta strong,
.community-tile strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3125;
}

.community-card__meta span,
.community-tile__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 24px;
  margin-top: 6px;
  padding: 0 8px;
  border-radius: 8px;
  background: #e3e3e3;
  color: var(--ink-soft);
  font-size: 12px;
}

.community-card__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}

.community-card__photo,
.community-tile__photo {
  overflow: hidden;
  height: 118px;
  margin-top: 8px;
  border-radius: 8px;
  background: rgba(0, 104, 183, 0.35);
}

.community-card--detail .community-card__photo {
  height: 270px;
  margin-top: 22px;
}

.community-card__photo img,
.community-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.community-card__photo-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--brand);
  border-radius: 6px;
  position: relative;
}

.community-card__photo-icon::before,
.community-card__photo-icon::after {
  content: "";
  position: absolute;
}

.community-card__photo-icon::before {
  top: 7px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.community-card__photo-icon::after {
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 8px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: skewX(-35deg);
}

.community-tile__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.community-card__heart {
  position: relative;
  width: 20px;
  height: 18px;
}

.community-card__heart::before,
.community-card__heart::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 10px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 10px 10px 0 0;
  transform: rotate(-45deg);
  transform-origin: bottom right;
}

.community-card__heart::before {
  left: 3px;
}

.community-card__heart::after {
  left: 8px;
  transform: rotate(45deg);
  transform-origin: bottom left;
}

.community-tile__button {
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.community-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.community-card__footer p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.43;
}

.community-card__like {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
  font-size: 14px;
}

.community-screen__notice {
  margin: -12px 0 24px;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
}

.community-me__back {
  position: absolute;
  top: 73px;
  left: 16px;
  z-index: 9;
  color: var(--ink);
}

.community-me__body {
  padding-top: 148px;
}

.community-me__field {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.community-me__field strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3125;
}

.community-me__field span {
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-soft);
  color: var(--ink-faint);
  font-size: 16px;
}

.community-me__input {
  width: 100%;
  margin-top: 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3125;
}

.community-me__input::placeholder {
  color: var(--ink-faint);
}

.community-me__editor {
  margin-top: 24px;
}

.community-me__editor-box {
  min-height: 260px;
  padding: 12px 8px;
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--ink-faint);
  font-size: 16px;
  line-height: 1.3125;
}

.community-me__editor-box--input {
  width: 100%;
  border: 0;
  outline: 0;
  resize: none;
}

.community-me__editor-box--input::placeholder {
  color: var(--ink-faint);
}

.community-me__editor p {
  margin: 6px 4px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: right;
}

.community-me__upload {
  position: relative;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-top: 18px;
  border: 2px solid var(--ink-faint);
  border-radius: 8px;
  background: #fff;
}

.community-me__upload.is-filled {
  background: #dcebf7;
}

.community-me__upload-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.community-me__upload-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink-faint);
  border-radius: 6px;
}

.community-me__upload-icon::before,
.community-me__upload-icon::after {
  content: "";
  position: absolute;
}

.community-me__upload-icon::before {
  top: 5px;
  right: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-faint);
}

.community-me__upload-icon::after {
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 6px;
  border-left: 2px solid var(--ink-faint);
  border-bottom: 2px solid var(--ink-faint);
  transform: skewX(-35deg);
}

.community-me__upload-action {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #f0f0f0;
  box-shadow: 0 0 0 1px #cfcfcf inset;
}

.community-me__upload-action::before,
.community-me__upload-action::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ink-faint);
  transform: translate(-50%, -50%);
}

.community-me__upload-action::before {
  width: 10px;
  height: 2px;
}

.community-me__upload-action::after {
  width: 2px;
  height: 10px;
}

.community-me__upload-action.is-remove::after {
  display: none;
}

.community-me__notice {
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.33;
  text-align: center;
}

.community-action-sheet {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 16;
  padding-top: 12px;
  border-radius: 18px 18px 0 0;
  background: rgba(248, 248, 248, 0.98);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.16);
}

.community-action-sheet button {
  display: block;
  width: 100%;
  min-height: 60px;
  border-top: 1px solid #dfdfdf;
  font-size: 16px;
  font-weight: 700;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 15;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.46);
}

.modal-backdrop.is-dark {
  background: rgba(0, 0, 0, 0.52);
}

.modal-card {
  width: min(var(--figma-modal-width), 100%);
  max-width: var(--figma-modal-width);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #f3f4f6;
  color: var(--ink);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal-card--simple {
  text-align: center;
}

.modal-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 12px;
  padding: 36px 24px 20px;
  background: #fff;
}

.modal-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
}

.modal-card__caption {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
  text-align: center;
}

.modal-card__footer {
  width: 100%;
  flex: 0 0 auto;
}

.modal-card__footer--dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: #f3f4f6;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.modal-card__footer--single {
  background: var(--brand);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.modal-card__button,
.modal-card__single {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin: 0;
  padding: 0 16px;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.modal-card__button {
  border-radius: 0;
}

.modal-card__button:not(.is-primary) {
  background: transparent;
  color: var(--ink);
}

.modal-card__button.is-primary {
  background: var(--brand);
  color: #fff;
}

.modal-card__single {
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.toast {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 20;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #f7f7f7;
  font-size: 16px;
  line-height: 1.3125;
  white-space: nowrap;
}

.toast--inline {
  position: static;
  transform: none;
  margin-top: 18px;
  text-align: center;
}

.toast--bottom {
  bottom: 150px;
}

.line-field__input,
.community-me__text-input,
.community-me__textarea,
.register-input__field {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.line-field__input {
  display: block;
  margin-top: 8px;
  padding: 0;
  font-size: 16px;
  line-height: 1.3125;
}

.line-field__input::placeholder,
.community-me__text-input::placeholder,
.community-me__textarea::placeholder,
.register-input__field::placeholder {
  color: var(--ink-faint);
}

.package-card {
  border: 2px solid transparent;
  cursor: pointer;
}

.package-card.is-selected {
  border-color: #fff45a;
  box-shadow: 0 0 0 2px rgba(255, 244, 90, 0.3);
}

.menu__list {
  gap: 20px;
  margin-top: 44px;
}

.menu-card {
  grid-template-columns: 1fr 24px;
  padding: 12px 8px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.menu-card.is-active {
  border-color: transparent;
  border-bottom-color: var(--brand);
  box-shadow: none;
}

.menu-card strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}

.menu-card__chevron {
  justify-self: end;
  font-size: 24px;
  line-height: 1;
}

.register-input {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 16px;
}

.register-input__field {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.play-screen__title {
  top: 137px;
  width: 336px;
}

.play-screen__actions {
  top: 334px;
  left: 16px;
  right: 16px;
  gap: 8px;
}

.play-screen__card {
  min-height: 114px;
  border-radius: 8px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.04em;
}

.play-screen__sheet {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 28px;
  border-radius: 32px 32px 0 0;
  background: #fff;
}

.play-screen__sheet p {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}

.panel-button {
  margin-top: 8px;
  padding: 15px 14px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}

.predict-screen {
  padding-bottom: 160px;
}

.predict-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.predict-controls__note {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  line-height: 16px;
}

.predict-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-size: 12px;
  line-height: 16px;
}

.predict-toggle input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.predict-board {
  margin-top: 8px;
  padding: 10px 8px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #3f3f3f 0%, #555 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.predict-match-card + .predict-match-card {
  margin-top: 10px;
}

.predict-match-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

.predict-match-card__head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: #7db8df;
  font-size: 12px;
  font-weight: 700;
}

.predict-match-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-radius: 8px;
  overflow: hidden;
  background: #c0c0c0;
}

.predict-team {
  min-height: 46px;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.predict-team.is-selected {
  background: #dff1ff;
  color: var(--brand);
}

.predict-team.is-disabled,
.predict-team:disabled {
  background: #737373;
  color: #fff;
}

.predict-match-card__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 6px;
  border-radius: 8px;
  background: #737373;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.predict-sheet {
  margin-top: 14px;
  padding: 0;
  background: transparent;
  text-align: center;
}

.predict-sheet__label {
  color: var(--ink-soft);
}

.predict-sheet__value {
  font-size: 18px;
}

.predict-sheet__footnote {
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 16px;
}

.lineup {
  padding-bottom: 160px;
}

.lineup-board {
  height: 370px;
  margin-top: 18px;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 49%, #f7d999 0 78px, transparent 79px),
    linear-gradient(135deg, transparent 0 22%, #7a4f22 22% 24%, transparent 24%),
    linear-gradient(225deg, transparent 0 22%, #7a4f22 22% 24%, transparent 24%),
    linear-gradient(315deg, transparent 0 22%, #7a4f22 22% 24%, transparent 24%),
    linear-gradient(45deg, transparent 0 22%, #7a4f22 22% 24%, transparent 24%),
    linear-gradient(90deg, #3c9115 0%, #42a014 100%);
  box-shadow: none;
  overflow: visible;
}

.lineup-board__diamond {
  top: 71px;
  width: 170px;
  height: 170px;
  border: 4px solid #f4efe7;
  background: transparent;
}

.lineup-board__logo {
  position: absolute;
  right: 14px;
  bottom: 22px;
  color: #d91c26;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lineup-chip {
  width: 54px;
  height: 86px;
  padding: 10px 4px 18px;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
  background: #fff;
  color: var(--brand);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.lineup-chip span {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
}

.lineup-chip small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.2;
}

.lineup-chip.is-selected {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 0 0 2px rgba(0, 104, 183, 0.22), 0 4px 6px rgba(0, 0, 0, 0.25);
}

.lineup-chip--lf { top: 70px; left: 18px; }
.lineup-chip--cf { top: 22px; left: 160px; }
.lineup-chip--rf { top: 70px; right: 18px; }
.lineup-chip--ss { top: 106px; left: 92px; }
.lineup-chip--2b { top: 106px; right: 92px; }
.lineup-chip--3b { top: 206px; left: 20px; }
.lineup-chip--p { top: 168px; left: 160px; }
.lineup-chip--1b { top: 206px; right: 20px; }
.lineup-chip--dh { top: 278px; left: 0; }
.lineup-chip--c { top: 280px; left: 160px; }

.lineup-bench {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 8px;
  overflow-x: auto;
}

.lineup-bench__card {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  min-height: 86px;
  padding: 0;
  border-radius: 4px;
  background: #fff;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-bench__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-bench__card span {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.lineup-bench__card.is-picked {
  box-shadow: 0 0 0 2px rgba(0, 104, 183, 0.28), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.ranking-row.is-current {
  background: rgba(0, 104, 183, 0.06);
}

.community-card__heart,
.community-card__like,
.community-tile__meta button {
  padding: 0;
  border: 0;
  background: none;
}

.community-card__heart.is-active::before,
.community-card__heart.is-active::after {
  border-color: var(--danger);
}

.community-me__body {
  padding-bottom: 150px;
}

.community-me__text-input {
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-soft);
  font-size: 16px;
  line-height: 21px;
}

.community-me__editor {
  margin-top: 25px;
}

.community-me__textarea {
  width: 100%;
  min-height: 260px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--ink);
  resize: none;
}

.community-me__upload {
  overflow: hidden;
  cursor: pointer;
}

.community-me__upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-me__notice {
  margin-top: 12px;
}

.toast--global {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
}

.toast--error {
  background: rgba(255, 0, 0, 0.88);
}

.cta.is-disabled,
.cta:disabled {
  background: #d8d8d8;
  color: #8c8c8c;
}

.line-field__grow {
  display: grid;
  gap: 8px;
}

.line-field__input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3125;
}

.line-field__input::placeholder {
  color: var(--ink-faint);
}

.package-card {
  cursor: pointer;
  border: 2px solid transparent;
}

.package-card.is-selected {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.home__actions {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.cta--outline {
  background: #f0f0f0;
  color: var(--ink);
}

.menu__profile p {
  color: var(--danger);
}

.rank-link {
  padding: 8px 12px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.menu__list {
  gap: 20px;
  margin-top: 67px;
}

.menu-card {
  padding: 0 8px 12px;
  border: 0;
  border-bottom: 1px solid #2a2a2b;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu-card.is-active {
  border-color: #2a2a2b;
  box-shadow: none;
}

.menu-card strong {
  font-size: 16px;
  font-weight: 500;
}

.menu-card__chevron {
  font-size: 18px;
  transform: rotate(180deg);
}

.register-input {
  padding: 0 16px;
}

.register-input__field {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.register-input__field::placeholder {
  color: var(--ink-faint);
}

.play-screen__choices {
  position: absolute;
  top: 301px;
  left: 16px;
  right: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.play-choice {
  display: grid;
  place-items: center;
  min-height: 146px;
  padding: 20px 16px;
  border-radius: 8px;
  background: #fff;
  color: #2a2a2b;
  text-align: center;
}

.play-choice span,
.play-choice strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.play-screen__sheet {
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 371px;
  padding: 32px 16px 24px;
  border-radius: 32px 32px 0 0;
  background: #fff;
}

.play-screen__sheet p {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: -0.04em;
}

.play-screen__links {
  display: grid;
  gap: 8px;
  width: 285px;
  margin: 26px auto 0;
}

.play-screen__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.predict,
.lineup {
  padding-top: 148px;
  padding-bottom: 120px;
}

.predict-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.predict-meta__note {
  margin: 0;
  color: var(--brand);
  font-size: 12px;
  line-height: 16px;
}

.predict-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-size: 12px;
  line-height: 16px;
}

.predict-toggle input {
  width: 24px;
  height: 24px;
  margin: 0;
}

.predict-board {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #2f2f2f 0%, #515151 100%);
}

.predict-board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 8px;
  color: #fff;
}

.predict-board__header strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.predict-board__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.predict-list {
  padding: 0 8px 14px;
}

.predict-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin-top: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.predict-option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-right: 1px solid #d8d8d8;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.predict-option:last-child {
  border-right: 0;
}

.predict-option.is-picked {
  background: #0068b7;
  color: #fff;
}

.predict-row.is-active {
  box-shadow: 0 0 0 2px rgba(0, 104, 183, 0.25) inset;
}

.predict-locked {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.predict-sheet {
  margin-top: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.predict-sheet__label {
  color: var(--ink-soft);
}

.predict-sheet__value {
  font-size: 16px;
}

.predict-footer-note {
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.lineup-field {
  position: relative;
  height: 360px;
  margin-top: 16px;
}

.lineup-field__diamond {
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 18px;
  height: 306px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12) 0 13%, transparent 13% 26%, rgba(255,255,255,0.12) 26% 39%, transparent 39% 52%, rgba(255,255,255,0.12) 52% 65%, transparent 65% 78%, rgba(255,255,255,0.12) 78% 91%, transparent 91%),
    radial-gradient(circle at 50% 56%, #ffd693 0 60px, transparent 61px),
    linear-gradient(135deg, transparent 22%, #6d4d2a 22% 24%, #2ea90d 24% 76%, #6d4d2a 76% 78%, transparent 78%),
    linear-gradient(225deg, transparent 22%, #6d4d2a 22% 24%, #2ea90d 24% 76%, #6d4d2a 76% 78%, transparent 78%);
  clip-path: polygon(50% 0, 100% 30%, 100% 74%, 50% 100%, 0 74%, 0 30%);
}

.lineup-slot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 86px;
  border: 0;
  background: linear-gradient(180deg, #fffdf9 0%, #f4efe7 100%);
  clip-path: polygon(10% 0, 90% 0, 90% 68%, 50% 100%, 10% 68%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-slot span {
  transform: translateY(-8px);
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.lineup-slot.is-assigned,
.lineup-slot.is-current {
  box-shadow: 0 0 0 3px rgba(0, 104, 183, 0.2), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-slot--cf { top: 18px; left: 50%; transform: translateX(-50%); }
.lineup-slot--lf { top: 63px; left: 17px; }
.lineup-slot--rf { top: 63px; right: 17px; }
.lineup-slot--ss { top: 100px; left: 88px; }
.lineup-slot--2b { top: 100px; right: 88px; }
.lineup-slot--3b { top: 197px; left: 39px; }
.lineup-slot--p { top: 162px; left: 50%; transform: translateX(-50%); }
.lineup-slot--1b { top: 197px; right: 39px; }
.lineup-slot--dh { top: 281px; left: 0; }
.lineup-slot--c { top: 281px; left: 50%; transform: translateX(-50%); }

.lineup-badge {
  position: absolute;
  right: 10px;
  bottom: 104px;
  color: #c61c2d;
  font-size: 28px;
  font-weight: 800;
}

.lineup-card-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 58px;
  gap: 8px;
  overflow-x: auto;
  margin-top: 18px;
  padding-bottom: 4px;
}

.lineup-card-strip::-webkit-scrollbar {
  display: none;
}

.lineup-card-option {
  position: relative;
  display: grid;
  gap: 4px;
  width: 58px;
  border: 0;
  background: transparent;
}

.lineup-card-option img {
  width: 54px;
  height: 86px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-card-option span {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.lineup-card-option.is-selected img {
  box-shadow: 0 0 0 3px rgba(0, 104, 183, 0.2), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-card-option.is-assigned {
  opacity: 0.45;
}

.community-screen {
  padding-top: 148px;
}

.community-screen__body {
  padding-bottom: 128px;
}

.community-grid {
  gap: 8px 6px;
  margin-top: 12px;
}

.community-tile {
  padding: 6px;
  border-radius: 8px;
}

.community-tile__photo {
  height: 96px;
  margin-top: 0;
}

.community-tile__meta span {
  min-width: 72px;
  height: 24px;
  margin-top: 0;
}

.community-tile strong {
  margin-top: 6px;
}

.community-tile__like {
  min-width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.community-tile__button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-detail-card {
  margin-top: 12px;
  padding: 8px;
  border: 1.5px solid var(--brand);
  border-radius: 8px;
}

.community-detail-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 8px 0;
}

.community-detail-card__head strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.community-detail-card__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 24px;
  margin-top: 2px;
  padding: 0 8px;
  border-radius: 8px;
  background: #e3e3e3;
  color: var(--ink-soft);
  font-size: 12px;
}

.community-detail-card__close {
  border: 0;
  background: transparent;
}

.community-detail-card__photo {
  overflow: hidden;
  height: 270px;
  margin-top: 14px;
  border-radius: 8px;
}

.community-detail-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-detail-card__body {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 8px 8px;
}

.community-detail-card__body p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.43;
}

.community-like-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.community-like-button__heart {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.community-like-button__heart::before {
  content: "♡";
}

.community-me__body {
  padding-top: 148px;
  padding-bottom: 124px;
}

.community-me__field {
  margin-top: 25px;
}

.community-me__title-input {
  width: 100%;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--ink-soft);
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 21px;
}

.community-me__title-input::placeholder,
.community-me__textarea::placeholder {
  color: var(--ink-faint);
}

.community-me__editor {
  margin-top: 24px;
}

.community-me__textarea {
  width: 100%;
  min-height: 260px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  resize: none;
  background: #f0f0f0;
  color: var(--ink);
  font-size: 16px;
  line-height: 21px;
}

.community-me__upload {
  overflow: hidden;
}

.community-me__upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-me__file-input {
  display: none;
}

.community-action-sheet {
  left: 8px;
  right: 8px;
  bottom: 32px;
  padding-top: 0;
  border-radius: 12px;
}

.community-action-sheet button {
  font-weight: 500;
}

.menu,
.predict,
.lineup,
.community-screen__body,
.community-me__body {
  padding-top: calc(var(--safe-top) + 148px);
}

.menu-screen .screen__footer,
.predict-screen .screen__footer,
.community-me .screen__footer {
  padding: 16px 45px 30px;
  background: none;
}

.menu {
  padding-bottom: 120px;
}

.menu__profile {
  gap: 10px;
}

.menu__profile h1 {
  color: var(--brand);
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.04em;
}

.menu__profile p {
  margin: 0;
  color: var(--danger);
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.rank-link {
  gap: 8px;
  align-self: flex-start;
  min-height: 40px;
  padding: 8px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.rank-link .topbar__icon {
  width: 24px;
  height: 24px;
}

.menu__list--plain {
  gap: 0;
  margin-top: 58px;
}

.menu-row {
  min-height: 0;
  padding: 12px 8px;
  border-bottom: 1px solid #2a2a2b;
}

.menu-row strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.menu-row__chevron {
  color: #2a2a2b;
  font-size: 18px;
  line-height: 1;
}

.menu-row.is-active {
  background: transparent;
}

.menu-row.is-active strong {
  color: #2a2a2b;
}

.play-screen__actions--figma {
  top: 301px;
  left: 16px;
  right: 16px;
  gap: 7px;
}

.play-screen__card--figma {
  min-height: 146px;
  padding: 28px 12px;
  border-radius: 8px;
  border: 0;
  background: #fff;
  box-shadow: none;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.04em;
  text-align: center;
}

.play-screen__sheet--figma {
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 371px;
  padding: 34px 16px 24px;
  border-radius: 32px 32px 0 0;
  background: #fff;
  box-shadow: none;
}

.play-screen__metric {
  margin: 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.04em;
  text-align: center;
}

.play-screen__metric strong {
  color: var(--brand);
}

.play-screen__sheet--figma .panel-button {
  width: 285px;
  min-height: 52px;
  margin-top: 0;
  padding: 15px 12px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.predict {
  padding-bottom: 126px;
}

.predict--figma .hero-copy {
  gap: 8px;
  margin-bottom: 20px;
}

.predict-copy {
  margin: 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.02em;
  text-align: center;
}

.predict-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.predict-toolbar__note {
  margin: 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.02em;
}

.predict-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2a2a2b;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.02em;
}

.predict-filter input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: var(--brand);
}

.predict-board {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #333;
  box-shadow: none;
}

.predict-match-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #8c8c8c;
}

.predict-match-card:last-child {
  border-bottom: 0;
}

.predict-match-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 285px;
  margin: 0;
  color: #fff;
}

.predict-match-card__head span {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.04em;
}

.predict-match-card__head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: #8c8c8c;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.predict-match-card.is-complete .predict-match-card__head strong,
.predict-match-card[data-status="complete"] .predict-match-card__head strong {
  background: #00b4ed;
}

.predict-match-card.is-available .predict-match-card__head strong,
.predict-match-card[data-status="available"] .predict-match-card__head strong {
  background: #8c8c8c;
}

.predict-match-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 285px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.predict-match-card__row.is-active,
.predict-match-card:has(.predict-option.is-selected) .predict-match-card__row {
  box-shadow: 0 0 0 2px rgba(0, 104, 183, 0.28) inset;
}

.predict-match-card__row.is-blocked,
.predict-match-card__row:has([data-blocked="true"]) {
  grid-template-columns: 1fr;
  background: #737373;
}

.predict-match-card__row.is-blocked .predict-option:first-child,
.predict-match-card__row:has([data-blocked="true"]) .predict-option:first-child {
  display: none;
}

.predict-match-card__row.is-blocked .predict-option:last-child,
.predict-match-card__row:has([data-blocked="true"]) .predict-option:last-child {
  width: 100%;
  border-right: 0;
  background: transparent;
  color: #fff;
}

.predict-option {
  min-height: 48px;
  padding: 4px 16px;
  border-right: 1px solid #8c8c8c;
  background: #fff;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.predict-option:last-child {
  border-right: 0;
}

.predict-option.is-selected,
.predict-option[aria-pressed="true"] {
  background: #00b4ed;
  color: #fff;
}

.predict-option.is-disabled,
.predict-option[disabled] {
  background: #737373;
  color: #fff;
}

.predict-option:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid rgba(0, 104, 183, 0.45);
  outline-offset: -2px;
}

.predict-footer__notice {
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.lineup {
  padding-bottom: 82px;
}

.lineup-copy {
  margin: 8px 0 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.02em;
  text-align: center;
}

.lineup-field {
  position: relative;
  height: 361px;
  margin-top: 23px;
}

.lineup-field__diamond {
  position: absolute;
  inset: auto 0 27px;
  height: 306px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 13%, transparent 13% 26%, rgba(255, 255, 255, 0.1) 26% 39%, transparent 39% 52%, rgba(255, 255, 255, 0.1) 52% 65%, transparent 65% 78%, rgba(255, 255, 255, 0.1) 78% 91%, transparent 91%),
    radial-gradient(circle at 50% 55%, #f8d799 0 58px, transparent 59px),
    linear-gradient(135deg, transparent 22%, #745129 22% 24%, #2fa80f 24% 76%, #745129 76% 78%, transparent 78%),
    linear-gradient(225deg, transparent 22%, #745129 22% 24%, #2fa80f 24% 76%, #745129 76% 78%, transparent 78%);
  clip-path: polygon(50% 0, 94% 19%, 94% 60%, 50% 100%, 6% 60%, 6% 19%);
}

.lineup-slot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 86px;
  border: 0;
  background: linear-gradient(180deg, #fffdf8 0%, #efe9e0 100%);
  clip-path: polygon(10% 0, 90% 0, 90% 68%, 50% 100%, 10% 68%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-slot span {
  transform: translateY(-8px);
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.04em;
}

.lineup-slot.is-assigned,
.lineup-slot.is-current,
.lineup-slot.is-target,
.lineup-slot[aria-pressed="true"] {
  box-shadow: 0 0 0 3px rgba(0, 104, 183, 0.2), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-slot:focus-visible {
  outline: 2px solid rgba(0, 104, 183, 0.45);
  outline-offset: 2px;
}

.lineup-badge {
  right: 8px;
  bottom: 108px;
  color: #c61c2d;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.lineup-card-strip {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.lineup-card-strip::-webkit-scrollbar {
  display: none;
}

.lineup-card-option {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  border: 0;
  background: transparent;
}

.lineup-card-option img {
  width: 54px;
  height: 86px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-card-option span {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.lineup-card-option.is-selected img,
.lineup-card-option.is-current img,
.lineup-card-option[aria-pressed="true"] img {
  box-shadow: 0 0 0 3px rgba(0, 104, 183, 0.2), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.lineup-card-option.is-assigned,
.lineup-card-option.is-disabled {
  opacity: 0.45;
}

.lineup-card-option:focus-visible {
  outline: 2px solid rgba(0, 104, 183, 0.45);
  outline-offset: 2px;
}

.screen__footer--lineup {
  position: absolute;
  inset: auto 0 0;
  padding: 0;
  background: none;
}

.screen__footer--lineup .cta {
  min-height: 82px;
  border-radius: 0;
  font-weight: 500;
}

.community-screen__body {
  padding-bottom: 148px;
}

.community-screen__lead {
  margin: 8px 0 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.02em;
  text-align: center;
}

.community-grid--figma {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 7px;
  margin-top: 16px;
}

.community-tile--figma {
  padding: 8px;
  border: 1.5px solid var(--brand);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.community-tile--figma .community-tile__photo {
  height: 96px;
  margin-top: 0;
  border-radius: 8px;
}

.community-tile--figma .community-tile__meta {
  margin-top: 8px;
}

.community-tile--figma .community-tile__meta span {
  min-width: 72px;
  height: 24px;
  margin-top: 0;
  padding: 4px 8px;
  border-radius: 8px;
  background: #e3e3e3;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.02em;
}

.community-tile--figma strong {
  display: block;
  margin-top: 4px;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.community-tile__heart {
  position: relative;
  width: 20px;
  height: 20px;
}

.community-tile__heart::before {
  content: "♡";
  position: absolute;
  inset: 0;
  color: #2a2a2b;
  font-size: 20px;
  line-height: 20px;
}

.community-tile.is-liked .community-tile__heart::before,
.community-tile__heart.is-active::before,
.community-tile__heart[aria-pressed="true"]::before {
  content: "♥";
  color: var(--danger);
}

.community-tile__button {
  min-height: 40px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.community-screen .screen__footer--community {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 72px;
  padding: 0 45px;
  background: none;
}

.community-screen__notice {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  margin: 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.community-card--detail {
  padding: 8px;
  border: 1.5px solid var(--brand);
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.community-card__head strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.community-card__meta span {
  min-width: 72px;
  height: 24px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #e3e3e3;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.02em;
}

.community-me__body {
  padding-bottom: 140px;
}

.community-me__field {
  gap: 13px;
  margin-top: 35px;
}

.community-me__field strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.community-me__input,
.community-me__title-input {
  margin-top: 0;
  padding: 0 4px 8px;
  border-bottom: 1px solid #8c8c8c;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.02em;
}

.community-me__editor {
  margin-top: 25px;
}

.community-me__editor-box {
  min-height: 260px;
  padding: 8px;
  border-radius: 8px;
  background: #f0f0f0;
}

.community-me__editor-box--input,
.community-me__textarea {
  min-height: 244px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.02em;
  resize: none;
}

.community-me__editor p {
  margin: 4px 4px 0 0;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.02em;
}

.community-me__upload {
  position: relative;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-top: 18px;
  overflow: visible;
  border: 2px solid #b7b7b7;
  border-radius: 8px;
  background: #fff;
}

.community-me__upload-preview {
  border-radius: 6px;
}

.community-me__upload-icon {
  width: 24px;
  height: 24px;
  border-color: #b7b7b7;
  border-radius: 6px;
}

.community-me__upload-icon::before,
.community-me__upload-icon::after {
  background: #b7b7b7;
  border-color: #b7b7b7;
}

.community-me__upload-action {
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border: 1px solid #b7b7b7;
  background: #fff;
  box-shadow: none;
}

.community-me__upload-action::before,
.community-me__upload-action::after {
  background: #b7b7b7;
}

.community-me__upload:focus-within,
.community-me__input:focus-visible,
.community-me__title-input:focus-visible,
.community-me__editor-box--input:focus-visible,
.community-me__textarea:focus-visible {
  outline: 2px solid rgba(0, 104, 183, 0.35);
  outline-offset: 2px;
}

.community-me__file {
  display: none;
}

.community-me__notice {
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.community-action-sheet {
  left: 8px;
  right: 8px;
  bottom: 32px;
  padding-top: 0;
  border-radius: 12px;
  background: rgba(248, 248, 248, 0.98);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.16);
}

.community-action-sheet button {
  min-height: 60px;
  font-weight: 500;
}

.phone-stage {
  overscroll-behavior: none;
}

.screen {
  animation: screen-enter 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar__button,
.cta,
.menu-row,
.team-tab,
.panel-button,
.predict-option,
.lineup-card-option,
.lineup-slot,
.community-tile__button,
.community-tile__like,
.drawer-link,
.rank-link,
.search-button {
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.topbar__button:active,
.cta:active,
.menu-row:active,
.team-tab:active,
.panel-button:active,
.predict-option:active,
.lineup-card-option:active,
.lineup-slot:active,
.community-tile__button:active,
.community-tile__like:active,
.drawer-link:active,
.rank-link:active,
.search-button:active {
  transform: scale(0.98);
}

.cta:hover,
.menu-row:hover,
.drawer-link:hover,
.rank-link:hover,
.panel-button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.modal-backdrop,
.community-action-sheet {
  animation: fade-in 180ms ease;
}

.modal-card,
.toast,
.community-action-sheet,
.app-drawer__panel {
  animation: rise-in 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.app-overlay {
  position: absolute;
  inset: 0;
  z-index: 26;
}

.app-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 9, 20, 0.42);
  animation: fade-in 180ms ease;
}

.app-drawer {
  pointer-events: none;
}

.app-drawer__panel,
.toast-layer,
.community-action-sheet,
.modal-backdrop,
.modal-card {
  pointer-events: auto;
}

.app-drawer__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(344px, calc(100vw - 28px));
  padding: calc(var(--safe-top) + 18px) 16px 20px;
  background: #fff;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.app-drawer--left .app-drawer__panel {
  left: 0;
  border-radius: 0 24px 24px 0;
  transform-origin: left center;
  animation-name: drawer-in-left;
}

.app-drawer--right .app-drawer__panel {
  right: 0;
  border-radius: 24px 0 0 24px;
  transform-origin: right center;
  animation-name: drawer-in-right;
}

.app-drawer__header {
  margin-bottom: 18px;
}

.app-drawer__body {
  flex: 1;
  overflow: auto;
  padding-right: 2px;
}

.app-drawer__footer {
  margin-top: 18px;
}

.drawer-profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.drawer-profile strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.drawer-profile span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.drawer-menu {
  gap: 10px;
}

.drawer-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 14px;
  background: #f5f7fa;
  color: var(--ink);
}

.drawer-stat + .drawer-stat {
  margin-top: 10px;
}

.drawer-stat span {
  color: var(--ink-soft);
  font-size: 14px;
}

.drawer-stat strong {
  font-size: 18px;
  font-weight: 800;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px #ebedf0;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.drawer-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.42;
}

.toast-layer {
  position: absolute;
  inset: auto 0 34px;
  z-index: 28;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.toast--global {
  position: static;
  min-width: 220px;
  max-width: 100%;
  transform: none;
  text-align: center;
  white-space: normal;
}

.toast--error {
  background: rgba(175, 18, 18, 0.92);
  color: #fff;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

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

@keyframes drawer-in-left {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

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

@keyframes drawer-in-right {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

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

@keyframes screen-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (hover: hover) and (pointer: fine) {
  :root {
    --mockup-stage-width: var(--figma-stage-width);
    --mockup-stage-height: var(--device-height);
    --mockup-screen-height: var(--device-height);
  }

  .phone-stage {
    border-radius: var(--radius-phone);
    box-shadow: var(--shadow-panel);
  }
}

@media (min-width: 1280px) {
  .mockup-shell {
    grid-template-columns: 280px var(--device-width) var(--device-width);
    gap: 32px;
    align-items: start;
    min-height: 100vh;
    padding: 32px;
  }

  .desktop-sitemap {
    display: block;
    position: sticky;
    top: 32px;
    color: #fff;
  }

  .desktop-sitemap__eyebrow {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .desktop-sitemap__title {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.1;
  }

  .desktop-sitemap__group + .desktop-sitemap__group {
    margin-top: 18px;
  }

  .desktop-sitemap__group h3 {
    margin: 0 0 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
  }

  .desktop-sitemap__links {
    display: grid;
    gap: 8px;
  }

  .desktop-sitemap__link {
    display: block;
    padding: 11px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 14px;
    line-height: 1.35;
  }

  .desktop-sitemap__link.is-active {
    background: rgba(0, 104, 183, 0.45);
  }

  .desktop-preview {
    display: block;
    position: static;
    align-self: start;
  }

  .desktop-preview img {
    display: block;
    width: var(--device-width);
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-phone);
  }

  .phone-stage {
    width: var(--device-width);
    height: var(--mockup-stage-height);
    min-height: var(--mockup-stage-height);
    border-radius: var(--radius-phone);
    box-shadow: var(--shadow-panel);
  }

  .screen {
    min-height: var(--mockup-screen-height);
  }
}

@keyframes screen-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-up-soft {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes drawer-in-left {
  from {
    transform: translateX(-100%);
    opacity: 1;
  }

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

@keyframes drawer-in-right {
  from {
    transform: translateX(100%);
    opacity: 1;
  }

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

@keyframes drawer-out-left {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 1;
  }
}

@keyframes drawer-out-right {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.screen {
  animation: screen-enter 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mockup-shell.has-overlay .phone-stage {
  overflow: hidden;
}

.cta,
.topbar__button,
.menu-row,
.team-tab,
.predict-option,
.lineup-slot,
.lineup-card-option,
.modal-card__button,
.modal-card__single,
.community-action-sheet button,
.drawer-link,
.rank-link,
.panel-button {
  transition:
    transform 160ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.cta:focus-visible,
.topbar__button:focus-visible,
.menu-row:focus-visible,
.team-tab:focus-visible,
.predict-option:focus-visible,
.lineup-slot:focus-visible,
.lineup-card-option:focus-visible,
.modal-card__button:focus-visible,
.modal-card__single:focus-visible,
.drawer-link:focus-visible,
.rank-link:focus-visible,
.panel-button:focus-visible {
  outline: 2px solid rgba(0, 104, 183, 0.48);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover,
  .menu-row:hover,
  .team-tab:hover,
  .drawer-link:hover,
  .rank-link:hover,
  .panel-button:hover {
    transform: translateY(-1px);
  }

  .topbar__button:hover,
  .lineup-slot:hover,
  .lineup-card-option:hover,
  .predict-option:hover {
    transform: translateY(-1px);
  }
}

.cta:active,
.topbar__button:active,
.menu-row:active,
.team-tab:active,
.predict-option:active,
.lineup-slot:active,
.lineup-card-option:active,
.modal-card__button:active,
.modal-card__single:active,
.drawer-link:active,
.rank-link:active,
.panel-button:active,
.community-action-sheet button:active {
  transform: scale(0.985);
}

.app-overlay {
  position: absolute;
  inset: 0;
  z-index: 24;
  overflow: hidden;
}

.app-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.46);
  animation: fade-in 180ms ease;
}

.app-drawer {
  position: absolute;
  inset: 0;
  display: flex;
}

.app-drawer--left {
  justify-content: flex-start;
}

.app-drawer--right {
  justify-content: flex-end;
}

.app-drawer__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(360px, calc(100% - 44px));
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.app-drawer--left .app-drawer__panel {
  animation: drawer-in-left 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.app-drawer--right .app-drawer__panel {
  animation: drawer-in-right 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.app-drawer__header {
  padding: calc(var(--safe-top) + 18px) 18px 14px;
  border-bottom: 1px solid rgba(42, 42, 43, 0.08);
}

.app-drawer__body {
  overflow: auto;
  padding: 18px;
  scrollbar-width: none;
}

.app-drawer__body::-webkit-scrollbar {
  display: none;
}

.app-drawer__footer {
  padding: 14px 18px calc(var(--safe-top) + 18px);
  border-top: 1px solid rgba(42, 42, 43, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), #fff 45%);
}

.drawer-profile {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.drawer-profile strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-strong);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.drawer-profile span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.drawer-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 104, 183, 0.06);
}

.drawer-stat + .drawer-stat {
  margin-top: 10px;
}

.drawer-stat span {
  color: var(--ink-soft);
  font-size: 14px;
}

.drawer-stat strong {
  color: var(--brand);
  font-size: 18px;
  font-weight: 800;
}

.drawer-menu {
  display: grid;
  gap: 10px;
}

.app-drawer__body .drawer-menu {
  margin-top: 18px;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(16, 19, 26, 0.05);
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.drawer-link__chevron {
  color: rgba(42, 42, 43, 0.44);
  font-size: 20px;
  line-height: 1;
}

.modal-backdrop {
  animation: fade-in 180ms ease;
}

.modal-card {
  animation: screen-enter 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.community-action-sheet {
  animation: screen-enter 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.toast-layer {
  position: absolute;
  inset: auto 0 112px;
  z-index: 30;
  pointer-events: none;
}

.toast--global {
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  animation: slide-up-soft 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.toast--error {
  background: rgba(173, 27, 27, 0.94);
}

.topbar,
.menu-topbar {
  width: 344px;
  max-width: 344px;
  grid-template-columns: 24px 132px 24px;
  gap: 82px;
}

.topbar__brand {
  min-width: 0;
}

.topbar__brand-lockup {
  width: 132px;
}

.topbar__brand-image {
  width: 132px;
  height: 20px;
}

.cta,
.topbar__button,
.menu-row,
.team-tab,
.predict-option,
.lineup-slot,
.lineup-card-option,
.modal-card__button,
.modal-card__single,
.drawer-link,
.menu-submenu__link,
.rank-link,
.panel-button,
.community-action-sheet button {
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease !important;
  box-shadow: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover,
  .topbar__button:hover,
  .menu-row:hover,
  .drawer-link:hover,
  .menu-submenu__link:hover,
  .rank-link:hover,
  .panel-button:hover {
    transform: none !important;
    opacity: 0.9;
  }
}

.cta:active,
.topbar__button:active,
.menu-row:active,
.team-tab:active,
.predict-option:active,
.lineup-slot:active,
.lineup-card-option:active,
.modal-card__button:active,
.modal-card__single:active,
.drawer-link:active,
.menu-submenu__link:active,
.rank-link:active,
.panel-button:active,
.community-action-sheet button:active {
  transform: none !important;
  opacity: 0.72;
}

.app-overlay__backdrop {
  background: rgba(16, 19, 26, 0.18);
}

.app-drawer__panel {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: none;
}

.app-drawer__header,
.app-drawer__footer {
  background: #ffffff;
}

.app-drawer__body {
  padding: 18px 20px 20px;
}

.drawer-profile strong {
  margin-bottom: 4px;
  font-size: 24px;
}

.drawer-stat {
  border-radius: 12px;
  background: #f4f6f8;
}

.drawer-menu {
  gap: 12px;
}

.menu-disclosure {
  border-bottom: 1px solid rgba(42, 42, 43, 0.1);
}

.menu-disclosure:last-child {
  border-bottom: 0;
}

.menu-disclosure__panel {
  display: grid;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0 0 12px;
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    padding-top 180ms ease,
    padding-bottom 180ms ease;
}

.menu-disclosure.is-open .menu-disclosure__panel {
  max-height: 320px;
  opacity: 1;
  padding-top: 6px;
  padding-bottom: 14px;
}

.menu-row {
  min-height: 60px;
  border-radius: 0;
  background: transparent;
}

.menu-row.is-active {
  background: transparent;
}

.menu-row__chevron {
  transition: transform 180ms ease;
}

.menu-disclosure.is-open .menu-row__chevron {
  transform: rotate(180deg);
}

.menu-submenu__link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  background: #f6f7f8;
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.menu-submenu__link.is-current {
  background: rgba(0, 104, 183, 0.08);
  color: var(--brand);
}

.modal-card {
  border: 1px solid rgba(42, 42, 43, 0.08);
  box-shadow: none;
}

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

.topbar,
.menu-topbar {
  grid-template-columns: 24px 132px 24px;
  gap: 82px;
  width: 344px;
  max-width: 344px;
}

.topbar__brand {
  min-width: 0;
}

.app-overlay__backdrop {
  background: rgba(16, 19, 26, 0.2);
}

.app-drawer.is-closing .app-overlay__backdrop {
  animation: fade-out 220ms ease forwards;
}

.app-drawer__panel {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
  background: #fff;
  backdrop-filter: none;
  box-shadow: none;
  will-change: transform;
}

.app-drawer--left .app-drawer__panel {
  animation: drawer-in-left 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
  border-radius: 0;
}

.app-drawer--right .app-drawer__panel {
  animation: drawer-in-right 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
  border-radius: 0;
}

.app-drawer--left.is-closing .app-drawer__panel {
  animation: drawer-out-left 220ms cubic-bezier(0.55, 0, 0.55, 0.2) forwards;
}

.app-drawer--right.is-closing .app-drawer__panel {
  animation: drawer-out-right 220ms cubic-bezier(0.55, 0, 0.55, 0.2) forwards;
}

.app-drawer__panel--menu,
.app-drawer__panel--mypage {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.drawer-close {
  position: absolute;
  top: calc(var(--safe-top) + 22px);
  right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.drawer-hero {
  padding: calc(var(--safe-top) + 100px) 16px 0;
}

.app-drawer__body--menu,
.app-drawer__body--mypage {
  padding: 41px 16px 24px;
}

.app-drawer__footer {
  padding: 0 45px 38px;
  border-top: 0;
}

.app-drawer__footer .cta {
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
}

.drawer-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}

.drawer-profile strong {
  display: block;
  margin: 0;
  color: var(--brand);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.drawer-profile span {
  display: block;
  margin-top: 4px;
  color: #ff0000;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.rank-link {
  gap: 8px;
  width: auto;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
  box-shadow: none;
}

.rank-link .topbar__icon {
  width: 24px;
  height: 24px;
}

.drawer-menu {
  display: grid;
  gap: 0;
}

.menu-disclosure {
  border-bottom: 1px solid #2a2a2b;
}

.menu-disclosure:last-child {
  border-bottom: 1px solid #2a2a2b;
}

.menu-row {
  min-height: 48px;
  padding: 12px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.menu-row strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.menu-row.is-active {
  background: rgba(0, 104, 183, 0.12);
}

.menu-row.is-active strong {
  color: var(--ink);
}

.menu-row__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.menu-row__chevron img {
  width: 7.5333px;
  height: 13.3667px;
  display: block;
}

.menu-disclosure__panel {
  display: grid;
  justify-items: start;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 8px;
  transition:
    max-height 220ms ease,
    opacity 160ms ease;
}

.menu-disclosure.is-open .menu-disclosure__panel {
  max-height: 160px;
  opacity: 1;
  padding: 0 8px 12px;
}

.menu-disclosure.is-open .menu-row__chevron {
  transform: rotate(-90deg);
}

.menu-submenu__link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0 4px;
  border-radius: 0;
  border-bottom: 0.7px solid #8c8c8c;
  background: transparent;
  color: #8c8c8c;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
  text-align: left;
}

.menu-submenu__link.is-current {
  background: transparent;
  color: #8c8c8c;
}

.drawer-menu--mypage {
  gap: 0;
}

.drawer-data {
  border-top: 1px solid rgba(42, 42, 43, 0.6);
  border-bottom: 1px solid rgba(42, 42, 43, 0.6);
}

.drawer-data__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 8px;
}

.drawer-data__row + .drawer-data__row {
  border-top: 1px solid rgba(42, 42, 43, 0.16);
}

.drawer-data__row strong,
.drawer-data__row span {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3125;
}

.drawer-data__row strong {
  font-weight: 500;
}

.drawer-data__row span {
  font-weight: 400;
}

.drawer-link-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(42, 42, 43, 0.6);
}

.menu-submenu__link--plain {
  min-height: 48px;
  border-bottom: 1px solid rgba(42, 42, 43, 0.6);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3125;
  letter-spacing: -0.02em;
}

.menu-submenu__link--plain span {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu-submenu__link--plain span::after {
  content: "⌄";
  font-size: 24px;
  line-height: 1;
  transform: rotate(-90deg);
}

.package-screen {
  background: #fff;
  color: var(--ink);
}

.package-screen__body {
  display: grid;
  grid-template-rows: auto auto auto;
  min-height: 100%;
  padding: calc(var(--safe-top) + 102px) 16px 24px;
  max-width: 375px;
  margin: 0 auto;
}

.package-screen__hero {
  display: grid;
  justify-items: center;
}

.package-screen__title {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.04em;
  text-align: center;
}

.package-screen__copy {
  margin: 16px 0 0;
  color: rgba(42, 42, 43, 0.88);
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
}

.package-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 375px;
  margin: 31px 0 0 -16px;
}

.package-choice {
  position: relative;
  display: block;
  height: 374px;
  overflow: hidden;
  border: 0;
  background: transparent;
  flex: none;
}

.package-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
}

.package-choice.is-selected::after {
  border-color: rgba(255, 255, 255, 0.92);
}

.package-choice.is-muted {
  opacity: 0.28;
}

.package-choice__crop,
.package-choice__crop img {
  display: block;
}

.package-choice__crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.package-choice__crop img {
  position: absolute;
  top: -278px;
  width: 375px;
  max-width: none;
}

.package-choice__crop--dream img {
  left: 0;
}

.package-choice__crop--share img {
  left: -188px;
}

.package-screen__footer {
  margin-top: 16px;
}

.package-screen__footer .cta {
  width: 285px;
  min-height: 52px;
  margin: 0 auto;
  border-radius: 8px;
}

.package-screen__note {
  margin: 14px 0 0;
  color: #ff3b30;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3125;
  letter-spacing: -0.02em;
  text-align: center;
}

.modal-card--package {
  border: 0;
}

.modal-card__caption {
  text-align: center;
}

.modal-card__caption--alert {
  color: #ff3b30;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.modal-card--package .modal-card__button {
  width: 109px;
  min-height: 52px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.modal-card--package .modal-card__button {
  background: #f3f4f6;
  color: var(--ink);
}

.modal-card--package .modal-card__button.is-primary,
.modal-card__single--primary,
.modal-card--register .modal-card__single {
  background: var(--brand);
  color: #fff;
}

.modal-card--package .modal-card__footer--single {
  border-radius: 0 0 8px 8px;
}

.modal-card--package .modal-card__single--primary {
  width: 100%;
  min-height: 52px;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.modal-card--success .modal-card__body {
  padding-top: 34px;
  padding-bottom: 30px;
}

.modal-card--success .modal-card__title strong {
  color: #ff3b30;
  font-weight: 700;
}

.modal-card--register .modal-card__single {
  width: 100%;
  box-shadow: none;
}

.modal-card--register {
  background: var(--brand);
}

.modal-card--success {
  background: var(--brand);
}

.modal-card--error .modal-card__title {
  color: var(--danger);
}

.modal-card--register .modal-card__body {
  width: 100%;
  background: #fff;
  padding-top: 36px;
  padding-bottom: 20px;
}

.modal-card--register .modal-card__footer--single {
  border-radius: 0 0 8px 8px;
}

.screen-hit {
  position: absolute;
  z-index: 4;
  width: 24px;
  height: 24px;
}

.screen-hit--menu {
  top: calc(var(--safe-top) + 22px);
  left: 16px;
}

.screen-hit--mypage {
  top: calc(var(--safe-top) + 22px);
  right: 16px;
}

.home__visual,
.play-screen__visual {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.home__visual {
  height: 330px;
}

.play-screen__visual {
  height: 382px;
}

.home__visual-image,
.play-screen__visual-image {
  position: absolute;
  top: -48px;
  left: 0;
  width: 375px;
  max-width: none;
}

.home__sheet--figma {
  position: relative;
  min-height: calc(var(--device-height) - 330px);
  margin-top: 0;
  padding: 88px 16px 28px;
  border-radius: 32px 32px 0 0;
  background: #fff;
}

.home__sheet--figma .cta {
  width: 285px;
  min-height: 52px;
  margin: 14px auto 0;
  border-radius: 8px;
}

.home__sheet--figma .pager {
  margin-top: 16px;
}

.play-screen__hotspot {
  position: absolute;
  z-index: 4;
  top: 247px;
  width: 160px;
  height: 111px;
  border-radius: 12px;
}

.play-screen__hotspot--predict {
  left: 14px;
}

.play-screen__hotspot--lineup {
  right: 14px;
}

.play-screen__sheet--figma {
  position: relative;
  min-height: calc(var(--device-height) - 382px);
  margin-top: 0;
  padding: 34px 16px 24px;
  border-radius: 32px 32px 0 0;
  background: #fff;
  box-shadow: none;
}

.screen {
  animation: none;
}

.mockup-shell.is-route-transition .screen {
  animation: screen-enter 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.app-drawer__panel--menu {
  overflow: hidden;
}

.team-mark-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.team-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
}

.team-mark strong,
.team-mark em {
  font-style: normal;
  line-height: 1;
}

.team-mark--package {
  width: 52px;
  color: #fff;
}

.team-mark--package strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.24px;
}

.team-mark--package em {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.92;
}

.team-mark-list--package {
  position: relative;
  z-index: 1;
  gap: 10px 8px;
  width: 100%;
  margin-top: auto;
}

.package-choice-grid {
  margin-top: 32px;
}

.package-choice-grid.is-dimmed {
  opacity: 0.92;
}

.package-choice {
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 26px 12px 18px;
}

.package-choice__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.18) 0 5px, transparent 5.2px) 0 0 / 34px 34px,
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.12) 0 5px, transparent 5.2px) 17px 17px / 34px 34px;
  pointer-events: none;
}

.package-choice--dream {
  background: #df002e;
}

.package-choice--share {
  background: #8cc63f;
}

.package-choice__title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.package-choice__pack {
  position: relative;
  z-index: 1;
  width: 146px;
  margin: 46px auto 38px;
}

.home-screen {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.home-screen--dream {
  background: #df002e;
}

.home-screen--share {
  background: #0068b7;
}

.home-screen__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.16) 0 6px, transparent 6.2px) 0 0 / 40px 40px,
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.12) 0 6px, transparent 6.2px) 20px 20px / 40px 40px;
  opacity: 0.9;
}

.home-screen__hero {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 20px;
  min-height: 452px;
  padding: 142px 16px 0;
}

.home-screen__product {
  width: 205px;
}

.home-screen__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 343px;
  height: 60px;
}

.team-logo-row {
  display: block;
  width: 343px;
  height: 60px;
  object-fit: contain;
}

.home-screen__switch {
  position: absolute;
  top: 316px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 68px;
  border: 0;
  background: transparent;
  color: #fff;
}

.home-screen__switch .topbar__icon {
  width: 24px;
  height: 24px;
}

.home-screen__sheet {
  position: absolute;
  inset: auto 0 0;
  min-height: 360px;
  padding: 86px 16px 24px;
  border-radius: 32px 32px 0 0;
  background: #fff;
  color: #2a2a2b;
}

.home-screen__metric {
  margin: 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.home-screen__metric + .home-screen__metric {
  margin-top: 14px;
}

.home-screen__metric strong {
  color: #0068b7;
}

.home-screen__sheet .cta {
  width: 285px;
  margin: 44px auto 0;
}

.home-screen__sheet .pager {
  padding-top: 38px;
}

.play-screen-direct {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #05142a;
}

.play-screen-direct__backdrop {
  position: absolute;
  inset: 0;
}

.play-screen-direct__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.play-screen-direct__title {
  position: absolute;
  top: 137px;
  left: 50%;
  z-index: 1;
  width: 336px;
  height: 140px;
  transform: translateX(-50%);
}

.play-screen-direct__choices {
  position: absolute;
  top: 301px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: 168px 168px;
  justify-content: space-between;
  gap: 0;
}

.play-screen-direct__choice {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 112px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.play-screen-direct__sheet {
  position: absolute;
  inset: auto 0 0;
  min-height: 371px;
  padding: 94px 16px 24px;
  border-radius: 32px 32px 0 0;
  background: #fff;
  color: #2a2a2b;
}

.play-screen-direct__summary {
  display: grid;
  justify-items: center;
  gap: 4px;
  width: 231px;
  margin: 0 auto;
}

.play-screen-direct__metric {
  margin: 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.play-screen-direct__metric + .play-screen-direct__metric {
  margin-top: 4px;
}

.play-screen-direct__metric strong {
  color: #0068b7;
}

.play-screen-direct__links {
  display: grid;
  gap: 8px;
  width: 285px;
  margin: 34px auto 0;
}

.panel-button--primary {
  min-height: 52px;
  margin-top: 0;
  border-radius: 8px;
  background: #0068b7;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.panel-button--primary:first-of-type {
  margin-top: 36px;
}

.ranking {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.16) 0 6px, transparent 6.2px) 0 0 / 40px 40px,
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.12) 0 6px, transparent 6.2px) 20px 20px / 40px 40px,
    #0068b7;
}

.ranking__hero {
  padding: 157px 16px 0;
}

.ranking-podium {
  gap: 4px;
}

.ranking-podium img {
  width: 44px;
}

.ranking-podium strong {
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.ranking-podium span,
.ranking-podium em {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
}

.ranking__sheet {
  margin: 18px 0 0;
  padding: 28px 16px 24px;
  border-radius: 32px 32px 0 0;
}

.ranking-row {
  grid-template-columns: 24px 44px 1fr auto;
  gap: 8px;
  padding: 10px 0;
}

.ranking-row__rank,
.ranking-row__name,
.ranking-row__points {
  color: #2a2a2b;
}

.ranking-row__rank {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.ranking-row__team {
  color: #2a2a2b;
  font-size: 12px;
  line-height: 16px;
}

.ranking-row__name,
.ranking-row__points {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.ranking-row__points strong {
  color: #0068b7;
}

.landing__title {
  top: 137px;
  width: 336px;
  max-width: calc(100% - 39px);
}

.landing__hero {
  top: 137px;
  width: 344px;
  max-width: calc(100% - 31px);
}

.landing__actions {
  bottom: 90px;
  width: 285px;
}

.agreements {
  width: 343px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 44px;
}

.agreements .page-eyebrow {
  margin: 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
}

.agreements__title {
  margin: 12px 0 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.agreements__lead {
  margin: 16px 0 0;
  color: #2a2a2b;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.legal-block {
  padding: 12px 0 0;
  border-top: 0;
}

.legal-block + .legal-block {
  margin-top: 24px;
}

.legal-block h2 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 12px;
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.legal-block h2::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #0068b7;
}

.legal-block p {
  margin: 0 0 4px;
  color: #2a2a2b;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.agreements__table {
  margin-top: 24px;
  padding: 8px 0;
  border-top: 1px solid #b7b7b7;
  border-bottom: 1px solid #b7b7b7;
}

.agreements__table-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  margin-top: 8px;
}

.agreements__table-row:first-child {
  margin-top: 0;
}

.agreements__table-row strong {
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.agreements__table-row span {
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.consent-card {
  gap: 8px;
  margin-top: 32px;
  padding: 32px 0 0;
  border-radius: 8px;
  background: #f7f7f7;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  width: 332px;
  margin: 0 auto;
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.checkbox-row--all {
  grid-template-columns: 24px auto;
  align-items: center;
  color: #2a2a2b;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.checkbox-row input {
  width: 24px;
  height: 24px;
  margin: 0;
}

.agreements__warning {
  width: 343px;
  margin: 16px 0 0;
  color: #f12b2b;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-align: center;
}

.member-form {
  width: 343px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding-top: 160px;
}

.member-form .page-title {
  margin: 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.form-stack {
  gap: 32px;
  margin-top: 78px;
}

.line-field {
  padding-bottom: 8px;
  border-bottom: 1px solid #8c8c8c;
  color: #b7b7b7;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.line-field__input {
  margin-top: 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.line-field__input::placeholder {
  color: #b7b7b7;
}

.line-field--split {
  grid-template-columns: 168px auto;
  align-items: end;
  gap: 8px;
}

.gender-options {
  gap: 16px;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.gender-options label {
  gap: 8px;
}

.gender-options input {
  width: 24px;
  height: 24px;
  margin: 0;
}

.address-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 109px;
  align-items: end;
  gap: 0;
}

.search-button {
  width: 109px;
  height: 37px;
  padding: 8px 10px;
  border-radius: 0;
  background: #0068b7;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.drawer-hero {
  padding: calc(var(--safe-top) + 78px) 16px 0;
}

.drawer-profile {
  align-items: center;
}

.drawer-profile strong {
  color: #0068b7;
}

.drawer-profile span {
  color: #ff0000;
}

.rank-link {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #0068b7;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.menu-disclosure {
  border-bottom: 1px solid #2a2a2b;
}

.menu-row {
  min-height: 48px;
  padding: 12px 8px;
}

.menu-submenu__link {
  min-height: 24px;
  padding: 0 0 4px;
}

.home-screen__hero {
  gap: 19px;
  min-height: 451px;
  padding: 142px 16px 0;
}

.home-screen__product {
  width: 205px;
  height: 166px;
  object-fit: contain;
}

.home-screen__sheet {
  min-height: 360px;
  padding: 89px 16px 24px;
}

.home-screen__sheet .cta {
  margin: 30px auto 0;
}

.home-screen__sheet .pager {
  padding-top: 47px;
}

.play-screen-direct__choices {
  left: 16px;
  right: 16px;
  grid-template-columns: 168px 168px;
  justify-content: space-between;
  gap: 0;
}

.play-screen-direct__choice {
  height: 112px;
}

.play-screen-direct__sheet {
  min-height: 371px;
  padding: 94px 16px 24px;
}

.play-screen-direct__metric + .play-screen-direct__metric {
  margin-top: 0;
}

.panel-button--primary:first-of-type {
  margin-top: 34px;
}

.ranking {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.16) 0 6px, transparent 6.2px) 0 0 / 40px 40px,
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.12) 0 6px, transparent 6.2px) 20px 20px / 40px 40px,
    #0068b7;
}

.ranking__hero {
  position: relative;
  height: 424px;
  padding: 0;
}

.ranking-podium {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 4px;
  width: 109px;
  text-align: center;
}

.ranking-podium--primary {
  top: 169px;
  left: 50%;
  transform: translateX(-50%);
}

.ranking-podium--secondary {
  top: 227px;
  left: 8px;
}

.ranking-podium--tertiary {
  top: 260px;
  right: 8px;
}

.ranking-podium img {
  width: 44px;
}

.ranking-podium--primary img {
  width: 43px;
}

.ranking__sheet {
  margin: 0;
  padding: 28px 16px 24px;
  border-radius: 32px 32px 0 0;
}

.ranking-row {
  grid-template-columns: 24px 32px 1fr auto;
  gap: 8px;
  padding: 8px 0;
}

.ranking-row__team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  color: #2a2a2b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.landing__title {
  top: 137px;
  width: 336px;
  max-width: calc(100% - 39px);
}

.landing__hero {
  top: 137px;
  width: 344px;
  max-width: calc(100% - 31px);
}

.landing__actions {
  bottom: 90px;
  width: 285px;
}

.agreements-screen .screen__footer,
.member-form-screen .screen__footer {
  padding-bottom: 38px;
}

.agreements-screen__body {
  width: 343px;
  margin: 0 auto;
  padding: calc(var(--safe-top) + 130px) 0 44px;
}

.agreements-screen__heading {
  display: grid;
  gap: 12px;
  text-align: center;
}

.agreements-screen__eyebrow {
  margin: 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

/* Final Figma-aligned overrides for remaining direct-render screens */

.drawer-menu--mypage-figma {
  display: grid;
  gap: 0;
}

.menu-row--drawer-link {
  border-bottom: 1px solid #2a2a2b;
}

.menu-row--drawer-link strong {
  color: #2a2a2b;
}

.collection-screen {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.18) 0 5px, transparent 5.2px) 0 0 / 30px 30px,
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.14) 0 5px, transparent 5.2px) 15px 15px / 30px 30px,
    #0d7ad0;
}

.collection-screen__pattern {
  display: none;
}

.collection-screen__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  padding: 145px 16px 0;
}

.collection-screen__hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.collection-screen__hero-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-screen__hero-copy strong {
  display: inline-flex;
  min-width: 48px;
  padding: 0 8px;
  border-radius: 8px;
  background: #fff;
  color: #0068b7;
  font-weight: 700;
  justify-content: center;
}

.collection-screen__team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  background: #ff2b2b;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary {
  margin: 16px 16px 0;
  padding: 24px 16px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.collection-summary__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary__metric strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary__stats--figma {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.collection-summary__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 8px;
  background: #f0f0f0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary__pill strong,
.collection-summary__pill em {
  font-style: normal;
  font-weight: 700;
}

.collection-summary__pill.is-active {
  background: #0068b7;
  color: #fff;
}

.collection-team-tabs {
  display: flex;
  gap: 4px;
  align-items: center;
  overflow-x: auto;
  margin: 16px 16px 0;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.collection-team-tabs::-webkit-scrollbar {
  display: none;
}

.collection-team-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: #fff;
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.collection-team-tab img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.collection-team-tab.is-active {
  background: #fff;
}

.collection-team-tabs__indicator {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.collection-team-tabs__indicator span {
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: rgba(42, 42, 43, 0.22);
}

.collection-sheet {
  margin-top: 10px;
  padding: 0 15px 24px;
  background: transparent;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 8px;
}

.player-card--figma {
  overflow: hidden;
  border: 2px solid #0068b7;
  border-radius: 8px;
  background: #fff;
}

.player-card--figma img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.player-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 6px;
}

.player-card__footer strong {
  color: #0068b7;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.play-screen-direct__title {
  top: 111px;
  width: 341px;
}

.play-screen-direct__choices {
  top: 286px;
  left: 15px;
  right: 15px;
  gap: 8px;
}

.play-screen-direct__choice {
  height: 110px;
  border-radius: 8px;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.play-screen-direct__sheet {
  min-height: 394px;
  padding: 104px 16px 24px;
  border-radius: 32px 32px 0 0;
}

.play-screen-direct__metric {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.panel-button--primary {
  min-height: 47px;
  margin-top: 10px;
  border-radius: 8px;
}

.panel-button--primary:first-of-type {
  margin-top: 24px;
}

.ranking {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.16) 0 5px, transparent 5.2px) 0 0 / 30px 30px,
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.12) 0 5px, transparent 5.2px) 15px 15px / 30px 30px,
    #0d7ad0;
}

.ranking .topbar {
  top: 70px;
}

.ranking__hero {
  position: relative;
  height: 396px;
  padding: 0;
}

.ranking-podium {
  position: absolute;
  display: grid;
  justify-items: center;
  width: 110px;
  text-align: center;
}

.ranking-podium--secondary {
  top: 145px;
  left: 8px;
}

.ranking-podium--primary {
  top: 111px;
  left: 50%;
  transform: translateX(-50%);
}

.ranking-podium--tertiary {
  top: 180px;
  right: 8px;
}

.ranking-podium__banner {
  display: grid;
  justify-items: center;
  width: 100%;
  min-height: 116px;
  padding: 14px 8px 34px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 50% 100%, 0 84%);
}

.ranking-podium--primary .ranking-podium__banner {
  min-height: 132px;
}

.ranking-podium strong {
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.ranking-podium span {
  margin-top: 6px;
  color: #0068b7;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.ranking-podium em {
  margin-top: 4px;
  color: #0068b7;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.ranking-podium img {
  width: 44px;
  margin-top: -16px;
}

.ranking__sheet {
  margin: 0;
  min-height: 342px;
  padding: 22px 16px 18px;
  border-radius: 32px 32px 0 0;
  background: #fff;
}

.ranking-row {
  display: grid;
  grid-template-columns: 20px 36px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
}

.ranking-row__rank,
.ranking-row__name,
.ranking-row__points {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.ranking-row__team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 20px;
}

.ranking-row__team img {
  max-width: 32px;
  max-height: 20px;
  object-fit: contain;
}

.ranking-row__points strong {
  color: #0068b7;
}

.ranking__sheet .pager {
  margin-top: 18px;
}

.ranking__sheet .pager span {
  width: 8px;
  height: 8px;
  background: rgba(42, 42, 43, 0.14);
}

.ranking__sheet .pager span.is-active {
  background: #e5203b;
}

.community-screen__body {
  padding: 148px 16px 148px;
}

.community-screen .topbar {
  top: 70px;
}

.community-screen .page-title {
  margin: 0;
  color: #0068b7;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.community-screen__lead {
  margin: 8px 0 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
}

.community-grid--figma {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 6px;
  margin-top: 12px;
}

.community-tile--figma,
.community-card--detail {
  overflow: hidden;
  border: 1.5px solid #0068b7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.community-tile--figma {
  padding: 6px;
}

.community-tile--figma .community-tile__photo {
  height: 96px;
  border-radius: 6px;
}

.community-tile--figma .community-tile__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.community-tile--figma .community-tile__meta span,
.community-card__title-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 24px;
  padding: 0 8px;
  border-radius: 8px;
  background: #e3e3e3;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.community-tile--figma strong {
  display: block;
  margin-top: 4px;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-tile__like,
.community-card__like {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2a2a2b;
}

.community-card__like-count {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.community-tile__heart,
.community-card__heart {
  position: relative;
  width: 20px;
  height: 20px;
}

.community-tile__heart::before,
.community-card__heart::before {
  content: "♡";
  position: absolute;
  inset: 0;
  color: #2a2a2b;
  font-size: 20px;
  line-height: 20px;
}

.community-tile__heart.is-active::before,
.community-card__heart.is-active::before,
.community-tile.is-liked .community-tile__heart::before {
  content: "♥";
  color: #2a2a2b;
}

.community-tile__button {
  min-height: 40px;
  margin-top: 8px;
  border-radius: 8px;
  background: #0068b7;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-card--detail {
  margin-top: 12px;
  padding: 8px;
}

.community-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.community-card__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.community-card__title-row strong {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-card__close {
  width: 24px;
  height: 24px;
  color: #b7b7b7;
}

.community-card__photo {
  height: 254px;
  margin-top: 22px;
  border-radius: 8px;
  overflow: hidden;
}

.community-card__photo img,
.community-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.community-card__footer p {
  margin: 0;
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.screen__footer--community {
  position: absolute;
  left: 45px;
  right: 45px;
  bottom: 90px;
  padding: 0;
  background: none;
}

.community-screen__notice {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  margin: 0;
  color: #ff0000;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-align: center;
}

.community-me {
  background: #fff;
}

.community-me__back {
  top: calc(var(--safe-top) + 25px);
  left: 16px;
  width: 24px;
  height: 24px;
  color: #2a2a2b;
}

.community-me__body {
  padding: 148px 16px 142px;
}

.community-me .page-title {
  margin: 0;
  color: #0068b7;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.community-me__field--title {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.community-me__field strong {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-me__title-input {
  padding: 0 4px 8px;
  border: 0;
  border-bottom: 1px solid #8c8c8c;
  border-radius: 0;
  background: transparent;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-me__title-input::placeholder,
.community-me__textarea::placeholder {
  color: #8c8c8c;
}

.community-me__editor {
  margin-top: 25px;
}

.community-me__textarea {
  width: 100%;
  min-height: 260px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: #f0f0f0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  resize: none;
}

.community-me__editor p {
  margin: 4px 4px 0 0;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-align: right;
}

.community-me__upload {
  position: relative;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-top: 18px;
  border: 2px solid #b7b7b7;
  border-radius: 8px;
  background: #fff;
}

.community-me__upload-preview {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.community-me__upload-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #b7b7b7;
  border-radius: 4px;
}

.community-me__upload-icon::before,
.community-me__upload-icon::after {
  content: "";
  position: absolute;
  background: #b7b7b7;
}

.community-me__upload-icon::before {
  left: 4px;
  right: 4px;
  bottom: 5px;
  height: 2px;
}

.community-me__upload-icon::after {
  width: 6px;
  height: 6px;
  top: 5px;
  right: 4px;
  border-radius: 999px;
}

.community-me__upload-action {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 20px;
  height: 20px;
  border: 1px solid #b7b7b7;
  border-radius: 999px;
  background: #f0f0f0;
}

.community-me__upload-action::before,
.community-me__upload-action::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #b7b7b7;
  transform: translate(-50%, -50%);
}

.community-me__upload-action::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.community-me__upload-action.is-remove::after {
  display: none;
}

.community-me .screen__footer {
  position: absolute;
  left: 45px;
  right: 45px;
  bottom: 26px;
  padding: 0;
  background: none;
}

.community-me .screen__footer .cta {
  width: 100%;
  min-height: 52px;
}

.community-me__notice {
  margin: 8px 0 0;
  color: #ff0000;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-align: center;
}

.community-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.community-success-toast {
  position: absolute;
  left: 50%;
  bottom: 151px;
  z-index: 7;
  padding: 8px 20px;
  border-radius: 8px;
  background: rgba(51, 51, 51, 0.9);
  color: #f7f7f7;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.community-action-sheet {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 32px;
  display: grid;
  gap: 12px;
  padding: 0;
  background: none;
  box-shadow: none;
}

.community-action-sheet button {
  min-height: 60px;
  border-radius: 13px;
  background: rgba(82, 82, 82, 0.92);
  backdrop-filter: blur(11px);
  color: #fff;
  font-family: "Apple SD Gothic Neo", "Apple SD 산돌고딕 Neo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.38px;
}

.community-action-sheet__cancel {
  font-weight: 700;
}

.modal-card--community {
  width: min(var(--figma-modal-width), 100%);
  max-width: var(--figma-modal-width);
  border-radius: 8px;
  box-shadow: none;
}

.modal-card--community .modal-card__title {
  padding-top: 38px;
}

.agreements-screen__title {
  margin: 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.agreements-screen__lead {
  margin: 32px 0 0;
  color: #2a2a2b;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.agreements-screen__stack {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.agreements-section {
  display: grid;
  gap: 12px;
}

.agreements-section__title-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.agreements-section__bullet {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #0068b7;
  flex: none;
}

.agreements-section__title-row h2 {
  margin: 0;
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.agreements-section__body {
  display: grid;
  gap: 4px;
}

.agreements-section__body p,
.agreements-table__row span,
.agreements-table__row strong {
  margin: 0;
  color: #2a2a2b;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.agreements-screen__line {
  height: 1px;
  background: #b7b7b7;
}

.agreements-table {
  display: grid;
  gap: 8px;
}

.agreements-table__row {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: start;
}

.agreements-table__row strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.agreements-table__row span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.agreements-consent {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 32px 0;
  border-radius: 8px;
  background: #f7f7f7;
}

.agreements-consent__divider {
  height: 1px;
  background: #d8d8d8;
}

.agreements-consent__items {
  display: grid;
  gap: 8px;
  padding: 0 22px;
}

.agreements-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2a2a2b;
}

.agreements-toggle--all {
  padding: 0 22px;
}

.agreements-toggle--multiline {
  align-items: flex-start;
}

.agreements-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.agreements-toggle__box {
  position: relative;
  width: 24px;
  height: 24px;
  flex: none;
  border: 1px solid #b7b7b7;
  border-radius: 2px;
  background: #fff;
}

.agreements-toggle input:checked + .agreements-toggle__box {
  border-color: #0068b7;
  background: #0068b7;
}

.agreements-toggle input:checked + .agreements-toggle__box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.agreements-toggle__label {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.agreements-toggle__label--small {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.agreements-screen__warning {
  margin: 32px 0 0;
  color: #f12b2b;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-align: center;
}

.agreements-screen__warning strong {
  font-weight: 700;
}

.member-form-screen__body {
  width: 343px;
  margin: 0 auto;
  padding: calc(var(--safe-top) + 160px) 0 42px;
}

.member-form-screen__title {
  margin: 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
  text-align: center;
}

.member-form-screen__stack {
  display: grid;
  gap: 32px;
  margin-top: 78px;
}

.member-line {
  display: block;
  border-bottom: 1px solid #8c8c8c;
}

.member-line__input {
  width: 100%;
  padding: 3px 0 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.member-line__input::placeholder {
  color: #b7b7b7;
  opacity: 1;
}

.member-birth-row {
  display: grid;
  grid-template-columns: 168px 1fr;
  align-items: end;
  gap: 16px;
}

.member-gender {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-right: 12px;
}

.member-gender__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.member-gender__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.member-gender__box {
  width: 24px;
  height: 24px;
  border: 1px solid #b7b7b7;
  border-radius: 2px;
  background: #fff;
  flex: none;
}

.member-gender__item input:checked + .member-gender__box {
  border-color: #0068b7;
  background: #0068b7;
}

.member-gender__item input:checked + .member-gender__box::after {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  margin: 3px 0 0 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.member-gender__label {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.member-address-row {
  position: relative;
}

.member-line--address .member-line__input {
  padding-right: 120px;
}

.member-address-row__search {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 109px;
  height: 37px;
  background: #0068b7;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.member-line--blank .member-line__input::placeholder {
  color: transparent;
}

.drawer-hero {
  padding: 148px 16px 0;
}

.drawer-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 186px;
  align-items: start;
  gap: 12px;
}

.drawer-profile > div {
  min-width: 0;
}

.drawer-profile strong {
  display: block;
  color: #0068b7;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.drawer-profile span {
  display: block;
  margin-top: 4px;
  color: #ff0000;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.rank-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 186px;
  height: 40px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #0068b7;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.rank-link .topbar__icon {
  width: 24px;
  height: 24px;
}

.app-drawer__body--menu {
  padding: 69px 16px 0;
}

.app-drawer__body--mypage {
  padding: 69px 16px 0;
}

.menu__list--plain,
.drawer-menu {
  margin-top: 0;
  width: 343px;
}

.menu-disclosure {
  width: 100%;
  border-bottom: 0;
}

.menu-row {
  min-height: 48px;
  padding: 12px 8px;
  border-bottom: 1px solid #2a2a2b;
}

.menu-row strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.menu-row.is-active {
  background: rgba(0, 104, 183, 0.12);
}

.menu-row__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.menu-disclosure__panel {
  display: grid;
  width: 100%;
  justify-items: stretch;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 8px;
  transition:
    max-height 220ms ease,
    opacity 160ms ease,
    padding 220ms ease;
}

.menu-disclosure.is-open .menu-disclosure__panel {
  max-height: 120px;
  opacity: 1;
  padding: 12px 8px 0;
}

.menu-disclosure.is-open .menu-row__chevron {
  transform: rotate(-90deg);
}

.menu-submenu__link {
  display: block;
  width: 100%;
  padding: 0;
  color: #8c8c8c;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
  text-align: left;
}

.menu-submenu__link span {
  display: inline-flex;
  align-items: center;
  width: 100%;
  min-height: 24px;
  padding: 0 0 4px;
  border-bottom: 0.7px solid #8c8c8c;
}

.menu-submenu__link.is-current {
  color: #8c8c8c;
}

.package-screen {
  background: #fff;
}

.package-screen__body {
  padding: calc(var(--safe-top) + 143px) 0 0;
}

.package-screen__hero {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.package-screen__title {
  margin: 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.package-screen__copy {
  margin: 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.package-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: 31px;
}

.package-choice {
  position: relative;
  display: block;
  min-height: 342px;
  padding: 21px 0 18px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  text-align: center;
}

.package-choice--dream {
  background: #e30413;
}

.package-choice--share {
  background: #95c83d;
}

.package-choice__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.9) 0 3px, transparent 3px) 0 0 / 38px 38px,
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.9) 0 3px, transparent 3px) 0 0 / 38px 38px,
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.9) 0 3px, transparent 3px) 0 0 / 38px 38px,
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.9) 0 3px, transparent 3px) 0 0 / 38px 38px;
}

.package-choice__title,
.package-choice__pack,
.package-choice__logo-grid {
  position: relative;
  z-index: 1;
}

.package-choice__title {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.package-choice__pack {
  display: block;
  width: 119px;
  margin: 39px auto 0;
}

.package-choice__logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  justify-items: center;
  row-gap: 4px;
  width: 156px;
  margin: 22px auto 0;
}

.package-choice__logo {
  display: block;
  width: 56px;
  height: 52px;
  object-fit: contain;
}

.package-choice__logo--1,
.package-choice__logo--3 {
  grid-column: 1 / 3;
}

.package-choice__logo--2 {
  grid-column: 4 / 7;
}

.package-choice__logo--4 {
  grid-column: 3 / 5;
}

.package-choice__logo--5 {
  grid-column: 5 / 7;
}

.package-screen__footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-bottom: 0;
}

.package-screen__footer .cta {
  width: 285px;
  height: 52px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.package-screen__note {
  margin: 0;
  color: #ff0000;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.home-screen {
  overflow: hidden;
  color: #fff;
}

.home-screen--dream {
  background: #e30413;
}

.home-screen--share {
  background: #95c83d;
}

.home-screen__pattern {
  position: absolute;
  inset: 0 0 360px;
  opacity: 0.2;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.95) 0 3px, transparent 3px) 0 0 / 38px 38px,
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.95) 0 3px, transparent 3px) 0 0 / 38px 38px,
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.95) 0 3px, transparent 3px) 0 0 / 38px 38px,
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.95) 0 3px, transparent 3px) 0 0 / 38px 38px;
}

.home-screen__hero {
  position: relative;
  padding-top: calc(var(--safe-top) + 142px);
}

.topbar__brand-image {
  display: block;
  width: 132px;
  height: auto;
}

.home-screen__product {
  display: block;
  width: 205px;
  margin: 0 auto;
}

.home-screen__logos {
  width: 343px;
  margin: 19px auto 0;
}

.team-logo-row {
  display: block;
  width: 100%;
}

.home-screen__switch {
  position: absolute;
  top: 255px;
  right: 4px;
  width: 44px;
  height: 144px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.home-screen__switch .topbar__icon {
  width: 24px;
  height: 24px;
}

.home-screen__sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 360px;
  padding-top: 123px;
  border-radius: 32px 32px 0 0;
  background: #fff;
}

.home-screen__metric {
  margin: 0;
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.home-screen__metric strong {
  color: #0068b7;
  font-weight: 700;
}

.home-screen__metric + .home-screen__metric {
  margin-top: 14px;
}

.home-screen__sheet .cta {
  width: 285px;
  height: 52px;
  margin-top: 44px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.home-screen__sheet .pager {
  margin-top: 46px;
}

.topbar,
.menu-topbar {
  width: 344px;
  max-width: 344px;
  grid-template-columns: 24px 154px 24px;
  gap: 71px;
}

.topbar__brand-lockup {
  width: 154px;
  height: 31px;
}

.topbar__brand-image {
  width: 154px;
  height: 31px;
}

/* Figma remaining precision overrides */
.collection-screen {
  overflow: hidden;
  background: #0068b7;
  color: #ffffff;
}

.collection-screen__pattern,
.ranking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.18) 0 3px, transparent 3.2px) 0 0 / 32px 32px,
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.18) 0 3px, transparent 3.2px) 16px 0 / 32px 32px,
    radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.18) 0 3px, transparent 3.2px) 0 16px / 32px 32px,
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.18) 0 3px, transparent 3.2px) 16px 16px / 32px 32px;
  opacity: 0.95;
  pointer-events: none;
}

.collection-screen__hero,
.ranking__hero {
  position: relative;
  z-index: 1;
}

.collection-screen__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 148px 16px 0;
}

.collection-screen__hero-copy h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.collection-screen__hero-copy p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-screen__hero-copy strong {
  display: inline-block;
  padding: 0 8px;
  border-radius: 8px;
  background: #f8e56b;
  color: #0068b7;
  font-weight: 700;
}

.collection-screen__team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 40px;
  padding: 0 10px;
  border-radius: 12px;
  background: #ff1e1e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary {
  position: relative;
  z-index: 1;
  width: 343px;
  margin: 23px auto 0;
  padding: 28px 16px 18px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
}

.collection-summary__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary__metric strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.collection-summary__stats--figma {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.collection-summary__pill {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 40px;
  border-radius: 8px;
  background: #f3f3f3;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary__pill span,
.collection-summary__pill strong,
.collection-summary__pill em {
  font-style: normal;
}

.collection-summary__pill.is-active {
  background: #0068b7;
  color: #ffffff;
}

.collection-team-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0;
  width: 343px;
  margin: 17px auto 0;
}

.collection-team-tab {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2a2a2b;
  opacity: 0.96;
}

.collection-team-tab img {
  display: block;
  width: 48px;
  height: 32px;
  object-fit: contain;
}

.collection-team-tab span {
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.collection-team-tabs__indicator {
  position: relative;
  z-index: 1;
  width: 343px;
  height: 16px;
  margin: 6px auto 0;
}

.collection-team-tabs__indicator span {
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 999px;
  background: #b7b7b7;
  transition: none;
}

.collection-sheet {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding-bottom: 24px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  justify-content: center;
  gap: 18px 6px;
}

.player-card--figma {
  width: 80px;
  overflow: hidden;
  border: 2px solid #0068b7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.player-card--figma img {
  display: block;
  width: 100%;
  height: auto;
}

.player-card__footer {
  display: none;
}

.predict-option__team {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.predict-option__team img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.predict-option__label {
  display: inline-block;
  min-width: 36px;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
}

.ranking {
  position: relative;
  overflow: hidden;
  background: #0068b7;
}

.ranking__hero {
  height: 430px;
}

.ranking__back {
  position: absolute;
  left: 16px;
  bottom: 87px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.ranking-podium {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 102px;
}

.ranking-podium--primary {
  top: 141px;
  left: 50%;
  transform: translateX(-50%);
}

.ranking-podium--secondary {
  top: 197px;
  left: 22px;
}

.ranking-podium--tertiary {
  top: 227px;
  right: 56px;
}

.ranking-podium__banner {
  display: grid;
  align-content: start;
  justify-items: center;
  width: 102px;
  padding: 22px 8px 20px;
  background: #ffffff;
  clip-path: polygon(12% 0, 88% 0, 88% 68%, 50% 100%, 12% 68%);
  text-align: center;
}

.ranking-podium--primary .ranking-podium__banner {
  min-height: 138px;
}

.ranking-podium--secondary .ranking-podium__banner,
.ranking-podium--tertiary .ranking-podium__banner {
  min-height: 112px;
}

.ranking-podium__banner strong {
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.ranking-podium__banner span {
  margin-top: 4px;
  color: #0068b7;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.ranking-podium__banner em {
  margin-top: 1px;
  color: #0068b7;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.24px;
  font-style: normal;
}

.ranking-podium img {
  display: block;
  width: 53px;
  height: 53px;
}

.ranking__sheet {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 20px 16px 24px;
  border-radius: 32px 32px 0 0;
  background: #ffffff;
}

.ranking-row {
  display: grid;
  grid-template-columns: 24px 40px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0;
  border-top: 1px solid #ececec;
}

.ranking-row:first-child {
  border-top: 0;
}

.ranking-row__rank,
.ranking-row__name,
.ranking-row__points {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.ranking-row__team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.ranking-row__team img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ranking-row__points strong {
  color: #0068b7;
}

.ranking__sheet .pager {
  margin-top: 14px;
}

.community-screen {
  display: flex;
  flex-direction: column;
}

.community-screen__body {
  width: 343px;
  margin: 0 auto;
  padding: calc(var(--safe-top) + 148px) 0 148px;
  flex: 1;
}

.community-screen__lead {
  width: 206px;
  margin: 8px auto 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
}

.community-grid--figma {
  width: 343px;
  margin: 12px auto 0;
  grid-template-columns: repeat(2, 168px);
  gap: 8px 7px;
  margin-bottom: 112px;
}

.community-tile--figma {
  padding: 6px;
  border: 2px solid #0068b7;
  border-radius: 8px;
  background: #ffffff;
}

.community-tile--figma .community-tile__photo {
  height: 96px;
  border-radius: 6px;
  background: #a7cae6;
}

.community-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-tile--figma .community-tile__meta {
  margin-top: 6px;
}

.community-tile--figma .community-tile__meta span {
  min-width: 72px;
  height: 24px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #e3e3e3;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.community-tile--figma strong {
  margin-top: 4px;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-tile__button {
  min-height: 40px;
  margin-top: 8px;
  border-radius: 8px;
}

.community-card--detail {
  width: 350px;
  margin: 12px auto 0;
  padding: 20px 8px 14px;
  border: 2px solid #0068b7;
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 112px;
}

.community-card--detail .community-card__photo {
  height: 270px;
  margin-top: 22px;
  border-radius: 0;
}

.community-card__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.community-card__footer p {
  margin: 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.32px;
}

.community-screen .screen__footer--community {
  position: static;
  padding: 0 45px 0;
  background: transparent;
}

.community-screen__notice {
  position: static;
  margin: 12px 0 30px;
  color: #ff0000;
  letter-spacing: -0.24px;
}

.community-me__body {
  width: 343px;
  margin: 0 auto;
  padding: calc(var(--safe-top) + 148px) 0 140px;
}

.community-me__field {
  gap: 12px;
  margin-top: 25px;
}

.community-me__field strong {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-me__title-input {
  padding: 0 4px 8px;
  border-bottom: 1px solid #8c8c8c;
  color: #2a2a2b;
}

.community-me__editor {
  margin-top: 25px;
}

.community-me__textarea {
  min-height: 260px;
  padding: 8px;
  border-radius: 8px;
  background: #f3f3f3;
}

.community-me__editor p {
  margin: 4px 4px 0 0;
}

.community-me__upload {
  margin-top: 20px;
  border: 1px solid #b7b7b7;
}

.community-me__upload-action {
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
}

.community-me .screen__footer {
  padding-bottom: 38px;
}

.collection-screen {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #0068b7;
  color: #fff;
}

.collection-screen__pattern {
  background:
    radial-gradient(circle at 10px 10px, rgba(255, 255, 255, 0.18) 0 3px, transparent 3.2px) 0 0 / 28px 28px,
    radial-gradient(circle at 18px 18px, rgba(255, 255, 255, 0.12) 0 3px, transparent 3.2px) 0 0 / 28px 28px,
    #0068b7;
  opacity: 1;
}

.collection-screen__hero {
  position: relative;
  z-index: 1;
  display: block;
  padding: calc(var(--safe-top) + 108px) 24px 0 16px;
}

.collection-screen__hero-copy {
  min-width: 0;
  max-width: 244px;
}

.collection-screen__hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: -0.36px;
}

.collection-screen__hero-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-screen__hero-copy p strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  margin: 0 4px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  color: #0068b7;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.collection-screen__team-badge {
  position: absolute;
  top: calc(var(--safe-top) + 4px);
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ff2e2e;
  color: #fff;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary {
  position: relative;
  z-index: 1;
  margin: 20px 16px 0;
  padding: 20px 16px 16px;
  border-radius: 8px;
  background: #fff;
  color: #2a2a2b;
}

.collection-summary__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}

.collection-summary__metric span,
.collection-summary__metric strong {
  color: #2a2a2b;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary__metric span {
  font-weight: 500;
}

.collection-summary__metric strong {
  font-weight: 700;
}

.collection-summary__stats--figma {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.collection-summary__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  border-radius: 8px;
  border: 0;
  background: #f0f0f0;
  color: #2a2a2b;
}

.collection-summary__pill.is-active {
  background: #0068b7;
  color: #fff;
}

.collection-summary__pill span,
.collection-summary__pill strong,
.collection-summary__pill em {
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-summary__pill span {
  font-weight: 500;
}

.collection-summary__pill strong {
  font-weight: 700;
}

.collection-summary__pill em {
  font-weight: 500;
}

.collection-team-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0;
  margin: 16px 12px 0;
  padding: 0 8px;
  height: 58px;
  border-radius: 14px 14px 0 0;
  background: #fff;
}

.collection-team-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  border: 0;
  background: transparent;
}

.collection-team-tab img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.collection-team-tab span {
  display: inline-block;
  color: #2a2a2b;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.collection-team-tabs__indicator {
  display: none;
}

.collection-team-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: #8c8c8c;
  transform: translateX(-50%);
}

.collection-sheet {
  position: relative;
  z-index: 1;
  margin-top: 0;
  min-height: 404px;
  padding: 8px 15px 40px;
  border-radius: 0;
  background: #fff;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  gap: 16px 8px;
  justify-content: center;
}

.player-card--figma {
  overflow: hidden;
  border: 1.5px solid #0068b7;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.player-card--figma img {
  display: block;
  width: 100%;
  aspect-ratio: 80 / 121;
  object-fit: cover;
}

.player-card__footer {
  display: none;
}

.play-screen-direct__title {
  top: 137px;
  width: 336px;
}

.play-screen-direct__choices {
  top: 301px;
  left: 16px;
  right: 16px;
  grid-template-columns: repeat(2, 168px);
}

.play-screen-direct__choice {
  box-shadow: none;
}

.play-screen-direct__choice span {
  display: block;
}

.play-screen-direct__sheet {
  padding-top: 94px;
}

.panel-button--primary {
  width: 343px;
}

.ranking {
  position: relative;
  overflow: hidden;
  background: #0068b7;
}

.ranking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10px 10px, rgba(255, 255, 255, 0.18) 0 3px, transparent 3.2px) 0 0 / 28px 28px,
    radial-gradient(circle at 18px 18px, rgba(255, 255, 255, 0.12) 0 3px, transparent 3.2px) 0 0 / 28px 28px;
}

.ranking__hero {
  position: relative;
  height: 452px;
}

.ranking__back {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #fff;
}

.ranking-podium {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 97px;
  gap: 0;
  text-align: center;
}

.ranking-podium__banner {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  width: 97px;
  height: 124px;
  padding: 14px 8px 28px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
}

.ranking-podium strong {
  color: #2a2a2b;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.ranking-podium span {
  margin-top: 4px;
  color: #0068b7;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.ranking-podium em {
  margin-top: 2px;
  color: #0068b7;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.ranking-podium img {
  width: 44px;
  margin-top: -2px;
}

.ranking-podium--primary {
  top: 163px;
  left: 139px;
}

.ranking-podium--secondary {
  top: 221px;
  left: 22px;
}

.ranking-podium--tertiary {
  top: 252px;
  left: 256px;
}

.ranking__sheet {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 28px 16px 24px;
  border-radius: 32px 32px 0 0;
  background: #fff;
}

.ranking-row {
  display: grid;
  grid-template-columns: 24px 32px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 45px;
  padding: 0;
}

.ranking-row + .ranking-row {
  margin-top: 4px;
}

.ranking-row__rank,
.ranking-row__name,
.ranking-row__points {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.ranking-row__team {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 24px;
}

.ranking-row__team img {
  width: 32px;
  height: 24px;
  object-fit: contain;
}

.ranking-row__points strong {
  color: #0068b7;
}

.ranking__sheet .pager {
  margin-top: 22px;
}

.community-screen__body {
  width: 343px;
  margin: 0 auto;
  padding: 148px 0 0;
}

.community-screen--detail .community-screen__body {
  width: 350px;
}

.community-screen__lead {
  margin: 8px 0 0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
}

.community-grid--figma {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 168px);
  gap: 6px;
}

.community-tile--figma,
.community-card--detail {
  border: 1.5px solid #0068b7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.community-tile--figma {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 206px;
  padding: 7px;
}

.community-card--detail {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 350px;
  padding: 20px 8px;
  border-width: 2px;
}

.community-tile__photo,
.community-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 104, 183, 0.4);
}

.community-tile__photo {
  height: 96px;
}

.community-card__photo {
  width: 334px;
  height: 270px;
  margin-top: 0;
}

.community-tile__photo img,
.community-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.community-placeholder__asset {
  display: block;
  width: 32px;
  height: 32px;
}

.community-tile__meta,
.community-card__title-row,
.community-card__head {
  display: flex;
  align-items: center;
}

.community-tile__meta {
  justify-content: space-between;
  margin-top: 0;
}

.community-tile__meta span,
.community-card__title-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 8px;
  background: #e3e3e3;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  white-space: nowrap;
}

.community-tile--figma strong,
.community-card__title-row strong {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-tile--figma strong {
  display: block;
  margin-top: -1px;
}

.community-tile__like,
.community-card__like,
.community-card__close {
  border: 0;
  background: transparent;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
}

.community-tile__like,
.community-card__like {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2a2a2b;
}

.community-card__like {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.community-tile__heart,
.community-card__heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.community-tile__heart img,
.community-card__heart img {
  display: block;
}

.community-card__heart {
  width: 32px;
  height: 32px;
}

.community-tile__heart img {
  width: 16.7px;
  height: 15px;
}

.community-card__heart img {
  width: 26px;
  height: 23.28px;
}

.community-tile__button {
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  border-radius: 8px;
  background: #0068b7;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-card__head {
  justify-content: space-between;
  width: 334px;
}

.community-card__title-row {
  gap: 8px;
}

.community-card__close {
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.community-card__close img {
  width: 20px;
  height: 20px;
  margin: auto;
}

.community-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 334px;
  gap: 16px;
}

.community-card__footer p {
  flex: 1 1 auto;
  margin: 0;
  color: #2a2a2b;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.community-screen .screen__footer--community {
  padding: 12px 45px 0;
}

.community-screen .screen__footer--community .cta {
  width: 285px;
}

.community-screen__notice {
  margin: 12px auto 0;
  color: #ff0000;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-align: center;
}

.community-me__back {
  top: calc(var(--safe-top) + 73px);
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2a2a2b;
}

.community-me__back img {
  display: block;
  width: 24px;
  height: 24px;
}

.community-me__body {
  width: 343px;
  margin: 0 auto;
  padding: calc(var(--safe-top) + 148px) 0 0;
}

.community-me__field--title {
  margin-top: 24px;
}

.community-me__field strong {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-me__title-input {
  width: 100%;
  height: 37px;
  margin-top: 0;
  padding: 8px 4px;
  border: 0;
  border-bottom: 1px solid #8c8c8c;
  border-radius: 0;
  background: transparent;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-me__title-input::placeholder,
.community-me__textarea::placeholder {
  color: #8c8c8c;
}

.community-me__editor {
  margin-top: 25px;
}

.community-me__textarea {
  width: 100%;
  min-height: 260px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: #f0f0f0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  resize: none;
}

.community-me__editor p {
  margin: 4px 4px 0 0;
  color: #8c8c8c;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-align: right;
}

.community-me__upload {
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: 6px;
  border: 2px solid #b7b7b7;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.community-me__upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-me__upload-preview--sample {
  object-position: 42% 8%;
}

.community-me__upload-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-me__upload-icon img {
  width: 24px;
  height: 24px;
}

.community-me__upload-action {
  position: absolute;
  bottom: -8px;
  right: -6px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.community-me__upload-action img {
  width: 24px;
  height: 24px;
}

.community-me__upload-action.is-remove img {
  width: 20px;
  height: 20px;
}

.community-me .screen__footer {
  padding: 24px 45px 38px;
}

.community-me .screen__footer .cta {
  width: 285px;
}

.community-me__notice {
  margin-top: 12px;
  color: #ff0000;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-align: center;
}

.community-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 22;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
}

.community-action-sheet {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 32px;
  z-index: 23;
  display: grid;
  gap: 12px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.community-action-sheet__group {
  overflow: hidden;
  border-radius: 13px;
  backdrop-filter: blur(11px);
}

.community-action-sheet__group button,
.community-action-sheet__cancel {
  width: 100%;
  height: 60px;
  border: 0;
  background: rgba(42, 42, 43, 0.4);
  color: #fff;
  font-family: "Apple SD Gothic Neo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.38px;
  text-align: center;
}

.community-action-sheet__separator {
  display: block;
  width: 100%;
  height: 1px;
}

.community-action-sheet__cancel {
  border-radius: 13px;
  backdrop-filter: blur(40px);
  font-weight: 700;
}

.modal-backdrop--community {
  position: fixed;
  inset: 0;
  z-index: 22;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
}

.community-confirm-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 24;
  width: 285px;
  padding: 36px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.community-confirm-modal__title,
.community-confirm-modal__caption {
  margin: 0;
  text-align: center;
}

.community-confirm-modal__title {
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-confirm-modal__caption {
  margin-top: 12px;
  color: #ff0000;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.community-confirm-modal__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.community-confirm-modal__button {
  width: 109px;
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: #f0f0f0;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.community-confirm-modal__button.is-primary {
  background: #0068b7;
  color: #fff;
}

.community-success-toast {
  position: fixed;
  left: 50%;
  top: 625px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 229px;
  min-height: 37px;
  padding: 8px 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  color: #f7f7f7;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  transform: translateX(-50%);
}

/* Exact Figma pass: landing / package / home / predict */
.topbar,
.menu-topbar {
  width: 344px;
  max-width: 344px;
  grid-template-columns: 24px 132px 24px;
  gap: 82px;
}

.topbar__brand-lockup {
  width: 132px;
  height: 20px;
}

.topbar__brand-image {
  display: block;
  width: 132px;
  max-width: 132px;
  height: 20px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.topbar__brand-lockup--split {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 20px;
  gap: 4px;
}

.topbar__brand-lockup--split .topbar__brand-part--left {
  width: 53px;
  height: 16px;
}

.topbar__brand-lockup--split .topbar__brand-part--x {
  width: 12px;
  height: 12px;
}

.topbar__brand-lockup--split .topbar__brand-part--right {
  width: 55px;
  height: 20px;
}

.landing__title {
  top: 89px;
  width: 336px;
  height: 140px;
  max-width: calc(100% - 39px);
}

.landing__hero {
  top: 89px;
  width: 344px;
  height: 611px;
  max-width: calc(100% - 31px);
}

.landing__title img,
.landing__hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing__actions {
  bottom: 90px;
  width: 285px;
}

.cta--social {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.cta__label {
  min-width: 160px;
}

.package-screen__body {
  padding-top: calc(var(--safe-top) + 100px);
}

.package-screen__hero {
  gap: 12px;
}

.package-screen__title,
.package-screen__copy {
  width: 343px;
  margin-left: auto;
  margin-right: auto;
}

.package-screen__copy {
  letter-spacing: -0.32px;
}

.package-choice-grid {
  grid-template-columns: 184px 184px;
  gap: 7px;
  justify-content: center;
  margin-top: 36px;
}

.package-choice {
  min-height: 360px;
  padding: 33px 0 0;
}

.package-choice__pattern,
.home-screen__pattern {
  display: none;
}

.package-choice--dream,
.home-screen--dream {
  background-color: #e30413;
  background-image:
    radial-gradient(circle at 50% 19%, rgba(255, 255, 255, 0.2) 0 4px, transparent 4.1px),
    radial-gradient(circle at 19% 50%, rgba(255, 255, 255, 0.2) 0 4px, transparent 4.1px),
    radial-gradient(circle at 81% 50%, rgba(255, 255, 255, 0.2) 0 4px, transparent 4.1px),
    radial-gradient(circle at 50% 81%, rgba(255, 255, 255, 0.2) 0 4px, transparent 4.1px);
  background-size: 32px 32px;
}

.package-choice--share,
.home-screen--share {
  background-color: #80ba27;
  background-image:
    radial-gradient(circle at 50% 19%, rgba(255, 255, 255, 0.2) 0 4px, transparent 4.1px),
    radial-gradient(circle at 19% 50%, rgba(255, 255, 255, 0.2) 0 4px, transparent 4.1px),
    radial-gradient(circle at 81% 50%, rgba(255, 255, 255, 0.2) 0 4px, transparent 4.1px),
    radial-gradient(circle at 50% 81%, rgba(255, 255, 255, 0.2) 0 4px, transparent 4.1px);
  background-size: 32px 32px;
}

.package-choice__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.package-choice__pack {
  width: 146px;
  height: 119px;
  margin-top: 20px;
  object-fit: contain;
}

.package-choice__logo-grid {
  position: relative;
  display: block;
  width: 172px;
  height: 106px;
  margin: 20px auto 0;
}

.package-choice__logo {
  position: absolute;
  width: 48px;
  height: 48px;
}

.package-choice__logo--1 {
  top: 0;
  left: 28px;
}

.package-choice__logo--2 {
  top: 0;
  right: 28px;
}

.package-choice__logo--3 {
  top: 58px;
  left: 0;
}

.package-choice__logo--4 {
  top: 58px;
  left: 62px;
}

.package-choice__logo--5 {
  top: 58px;
  right: 0;
}

.package-screen__footer {
  gap: 10px;
  margin-top: 18px;
}

.package-screen__footer .cta {
  width: 285px;
  height: 52px;
}

.home-screen__hero {
  min-height: 406px;
  padding-top: calc(var(--safe-top) + 98px);
  gap: 0;
}

.home-screen__product {
  display: block;
  width: 205px;
  height: 166px;
  margin: 0 auto;
  object-fit: contain;
}

.home-screen__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 343px;
  height: 60px;
  margin: 19px auto 0;
}

.home-screen__logo {
  display: block;
  width: 60px;
  height: 60px;
  flex: none;
}

.home-screen__switch {
  top: 346px;
  right: 0;
  width: 24px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-screen__sheet {
  min-height: 360px;
  height: 360px;
  padding-top: 92px;
}

.home-screen__metric {
  width: 231px;
  text-align: center;
}

.home-screen__sheet .cta {
  width: 285px;
  height: 52px;
  margin-top: 52px;
}

.home-screen__sheet .pager {
  margin-top: 52px;
}

/* Global grid pass: Figma 기본_컬럼 6 / 마진 16 / 거터 8 */
.topbar,
.menu-topbar {
  --figma-topbar-icon-size: calc(24px * var(--figma-stage-scale));
  --figma-topbar-brand-height: calc(20px * var(--figma-stage-scale));
  width: var(--figma-content-width);
  max-width: var(--figma-content-width);
  min-width: 0;
  grid-template-columns: var(--figma-topbar-icon-size) minmax(0, 1fr) var(--figma-topbar-icon-size);
  gap: 0;
}

.topbar__brand--light,
.topbar__brand-lockup--light {
  width: calc(111px * var(--figma-stage-scale));
  min-width: calc(111px * var(--figma-stage-scale));
  height: var(--figma-topbar-brand-height);
}

.topbar__brand--dark,
.topbar__brand-lockup--dark {
  width: calc(128px * var(--figma-stage-scale));
  min-width: calc(128px * var(--figma-stage-scale));
  height: var(--figma-topbar-brand-height);
}

.topbar__brand-image {
  width: 100%;
  height: var(--figma-topbar-brand-height);
}

.topbar__button,
.topbar__slot,
.topbar__icon {
  width: var(--figma-topbar-icon-size);
  height: var(--figma-topbar-icon-size);
}

.screen__body,
.agreements-screen__body,
.member-form-screen__body,
.package-screen__body,
.community-screen__body,
.community-me__body,
.drawer-hero,
.app-drawer__body--menu,
.app-drawer__body--mypage {
  width: var(--figma-content-width);
  max-width: var(--figma-content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.screen__footer,
.community-screen .screen__footer--community {
  padding-left: var(--figma-cta-side-gap);
  padding-right: var(--figma-cta-side-gap);
}

.screen__footer .cta,
.community-screen .screen__footer--community .cta,
.home-screen__sheet .cta,
.predict-screen .screen__footer .cta,
.app-drawer__footer .cta,
.predict-card__head,
.predict-row,
.predict-locked-card {
  width: var(--figma-cta-width);
}

.home-screen__logos,
.drawer-hero,
.app-drawer__body--menu,
.app-drawer__body--mypage,
.community-screen__body,
.community-me__body {
  width: var(--figma-content-width);
}

.collection-screen__hero {
  padding-left: var(--figma-page-margin);
  padding-right: var(--figma-page-margin);
}

.collection-summary,
.collection-team-tabs {
  margin-left: var(--figma-page-margin);
  margin-right: var(--figma-page-margin);
}

.topbar:not(.is-dark) .topbar__icon {
  filter: none;
}

.package-choice {
  width: 184px;
  height: 360px;
}

.package-choice__card-image {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.package-choice-grid.has-selection .package-choice.is-muted {
  filter: grayscale(1) saturate(0.12);
  opacity: 0.48;
}

.package-choice-grid.has-selection .package-choice.is-selected {
  filter: none;
  opacity: 1;
}

.topbar,
.menu-topbar {
  width: 344px;
  max-width: 344px;
  min-width: 344px;
  grid-template-columns: 24px 132px 24px;
  gap: 82px;
}

.topbar__brand,
.menu-topbar .topbar__brand {
  width: 132px;
  height: 20px;
  min-width: 132px;
}

.topbar__brand-lockup {
  width: 132px;
  height: 20px;
}

.topbar__brand-image {
  width: 132px;
  height: 20px;
  object-fit: contain;
}

.topbar__button,
.topbar__slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.topbar__icon {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  filter: none !important;
}

.topbar:not(.is-dark) .topbar__icon {
  filter: none !important;
}

.topbar__button:hover,
.topbar__button:active {
  transform: none !important;
  background: transparent !important;
  opacity: 1;
}

/* Layout exact pass v2: keep this block last so earlier legacy passes do not override it */

.topbar,
.menu-topbar {
  width: var(--figma-content-width);
  max-width: var(--figma-content-width);
  grid-template-columns: 28px 151px 28px;
  gap: calc((var(--figma-content-width) - 207px) / 2);
}

.topbar__brand,
.topbar__brand-lockup {
  width: 151px;
  height: 23px;
  min-width: 151px;
}

.topbar__brand-image {
  width: 147px;
  height: 23px;
  object-fit: contain;
}

.topbar__button,
.topbar__slot,
.topbar__icon {
  width: 28px;
  height: 28px;
}

.landing__background img {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  transform-origin: center center;
}

.landing__title {
  top: 120px;
  width: min(398px, calc(100vw - 32px));
  height: auto;
}

.landing__hero {
  top: 128px;
  width: min(408px, calc(100vw - 22px));
  height: auto;
}

.landing__actions {
  bottom: 78px;
  width: var(--figma-cta-width);
}

.cta--social {
  min-height: 60px;
  border-radius: 9px;
  font-size: 17px;
}

.cta__label {
  min-width: 184px;
}

.package-screen__body {
  padding-top: calc(var(--safe-top) + 164px);
}

.package-screen__hero {
  gap: 20px;
}

.package-screen__title,
.package-screen__copy {
  width: min(394px, calc(100vw - 36px));
}

.package-screen__title {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.package-screen__copy {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.package-choice-grid {
  width: min(398px, calc(100vw - 32px));
  grid-template-columns: repeat(2, minmax(0, 196px));
  gap: 6px;
  margin: 36px auto 0;
}

.package-choice {
  min-height: 392px;
  padding-top: 24px;
}

.package-choice__title {
  font-size: 19px;
  line-height: 25px;
  letter-spacing: -0.38px;
}

.package-choice__pack {
  width: 168px;
  height: 137px;
  margin-top: 24px;
}

.package-choice__logo-grid {
  width: 184px;
  height: 118px;
  margin-top: 24px;
}

.package-choice__logo {
  width: 52px;
  height: 52px;
}

.package-choice__logo--1 {
  left: 30px;
}

.package-choice__logo--2 {
  right: 30px;
}

.package-choice__logo--3,
.package-choice__logo--4,
.package-choice__logo--5 {
  top: 66px;
}

.package-choice__logo--4 {
  left: 66px;
}

.package-screen__footer {
  gap: 12px;
  margin-top: 22px;
}

.package-screen__footer .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.package-screen__note {
  font-size: 13px;
  line-height: 17px;
}

.home-screen__hero {
  padding-top: calc(var(--safe-top) + 118px);
}

.home-screen__product {
  width: 235px;
  height: 190px;
}

.home-screen__logos {
  width: var(--figma-content-width);
  height: 69px;
  margin-top: 24px;
}

.home-screen__logo {
  width: 69px;
  height: 69px;
}

.home-screen__switch {
  top: 382px;
  right: 2px;
  width: 28px;
  height: 44px;
}

.home-screen__switch .topbar__icon {
  width: 28px;
  height: 28px;
}

.home-screen__sheet {
  min-height: 448px;
  height: 448px;
  padding-top: 108px;
}

.home-screen__metric {
  width: 265px;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.home-screen__metric + .home-screen__metric {
  margin-top: 16px;
}

.home-screen__sheet .cta {
  width: var(--figma-cta-width);
  height: 60px;
  margin-top: 56px;
}

.home-screen__sheet .pager {
  margin-top: 44px;
}

/* Final exact pass: play screen 239:8662 */
.play-screen-direct__title {
  top: 157px;
  left: 50%;
  width: 385px;
  height: auto;
  transform: translateX(-50%);
}

.play-screen-direct__choices {
  top: 345px;
  left: 18px;
  right: 18px;
  width: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  justify-content: stretch;
  transform: none;
}

.play-screen-direct__choice {
  min-height: 128px;
  height: 128px;
  padding: 0;
}

.play-screen-direct__choice span {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.play-screen-direct__sheet {
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 425px;
  height: 425px;
  padding: 108px 18px 28px;
}

.play-screen-direct__summary {
  gap: 16px;
  width: 265px;
}

.play-screen-direct__metric {
  width: 265px;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.play-screen-direct__links {
  gap: 14px;
  width: 327px;
  margin-top: 42px;
}

.play-screen-direct__links .panel-button--primary {
  width: 327px;
  min-height: 60px;
}

/* Final exact pass: play screen 239:8662 */
.play-screen-direct__title {
  top: 157px;
  left: 50%;
  width: 385px;
  height: auto;
  transform: translateX(-50%);
}

.play-screen-direct__choices {
  top: 345px;
  left: 18px;
  right: 18px;
  width: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  justify-content: stretch;
  transform: none;
}

.play-screen-direct__choice {
  min-height: 128px;
  height: 128px;
  padding: 0;
}

.play-screen-direct__choice span {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.play-screen-direct__sheet {
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 425px;
  height: 425px;
  padding: 108px 18px 28px;
}

.play-screen-direct__summary {
  gap: 16px;
  width: 265px;
}

.play-screen-direct__metric {
  width: 265px;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.play-screen-direct__links {
  gap: 14px;
  width: 327px;
  margin-top: 42px;
}

.play-screen-direct__links .panel-button--primary {
  width: 327px;
  min-height: 60px;
}

/* Final exact pass: play screen 239:8662 */
.play-screen-direct__title {
  top: 157px;
  left: 50%;
  width: 385px;
  height: auto;
  transform: translateX(-50%);
}

.play-screen-direct__choices {
  top: 345px;
  left: 18px;
  right: 18px;
  width: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  justify-content: stretch;
  transform: none;
}

.play-screen-direct__choice {
  min-height: 128px;
  height: 128px;
  padding: 0;
}

.play-screen-direct__choice span {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.play-screen-direct__sheet {
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 425px;
  height: 425px;
  padding: 108px 18px 28px;
}

.play-screen-direct__summary {
  gap: 16px;
  width: 265px;
}

.play-screen-direct__metric {
  width: 265px;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.play-screen-direct__links {
  gap: 14px;
  width: 327px;
  margin-top: 42px;
}

.play-screen-direct__links .panel-button--primary {
  width: 327px;
  min-height: 60px;
}

/* Final exact pass: collection page locked to Figma 230:5516 / 239:8029 */
.collection-screen {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #0d7ad0;
  --collection-scale: var(--figma-stage-scale);
}

.collection-screen__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center top;
  background-repeat: repeat;
  background-size: 40px 32px;
  opacity: 1;
}

.collection-screen__header,
.collection-screen__summary-card,
.collection-panel {
  position: relative;
  z-index: 1;
}

.collection-screen__header {
  padding: calc(var(--safe-top) + (116px * var(--collection-scale))) calc(16px * var(--collection-scale)) 0;
}

.collection-screen__title {
  width: calc(215px * var(--collection-scale));
  margin: 0;
  color: #fff;
  font-size: calc(24px * var(--collection-scale));
  font-weight: 700;
  line-height: calc(30px * var(--collection-scale));
  letter-spacing: calc(-0.96px * var(--collection-scale));
}

.collection-screen__headline {
  display: flex;
  align-items: center;
  gap: calc(4px * var(--collection-scale));
  width: calc(264px * var(--collection-scale));
  margin-top: calc(4px * var(--collection-scale));
}

.collection-screen__headline > span {
  color: #fff;
  font-size: calc(16px * var(--collection-scale));
  font-weight: 300;
  line-height: calc(21px * var(--collection-scale));
  letter-spacing: calc(-0.32px * var(--collection-scale));
  white-space: nowrap;
}

.collection-screen__headline > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(57px * var(--collection-scale));
  height: calc(29px * var(--collection-scale));
  padding: calc(4px * var(--collection-scale)) calc(8px * var(--collection-scale));
  box-sizing: border-box;
  border-radius: calc(8px * var(--collection-scale));
  background: #fff;
  color: #0068b7;
  font-size: calc(16px * var(--collection-scale));
  font-weight: 700;
  line-height: calc(21px * var(--collection-scale));
  white-space: nowrap;
}

.collection-screen__team-badge {
  position: absolute;
  top: calc(var(--safe-top) + (126px * var(--collection-scale)));
  right: calc(16px * var(--collection-scale));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(68px * var(--collection-scale));
  min-width: calc(68px * var(--collection-scale));
  height: calc(29px * var(--collection-scale));
  padding: calc(4px * var(--collection-scale)) calc(12px * var(--collection-scale));
  box-sizing: border-box;
  border-radius: calc(8px * var(--collection-scale));
  color: #fff;
  font-size: calc(16px * var(--collection-scale));
  font-weight: 500;
  line-height: calc(21px * var(--collection-scale));
  letter-spacing: calc(-0.32px * var(--collection-scale));
  white-space: nowrap;
}

.collection-screen__team-badge--dream {
  background: #e30413;
}

.collection-screen__team-badge--share {
  background: #80ba27;
}

.collection-screen__summary-card {
  display: flex;
  flex-direction: column;
  gap: calc(20px * var(--collection-scale));
  width: calc(343px * var(--collection-scale));
  height: calc(150px * var(--collection-scale));
  margin: calc(28px * var(--collection-scale)) calc(16px * var(--collection-scale)) 0;
  padding: calc(36px * var(--collection-scale)) calc(29px * var(--collection-scale)) 0;
  box-sizing: border-box;
  border-radius: calc(8px * var(--collection-scale));
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.collection-screen__summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(285px * var(--collection-scale));
  color: #2a2a2b;
  font-size: calc(16px * var(--collection-scale));
  font-weight: 500;
  line-height: calc(21px * var(--collection-scale));
  letter-spacing: calc(-0.32px * var(--collection-scale));
}

.collection-screen__summary-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(285px * var(--collection-scale));
}

.collection-screen__summary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(16px * var(--collection-scale));
  width: calc(139px * var(--collection-scale));
  height: calc(37px * var(--collection-scale));
  padding: calc(8px * var(--collection-scale)) calc(4px * var(--collection-scale)) calc(8px * var(--collection-scale)) calc(8px * var(--collection-scale));
  border: 0;
  border-radius: calc(8px * var(--collection-scale));
  background: #f0f0f0;
  color: #2a2a2b;
  box-shadow: none;
  cursor: default;
}

.collection-screen__summary-pill:last-child {
  width: calc(138px * var(--collection-scale));
  padding: calc(8px * var(--collection-scale)) calc(8px * var(--collection-scale)) calc(8px * var(--collection-scale)) calc(12px * var(--collection-scale));
}

.collection-screen__summary-pill.is-active {
  background: #0068b7;
  color: #fff;
}

.collection-screen__summary-pill span,
.collection-screen__summary-pill strong {
  font-size: calc(16px * var(--collection-scale));
  font-weight: 500;
  line-height: calc(21px * var(--collection-scale));
  letter-spacing: calc(-0.32px * var(--collection-scale));
  white-space: nowrap;
}

.collection-screen__summary-pill img {
  display: block;
  width: calc(20px * var(--collection-scale));
  height: calc(20px * var(--collection-scale));
  flex: none;
}

.collection-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(389px * var(--collection-scale));
  z-index: 2;
  transition: height 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-panel.is-expanded {
  height: calc(683px * var(--collection-scale));
}

.collection-panel__tabs {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: calc(343px * var(--collection-scale));
  height: calc(29px * var(--collection-scale));
  margin: 0 auto;
}

.collection-panel__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(4px * var(--collection-scale));
  width: calc(68px * var(--collection-scale));
  height: calc(29px * var(--collection-scale));
  padding: calc(4px * var(--collection-scale)) 0;
  border: 0;
  border-radius: calc(8px * var(--collection-scale)) calc(8px * var(--collection-scale)) 0 0;
  background: transparent;
  color: #2a2a2b;
  box-shadow: none;
}

.collection-panel__tab.is-active {
  background: #fff;
}

.collection-panel__tab img {
  display: block;
  width: calc(20px * var(--collection-scale));
  height: calc(20px * var(--collection-scale));
  flex: none;
  object-fit: contain;
}

.collection-panel__tab span {
  color: #2a2a2b;
  font-size: calc(16px * var(--collection-scale));
  font-weight: 500;
  line-height: calc(21px * var(--collection-scale));
  letter-spacing: calc(-0.32px * var(--collection-scale));
  white-space: nowrap;
}

.collection-panel__body {
  height: calc(360px * var(--collection-scale));
  padding: calc(20px * var(--collection-scale)) calc(15px * var(--collection-scale)) calc(43px * var(--collection-scale));
  box-sizing: border-box;
  border-radius: calc(16px * var(--collection-scale)) calc(16px * var(--collection-scale)) 0 0;
  background: #fff;
}

.collection-panel.is-expanded .collection-panel__body {
  height: calc(654px * var(--collection-scale));
}

.collection-panel__handle {
  display: block;
  width: calc(40px * var(--collection-scale));
  height: calc(4px * var(--collection-scale));
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b8b8b8;
  box-shadow: none;
}

.collection-panel__viewport {
  width: calc(344px * var(--collection-scale));
  height: calc(274px * var(--collection-scale));
  margin: calc(19px * var(--collection-scale)) auto 0;
  overflow: hidden;
}

.collection-panel.is-expanded .collection-panel__viewport {
  height: calc(568px * var(--collection-scale));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.collection-panel.is-expanded .collection-panel__viewport::-webkit-scrollbar {
  display: none;
}

.collection-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, calc(80px * var(--collection-scale)));
  column-gap: calc(8px * var(--collection-scale));
  row-gap: calc(20px * var(--collection-scale));
  width: calc(344px * var(--collection-scale));
}

.collection-panel__card {
  width: calc(80px * var(--collection-scale));
  height: calc(127px * var(--collection-scale));
}

.collection-panel__card img {
  display: block;
  width: calc(80px * var(--collection-scale));
  height: calc(127px * var(--collection-scale));
  border-radius: calc(8px * var(--collection-scale));
  object-fit: cover;
}

/* Final exact pass: collection page */
.collection-screen {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #0068b7;
}

.collection-screen__pattern {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-repeat: repeat;
  background-size: 40px 32px;
  opacity: 0.2;
}

.collection-screen__header,
.collection-screen__summary-card {
  position: absolute;
  z-index: 1;
}

.collection-screen__header {
  top: 148px;
  left: 0;
  right: 0;
  padding: 0 16px;
}

.collection-screen__title {
  width: 215px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.96px;
}

.collection-screen__headline {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 264px;
  margin-top: 4px;
}

.collection-screen__headline > span {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.collection-screen__headline > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 29px;
  border-radius: 8px;
  background: #fff;
  color: #0068b7;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  white-space: nowrap;
}

.collection-screen__team-badge {
  position: absolute;
  top: 0;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 29px;
  padding: 4px 0;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.collection-screen__team-badge--dream {
  background: #e30413;
}

.collection-screen__team-badge--share {
  background: #80ba27;
}

.collection-screen__summary-card {
  top: 239px;
  left: 16px;
  width: 343px;
  height: 150px;
  margin: 0;
  padding: 36px 29px 36px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.collection-screen__summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 285px;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.collection-screen__summary-head strong {
  font-weight: 700;
}

.collection-screen__summary-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 285px;
  margin-top: 20px;
}

.collection-screen__summary-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 139px;
  height: 37px;
  padding: 8px 4px 8px 8px;
  border: 0;
  border-radius: 8px;
  background: #f0f0f0;
  color: #2a2a2b;
  box-shadow: none;
  appearance: none;
}

.collection-screen__summary-pill:last-child {
  width: 138px;
  padding-left: 12px;
  padding-right: 8px;
}

.collection-screen__summary-pill.is-active {
  background: #0068b7;
  color: #fff;
}

.collection-screen__summary-pill span,
.collection-screen__summary-pill strong {
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.collection-screen__summary-pill span {
  font-weight: 500;
}

.collection-screen__summary-pill strong {
  font-weight: 700;
}

.collection-screen__summary-pill img {
  width: 20px;
  height: 20px;
  flex: none;
}

.collection-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 389px;
  transition: height 220ms cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center bottom;
}

.collection-panel.is-expanded {
  height: 683px;
}

.collection-panel__tabs {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 343px;
  height: 29px;
  margin: 0 auto;
}

.collection-panel__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 68px;
  height: 29px;
  padding: 4px 0;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: #111;
  box-shadow: none;
  flex: none;
  appearance: none;
}

.collection-panel__tab.is-active {
  background: #fff;
}

.collection-panel__tab img {
  width: 20px;
  height: 20px;
  flex: none;
  object-fit: contain;
}

.collection-panel__tab span {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.collection-panel__body {
  position: relative;
  height: 360px;
  padding: 20px 15px 43px;
  border-radius: 16px 16px 0 0;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.collection-panel.is-expanded .collection-panel__body {
  height: 654px;
}

.collection-panel__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  appearance: none;
}

.collection-panel__handle::before {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: #b8b8b8;
}

.collection-panel__viewport {
  width: 344px;
  height: 274px;
  margin-top: 19px;
  overflow: hidden;
}

.collection-panel.is-expanded .collection-panel__viewport {
  height: 568px;
  overflow-y: auto;
  scrollbar-width: none;
}

.collection-panel.is-expanded .collection-panel__viewport::-webkit-scrollbar {
  display: none;
}

.collection-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  column-gap: 8px;
  row-gap: 20px;
  width: 344px;
}

.collection-panel__card {
  width: 80px;
  height: 127px;
}

.collection-panel__card img {
  display: block;
  width: 80px;
  height: 127px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.drawer-close {
  top: calc(var(--safe-top) + 70px);
  right: 16px;
  width: 24px;
  height: 24px;
  z-index: 12;
}

.drawer-close .topbar__icon {
  width: 24px;
  height: 24px;
}

.drawer-hero,
.app-drawer__body--menu,
.app-drawer__body--mypage {
  width: var(--figma-content-width);
  margin: 0 auto;
}

.drawer-hero {
  padding: calc(var(--safe-top) + 118px) 0 0;
}

.drawer-profile {
  grid-template-columns: minmax(0, 1fr) 213px;
  gap: 14px;
}

.drawer-profile strong {
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -1.12px;
}

.drawer-profile span {
  margin-top: 5px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.rank-link {
  width: 213px;
  height: 46px;
  border-radius: 9px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.app-drawer__body--menu,
.app-drawer__body--mypage {
  padding: 54px 0 24px;
}

.app-drawer__footer {
  padding: 0 0 42px;
}

.app-drawer__footer .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.drawer-menu,
.menu__list--plain,
.menu-disclosure {
  width: 100%;
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 55px;
  padding: 15px 8px;
}

.menu-row strong {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.menu-row__chevron {
  margin-left: auto;
}

.menu-disclosure__panel {
  width: 100%;
  padding: 0 8px;
}

.menu-disclosure.is-open .menu-disclosure__panel {
  padding: 14px 8px 0;
}

.menu-submenu__link {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.32px;
}

.menu-submenu__link span {
  display: inline-flex;
  width: 100%;
  min-height: 28px;
  padding-bottom: 5px;
}

.collection-screen__hero {
  padding: calc(var(--safe-top) + 125px) 18px 0;
}

.collection-screen__hero-copy {
  max-width: 322px;
}

.collection-screen__hero-copy h1 {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.88px;
}

.collection-screen__hero-copy p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.collection-screen__team-badge {
  top: calc(var(--safe-top) + 134px);
  right: 18px;
  left: auto;
  min-width: 89px;
  height: 41px;
}

.collection-summary {
  margin: 26px 18px 0;
  padding: 30px 18px 22px;
}

.collection-summary__metric {
  margin-bottom: 26px;
}

.collection-summary__metric,
.collection-summary__metric strong {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.collection-summary__stats {
  gap: 12px;
}

.collection-summary__pill {
  min-height: 52px;
  padding: 0 18px;
}

.collection-team-tabs {
  margin: 18px 18px 0;
  padding: 0 12px;
  height: 68px;
}

.collection-team-tab {
  gap: 6px;
}

.collection-team-tab img {
  width: 22px;
  height: 22px;
}

.collection-team-tab span {
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.28px;
}

.collection-sheet {
  padding: 18px 18px 28px;
}

.collection-grid {
  grid-template-columns: repeat(4, 90px);
  gap: 18px 8px;
  justify-content: center;
}

.player-card--figma img {
  width: 90px;
  aspect-ratio: 90 / 138;
}

.play-screen-direct__title {
  top: 157px;
  width: min(385px, calc(100vw - 45px));
}

.play-screen-direct__choices {
  top: 345px;
  left: 50%;
  right: auto;
  width: min(394px, calc(100vw - 36px));
  grid-template-columns: repeat(2, minmax(0, 193px));
  gap: 8px;
  transform: translateX(-50%);
}

.play-screen-direct__choice {
  min-height: 108px;
}

.play-screen-direct__choice span {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.play-screen-direct__sheet {
  min-height: 448px;
  padding-top: 108px;
}

.play-screen-direct__metric {
  width: 265px;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.play-screen-direct__links {
  gap: 14px;
  margin-top: 42px;
}

.panel-button--primary {
  width: var(--figma-cta-width);
  min-height: 60px;
}

.predict,
.lineup {
  padding-top: calc(var(--safe-top) + 170px);
}

.predict--figma .hero-copy {
  gap: 10px;
  width: var(--figma-content-width);
  margin: 0 auto 20px;
}

.predict-screen .page-title {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.predict-copy {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.predict-meta {
  width: var(--figma-content-width);
  margin: 18px auto 0;
  align-items: center;
  justify-content: space-between;
}

.predict-meta__note,
.predict-toggle {
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

.predict-toggle input {
  width: 28px;
  height: 28px;
}

.predict-board {
  width: var(--figma-content-width);
  margin: 18px auto 0;
}

.predict-card {
  padding: 18px 0;
}

.predict-card__head,
.predict-row,
.predict-locked-card {
  width: var(--figma-cta-width);
}

.predict-card__head > span {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.32px;
}

.predict-card__badge {
  min-width: 92px;
  height: 37px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.predict-row,
.predict-locked-card {
  margin-top: 14px;
}

.predict-option {
  min-height: 56px;
  padding: 6px 34px;
}

.predict-option__team img {
  width: 44px;
  height: 44px;
}

.predict-option__label,
.predict-locked-card__notice {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.predict-screen .screen__footer {
  padding: 18px calc((100% - var(--figma-cta-width)) / 2) 48px;
}

.predict-screen .screen__footer .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.predict-footer-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 17px;
}

.ranking__hero {
  height: 518px;
}

.ranking__back {
  left: 18px;
  bottom: 20px;
  width: 28px;
  height: 28px;
}

.ranking-podium {
  width: 111px;
}

.ranking-podium__banner {
  width: 111px;
  height: 142px;
  padding: 16px 8px 33px;
}

.ranking-podium strong,
.ranking-podium span {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.ranking-podium em {
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

.ranking-podium img {
  width: 50px;
}

.ranking-podium--primary {
  top: 187px;
  left: 159px;
}

.ranking-podium--secondary {
  top: 253px;
  left: 25px;
}

.ranking-podium--tertiary {
  top: 289px;
  left: 293px;
}

.ranking__sheet {
  padding: 32px 18px 28px;
}

.ranking-row {
  min-height: 52px;
  gap: 10px;
}

.ranking-row + .ranking-row {
  margin-top: 6px;
}

.ranking__sheet .pager {
  margin-top: 26px;
}

.community-screen__body {
  width: var(--figma-content-width);
  margin: 0 auto;
  padding: calc(var(--safe-top) + 168px) 0 0;
}

.community-screen .page-title {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.community-screen__lead {
  width: 236px;
  margin: 10px auto 0;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.community-grid--figma {
  grid-template-columns: repeat(2, minmax(0, 193px));
  gap: 10px 8px;
  margin-top: 14px;
}

.community-tile--figma {
  min-height: 236px;
}

.community-tile--figma strong {
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.68px;
}

.community-screen .screen__footer--community {
  bottom: 104px;
  padding: 0 calc((100% - var(--figma-cta-width)) / 2);
}

.community-screen .screen__footer--community .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.community-screen__notice {
  bottom: 52px;
  width: 206px;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

.community-me__back {
  top: calc(var(--safe-top) + 84px);
  left: 18px;
}

.community-me__body {
  width: var(--figma-content-width);
  margin: 0 auto;
  padding: calc(var(--safe-top) + 170px) 0 0;
}

.community-me .page-title {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.community-me__field--title {
  margin-top: 28px;
}

.community-me__field strong {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.community-me__title-input {
  height: 43px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.community-me__editor {
  margin-top: 28px;
}

.community-me__textarea {
  min-height: 272px;
  padding: 10px 12px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.community-me__editor p {
  margin-top: 6px;
  margin-right: 6px;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

.community-me__upload {
  width: 92px;
  height: 92px;
  margin-top: 12px;
}

.community-me__upload-icon img {
  width: 28px;
  height: 28px;
}

.community-me__upload-action {
  bottom: -9px;
  right: -7px;
  width: 28px;
  height: 28px;
}

.community-me__upload-action img {
  width: 28px;
  height: 28px;
}

.community-me .screen__footer {
  padding: 20px calc((100% - var(--figma-cta-width)) / 2) 32px;
}

.community-me .screen__footer .cta {
  width: var(--figma-cta-width);
  height: 52px;
}

.community-me .screen__footer .cta:disabled {
  background: #0068b7;
  color: #fff;
  opacity: 1;
}

.community-me__notice {
  margin-top: 10px;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

/* Final exact layout pass: global geometry + page positioning */
.topbar,
.menu-topbar {
  top: calc(var(--safe-top) + 34px);
  width: min(calc(100% - 32px), 398px);
  max-width: none;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  gap: 0;
}

.topbar__brand,
.menu-topbar .topbar__brand {
  justify-self: center;
}

.topbar__button:first-child,
.menu-topbar .topbar__button:first-child,
.topbar__slot:first-child {
  justify-self: start;
}

.topbar__button:last-child,
.menu-topbar .topbar__button:last-child,
.topbar__slot:last-child {
  justify-self: end;
}

.topbar__brand--light,
.topbar__brand-lockup--light {
  width: 111px;
  min-width: 111px;
}

.topbar__brand--dark,
.topbar__brand-lockup--dark {
  width: 128px;
  min-width: 128px;
}

.topbar__brand-image {
  width: 100%;
  object-fit: contain;
}

.landing__title {
  top: 104px;
  width: min(352px, calc(100% - 48px));
  height: auto;
}

.landing__hero {
  top: 126px;
  width: min(370px, calc(100% - 24px));
  height: auto;
}

.landing__hero img {
  transform: scale(1.08);
  transform-origin: center top;
}

.landing__actions {
  bottom: 78px;
  width: min(301px, calc(100% - 32px));
}

.package-screen__body {
  width: 100%;
  max-width: none;
  padding-top: calc(var(--safe-top) + 118px);
}

.package-screen__title {
  margin: 0 auto;
}

.package-screen__copy {
  margin-top: 14px;
}

.package-screen__footer {
  margin-top: 24px;
}

.package-screen__footer .cta {
  width: 301px;
}

.package-screen__note {
  margin-top: 10px;
}

.home-screen__hero {
  min-height: 423px;
  padding-top: calc(var(--safe-top) + 118px);
  gap: 27px;
}

.home-screen__product {
  width: 232px;
  height: auto;
}

.home-screen__logos {
  margin-top: 0;
}

.home-screen__switch {
  top: 343px;
  right: 16px;
}

.home-screen__sheet {
  top: 423px;
  bottom: 0;
  min-height: 0;
  height: auto;
  padding-top: 88px;
}

.home-screen__metric + .home-screen__metric {
  margin-top: 16px;
}

.home-screen__sheet .cta {
  margin-top: 44px;
}

.home-screen__sheet .pager {
  margin-top: 46px;
}

.play-screen-direct__title {
  top: 126px;
  width: 352px;
}

.play-screen-direct__choices {
  top: 318px;
  left: 16px;
  right: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.play-screen-direct__choice {
  height: 108px;
}

.play-screen-direct__sheet {
  top: 418px;
  bottom: 0;
  min-height: 0;
  height: auto;
  padding-top: 72px;
}

.play-screen-direct__summary {
  gap: 0;
}

.play-screen-direct__links {
  margin-top: 28px;
}

.panel-button--primary:first-of-type {
  margin-top: 0;
}

.predict-screen {
  position: relative;
}

.predict-screen .topbar {
  top: calc(var(--safe-top) + 34px);
}

.predict,
.lineup {
  padding-top: calc(var(--safe-top) + 160px);
}

.predict-screen .screen__body {
  padding-bottom: 170px;
}

.predict--figma .hero-copy {
  width: min(calc(100% - 32px), 398px);
  margin: 0 auto;
  gap: 12px;
}

.predict-copy {
  width: 266px;
  max-width: 100%;
  margin: 0 auto;
}

.predict-meta {
  width: min(calc(100% - 32px), 398px);
  margin: 18px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.predict-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.predict-board {
  width: min(calc(100% - 32px), 398px);
  margin: 16px auto 0;
}

.predict-card {
  padding: 18px 0;
}

.predict-card__head,
.predict-row,
.predict-locked-card {
  width: min(calc(100% - 32px), 334px);
}

.predict-option {
  padding: 4px 24px;
}

.predict-screen .screen__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  padding: 0 45px;
  background: none;
}

.predict-footer-note {
  margin-top: 10px;
  text-align: center;
}

.ranking .topbar {
  top: calc(var(--safe-top) + 34px);
}

.ranking__hero {
  height: 452px;
}

.ranking-podium--primary {
  top: 138px;
}

.ranking-podium--secondary {
  top: 184px;
  left: 18px;
}

.ranking-podium--tertiary {
  top: 222px;
  right: 18px;
}

.ranking__sheet {
  min-height: calc(100% - 452px);
  padding-top: 26px;
}

.ranking-row {
  padding: 10px 0;
}

.ranking__sheet .pager {
  margin-top: 28px;
}

.community-screen {
  position: relative;
}

.community-screen .topbar {
  top: calc(var(--safe-top) + 34px);
}

.community-screen__body {
  width: min(calc(100% - 32px), 398px);
  margin: 0 auto;
  padding: calc(var(--safe-top) + 132px) 0 0;
}

.community-screen .page-title {
  width: 302px;
  margin: 0 auto;
}

.community-screen__lead {
  margin-top: 12px;
}

.community-grid--figma {
  gap: 10px 6px;
  margin-top: 20px;
}

.community-screen .screen__footer--community {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  padding: 0 45px;
  margin-top: 0;
}

.community-screen__notice {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 179px;
  margin: 0;
  transform: translateX(-50%);
}

.community-me {
  position: relative;
}

.community-me__back {
  top: calc(var(--safe-top) + 34px);
  left: 16px;
}

.community-me__body {
  width: min(calc(100% - 32px), 398px);
  margin: 0 auto;
  padding: calc(var(--safe-top) + 140px) 0 190px;
}

.community-me .page-title {
  width: 321px;
  max-width: 100%;
  margin: 0 auto;
}

.community-me__field--title {
  margin-top: 22px;
}

.community-me__editor {
  margin-top: 22px;
}

.community-me__textarea {
  min-height: 276px;
  padding: 12px 12px 40px;
}

.community-me__editor p {
  margin-top: 6px;
}

.community-me__upload {
  margin-top: 12px;
}

.community-me .screen__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  padding: 0 45px;
}

.community-me__notice {
  margin-top: 12px;
}

.collection-screen__hero {
  padding-top: calc(var(--safe-top) + 126px);
}

.collection-screen__hero-copy {
  max-width: 296px;
}

.collection-screen__team-badge {
  top: calc(var(--safe-top) + 132px);
  right: 16px;
  left: auto;
}

.collection-summary {
  margin-top: 20px;
}

.collection-team-tabs {
  margin-top: 14px;
}

.collection-sheet {
  margin-top: 0;
  padding-top: 16px;
}

.collection-grid {
  gap: 18px 8px;
}

.drawer-close {
  top: calc(var(--safe-top) + 34px);
}

.drawer-hero,
.app-drawer__body--menu,
.app-drawer__body--mypage {
  width: min(calc(100% - 32px), 398px);
}

.drawer-hero {
  padding-top: calc(var(--safe-top) + 112px);
}

.app-drawer__body--menu,
.app-drawer__body--mypage {
  padding-top: 38px;
}

.menu-row {
  padding-left: 0;
  padding-right: 0;
}

.menu-disclosure__panel {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.menu-disclosure.is-open .menu-disclosure__panel {
  padding: 0 0 12px;
}

.menu-submenu__link {
  display: flex;
  width: 100%;
  justify-self: stretch;
}

/* Layout exact pass: scaled to current 430px stage from Figma mobile frames */

.topbar,
.menu-topbar {
  width: var(--figma-content-width);
  max-width: var(--figma-content-width);
  grid-template-columns: 28px 151px 28px;
  gap: calc((var(--figma-content-width) - 207px) / 2);
}

.topbar__brand,
.topbar__brand-lockup {
  width: 151px;
  height: 23px;
  min-width: 151px;
}

.topbar__brand-image {
  width: 147px;
  height: 23px;
}

.topbar__button,
.topbar__slot {
  width: 28px;
  height: 28px;
}

.topbar__icon {
  width: 28px;
  height: 28px;
}

.landing__title {
  top: 102px;
  width: min(385px, calc(100vw - 45px));
  height: auto;
}

.landing__hero {
  top: 106px;
  width: min(394px, calc(100vw - 36px));
  height: auto;
}

.landing__background img {
  object-position: center 44%;
  transform: translateX(-50%) scale(1.04);
}

.landing__actions {
  bottom: 78px;
  width: var(--figma-cta-width);
}

.cta--social {
  min-height: 52px;
  border-radius: 8px;
  overflow: hidden;
}

.package-screen__body {
  padding-top: calc(var(--safe-top) + 164px);
}

.package-screen__hero {
  gap: 20px;
}

.package-screen__title,
.package-screen__copy {
  width: min(394px, calc(100vw - 36px));
}

.package-screen__title {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.package-screen__copy {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.package-choice-grid {
  width: min(398px, calc(100vw - 32px));
  grid-template-columns: repeat(2, minmax(0, 196px));
  gap: 6px;
  margin: 36px auto 0;
}

.package-choice {
  min-height: 392px;
  padding-top: 24px;
}

.package-choice__title {
  font-size: 19px;
  line-height: 25px;
  letter-spacing: -0.38px;
}

.package-choice__pack {
  width: 168px;
  height: 137px;
  margin-top: 24px;
}

.package-choice__logo-grid {
  width: 184px;
  height: 118px;
  margin-top: 24px;
}

.package-choice__logo {
  width: 52px;
  height: 52px;
}

.package-choice__logo--1 {
  left: 30px;
}

.package-choice__logo--2 {
  right: 30px;
}

.package-choice__logo--3 {
  top: 66px;
}

.package-choice__logo--4 {
  top: 66px;
  left: 66px;
}

.package-choice__logo--5 {
  top: 66px;
}

.package-screen__footer {
  gap: 12px;
  margin-top: 22px;
}

.package-screen__footer .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.package-screen__note {
  font-size: 13px;
  line-height: 17px;
}

.home-screen__hero {
  padding-top: calc(var(--safe-top) + 118px);
}

.home-screen__product {
  width: 235px;
  height: 190px;
}

.home-screen__logos {
  width: var(--figma-content-width);
  height: 69px;
  margin-top: 24px;
}

.home-screen__logo {
  width: 69px;
  height: 69px;
}

.home-screen__switch {
  top: 382px;
  right: 2px;
  width: 28px;
  height: 44px;
}

.home-screen__switch .topbar__icon {
  width: 28px;
  height: 28px;
}

.home-screen__sheet {
  min-height: 448px;
  height: 448px;
  padding-top: 108px;
}

.home-screen__metric {
  width: 265px;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.home-screen__metric + .home-screen__metric {
  margin-top: 16px;
}

.home-screen__sheet .cta {
  width: var(--figma-cta-width);
  height: 60px;
  margin-top: 56px;
}

.home-screen__sheet .pager {
  margin-top: 44px;
}

.app-drawer__panel {
  position: absolute;
  inset: 0;
}

.drawer-hero,
.app-drawer__body--menu,
.app-drawer__body--mypage {
  width: var(--figma-content-width);
}

.menu-screen__close,
.register-screen__close,
.drawer-close {
  top: calc(var(--safe-top) + 34px);
  right: 16px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-screen__close .topbar__icon,
.register-screen__close .topbar__icon,
.drawer-close .topbar__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.drawer-hero {
  padding: calc(var(--safe-top) + 118px) 0 0;
}

.drawer-profile {
  grid-template-columns: minmax(0, 1fr) 213px;
  gap: 14px;
}

.drawer-profile strong {
  font-size: 28px;
  line-height: 35px;
  letter-spacing: -1.12px;
}

.drawer-profile span {
  margin-top: 5px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.rank-link {
  width: 213px;
  height: 46px;
  border-radius: 9px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.app-drawer__body--menu,
.app-drawer__body--mypage {
  padding: 54px 0 24px;
}

.menu__list--plain,
.drawer-menu {
  width: 100%;
}

.menu-row {
  min-height: 55px;
  padding: 15px 8px;
}

.menu-row strong {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.menu-disclosure__panel {
  padding: 0 8px;
}

.menu-disclosure.is-open .menu-disclosure__panel {
  padding: 14px 8px 0;
}

.menu-submenu__link {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.32px;
}

.drawer-menu > .menu-disclosure:last-child > .menu-row {
  border-bottom: 0;
}

.menu-submenu__link span {
  min-height: 28px;
  padding-bottom: 5px;
  border-bottom: 0.7px solid #8c8c8c;
}

.drawer-menu > .menu-disclosure:last-child.is-open .menu-submenu__link:last-child span {
  border-bottom: 0;
}

/* Final landing background rule: responsive center-cover from original asset */
.landing__background img {
  inset: 0 auto 0 50%;
  width: 121.8667%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: translateX(-50%);
  transform-origin: center center;
}

.app-drawer__footer {
  padding: 0 0 42px;
}

.app-drawer__footer .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.collection-screen__hero {
  padding: calc(var(--safe-top) + 125px) 18px 0;
}

.collection-screen__hero-copy {
  max-width: 296px;
}

.collection-screen__hero-copy h1 {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.88px;
}

.collection-screen__hero-copy p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.collection-screen__team-badge {
  top: calc(var(--safe-top) + 136px);
  left: auto;
  right: 18px;
  min-width: 89px;
  height: 41px;
}

.collection-summary {
  margin: 26px 18px 0;
  padding: 30px 18px 22px;
}

.collection-summary__metric {
  margin-bottom: 26px;
}

.collection-summary__metric,
.collection-summary__metric strong {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.collection-summary__stats {
  gap: 12px;
}

.collection-summary__pill {
  min-height: 52px;
  padding: 0 18px;
}

.collection-team-tabs {
  margin: 18px 18px 0;
  padding: 0 12px;
  height: 68px;
}

.collection-team-tab {
  gap: 6px;
}

.collection-team-tab img {
  width: 22px;
  height: 22px;
}

.collection-team-tab span {
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.28px;
}

.collection-sheet {
  padding: 18px 18px 28px;
}

.collection-grid {
  grid-template-columns: repeat(4, 90px);
  gap: 18px 8px;
  justify-content: center;
}

.player-card--figma img {
  width: 90px;
  aspect-ratio: 90 / 138;
}

.play-screen-direct__title {
  top: 157px;
  width: min(385px, calc(100vw - 45px));
}

.play-screen-direct__choices {
  top: 345px;
  left: 18px;
  right: 18px;
  grid-template-columns: repeat(2, minmax(0, 193px));
  gap: 8px;
}

.play-screen-direct__choice {
  min-height: 108px;
}

.play-screen-direct__choice span {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.play-screen-direct__sheet {
  min-height: 448px;
  padding-top: 108px;
}

.play-screen-direct__summary {
  gap: 16px;
}

.play-screen-direct__metric {
  width: 265px;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.play-screen-direct__links {
  gap: 14px;
  margin-top: 42px;
}

.panel-button--primary {
  width: var(--figma-cta-width);
  min-height: 60px;
}

.predict,
.lineup {
  padding-top: calc(var(--safe-top) + 170px);
}

.predict--figma .hero-copy {
  gap: 10px;
  width: var(--figma-content-width);
  margin: 0 auto 20px;
}

.predict-screen .page-title {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.predict-copy {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.predict-meta {
  width: var(--figma-content-width);
  margin: 18px auto 0;
  align-items: center;
  justify-content: space-between;
}

.predict-meta__note,
.predict-toggle {
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

.predict-toggle input {
  width: 28px;
  height: 28px;
}

.predict-board {
  width: var(--figma-content-width);
  margin: 18px auto 0;
}

.predict-card {
  padding: 18px 0;
}

.predict-card__head,
.predict-row,
.predict-locked-card {
  width: var(--figma-cta-width);
}

.predict-card__head > span {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.32px;
}

.predict-card__badge {
  min-width: 92px;
  height: 37px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.predict-row,
.predict-locked-card {
  margin-top: 14px;
}

.predict-option {
  min-height: 56px;
  padding: 6px 34px;
}

.predict-option__team img {
  width: 44px;
  height: 44px;
}

.predict-option__label,
.predict-locked-card__notice {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.predict-screen .screen__footer {
  padding: 18px calc((100% - var(--figma-cta-width)) / 2) 48px;
}

.predict-screen .screen__footer .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.predict-footer-note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 17px;
}

.ranking__hero {
  height: 518px;
}

.ranking__back {
  left: 18px;
  bottom: 20px;
  width: 28px;
  height: 28px;
}

.ranking-podium {
  width: 111px;
}

.ranking-podium__banner {
  width: 111px;
  height: 142px;
  padding: 16px 8px 33px;
}

.ranking-podium strong,
.ranking-podium span {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.ranking-podium em {
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

.ranking-podium img {
  width: 50px;
}

.ranking-podium--primary {
  top: 187px;
  left: 159px;
}

.ranking-podium--secondary {
  top: 253px;
  left: 25px;
}

.ranking-podium--tertiary {
  top: 289px;
  left: 293px;
}

.ranking__sheet {
  padding: 32px 18px 28px;
}

.ranking-row {
  min-height: 52px;
  gap: 10px;
}

.ranking-row + .ranking-row {
  margin-top: 6px;
}

.ranking__sheet .pager {
  margin-top: 26px;
}

.community-screen__body {
  width: var(--figma-content-width);
  padding: calc(var(--safe-top) + 168px) 0 0;
}

.community-screen .page-title {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.community-screen__lead {
  width: 236px;
  margin: 10px auto 0;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.community-grid--figma {
  grid-template-columns: repeat(2, minmax(0, 193px));
  gap: 10px 8px;
  margin-top: 14px;
}

.community-tile--figma {
  min-height: 236px;
}

.community-tile--figma strong {
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.68px;
}

.community-screen .screen__footer--community {
  bottom: 104px;
  padding: 0 calc((100% - var(--figma-cta-width)) / 2);
}

.community-screen .screen__footer--community .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.community-screen__notice {
  bottom: 52px;
  width: 206px;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

.community-me__back {
  top: calc(var(--safe-top) + 84px);
  left: 18px;
}

.community-me__body {
  width: var(--figma-content-width);
  padding: calc(var(--safe-top) + 170px) 0 0;
}

.community-me .page-title {
  font-size: 27px;
  line-height: 34px;
  letter-spacing: -1.08px;
}

.community-me__field--title {
  margin-top: 28px;
}

.community-me__field strong {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.community-me__title-input {
  height: 43px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.community-me__editor {
  margin-top: 28px;
}

.community-me__textarea {
  min-height: 298px;
  padding: 10px 12px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.36px;
}

.community-me__editor p {
  margin-top: 6px;
  margin-right: 6px;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

.community-me__upload {
  width: 92px;
  height: 92px;
  margin-top: 12px;
}

.community-me__upload-icon img {
  width: 28px;
  height: 28px;
}

.community-me__upload-action {
  bottom: -9px;
  right: -7px;
  width: 28px;
  height: 28px;
}

.community-me__upload-action img {
  width: 28px;
  height: 28px;
}

.community-me .screen__footer {
  padding: 28px calc((100% - var(--figma-cta-width)) / 2) 56px;
}

.community-me .screen__footer .cta {
  width: var(--figma-cta-width);
  height: 60px;
}

.community-me__notice {
  margin-top: 12px;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: -0.26px;
}

/* Final exact pass: drawer / collection / community feed */
.app-drawer__panel {
  position: absolute;
  inset: 0;
  flex: 0 0 100%;
  min-width: 100%;
}

.app-drawer__panel--menu,
.app-drawer__panel--mypage {
  width: 100%;
  max-width: 100%;
}

.app-drawer__body--menu,
.app-drawer__body--mypage,
.drawer-hero {
  width: var(--figma-content-width);
  margin: 0 auto;
}

.app-drawer__body--menu,
.app-drawer__body--mypage {
  padding-left: 0;
  padding-right: 0;
}

.app-drawer__footer .cta {
  display: flex;
  margin: 0 auto;
}

.collection-screen {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #0d7ad0;
}

.collection-screen__pattern {
  display: block;
  position: absolute;
  inset: 0;
  background-position: center top;
  background-repeat: repeat;
  background-size: 40px 32px;
  opacity: 1;
}

.collection-screen__hero {
  width: 100%;
  box-sizing: border-box;
  padding: calc(var(--safe-top) + 116px) var(--figma-page-margin) 0;
  min-height: 112px;
}

.collection-screen__hero-copy {
  max-width: 258px;
}

.collection-screen__hero-copy p {
  margin-top: 10px;
}

.collection-screen__hero-copy p strong {
  min-width: 54px;
  height: 32px;
  margin: 0 6px 0 2px;
  padding: 0 12px;
}

.collection-screen__team-badge {
  top: calc(var(--safe-top) + 126px);
  left: 281px;
  min-width: 78px;
  height: 36px;
}

.collection-summary {
  margin: 23px 15px 0;
  padding: 28px 16px 20px;
}

.collection-summary__metric {
  margin-bottom: 23px;
}

.collection-summary__stats {
  gap: 10px;
}

.collection-summary__pill {
  min-height: 46px;
  padding: 0 16px;
}

.collection-team-tabs {
  margin: 17px 16px 0;
  padding: 0 10px;
  height: 61px;
  border-radius: 16px 16px 0 0;
}

.collection-team-tab {
  gap: 5px;
}

.collection-team-tab img {
  width: 20px;
  height: 20px;
}

.collection-team-tab span {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.26px;
}

.collection-team-tab.is-active::after {
  bottom: 4px;
  width: 44px;
}

.collection-sheet {
  flex: 1 1 auto;
  min-height: 0;
  padding: 14px 13px 24px;
}

.collection-grid {
  grid-template-columns: repeat(4, 79px);
  gap: 20px 7px;
}

.player-card--figma {
  border: 0;
  background: transparent;
  border-radius: 0;
}

.player-card--figma img {
  width: 79px;
  aspect-ratio: 79 / 122;
  object-fit: cover;
}

.community-screen__body {
  width: auto;
  margin: 0;
  padding: calc(var(--safe-top) + 52px) var(--figma-page-margin) 0;
}

.community-screen__lead {
  width: 206px;
  margin: 8px auto 0;
}

.community-grid--figma {
  margin-top: 12px;
  justify-content: space-between;
}

.community-tile--figma strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.6px;
}

.community-screen .screen__footer--community {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  padding: 0 var(--figma-cta-side-gap);
  margin-top: 0;
}

.community-screen__notice {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 179px;
  margin: 0;
  transform: translateX(-50%);
}

.predict-screen .topbar {
  color: #2a2a2b;
}

.predict-screen .screen__footer {
  padding: 16px var(--figma-cta-side-gap) 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 24%, #fff 60%);
}

.predict-screen .screen__footer .cta {
  width: var(--figma-cta-width);
  height: 52px;
}

.predict,
.lineup {
  padding-top: calc(var(--safe-top) + 148px);
}

.predict--figma .hero-copy {
  gap: 8px;
  margin-bottom: 16px;
}

.predict-copy {
  letter-spacing: -0.32px;
}

.predict-meta {
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.predict-meta__note,
.predict-toggle {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

.predict-toggle input {
  appearance: none;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 1px solid #b7b7b7;
  border-radius: 2px;
  background: #fff;
}

.predict-toggle input:checked {
  border-color: #0068b7;
  background: #0068b7;
  box-shadow: inset 0 0 0 4px #fff;
}

.predict-board {
  margin-top: 8px;
  border-radius: 8px 8px 0 0;
  background: #333;
  overflow: hidden;
}

.predict-list {
  padding: 0;
}

.predict-card {
  padding: 16px 0;
  border-bottom: 1px solid #8c8c8c;
}

.predict-card:last-child {
  border-bottom: 0;
}

.predict-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 285px;
  margin: 0 auto;
  color: #fff;
}

.predict-card__head > span {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.56px;
}

.predict-card__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.predict-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: #8c8c8c;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.predict-card.is-complete .predict-card__badge {
  background: #00b4ed;
}

.predict-card__chevron {
  position: relative;
  width: 24px;
  height: 24px;
}

.predict-card__chevron::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(225deg);
}

.predict-row,
.predict-locked-card {
  width: 285px;
  margin: 12px auto 0;
}

.predict-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.predict-option {
  min-height: 48px;
  padding: 4px 32px;
  border-right: 1px solid #8c8c8c;
  color: #2a2a2b;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.predict-option:last-child {
  border-right: 0;
}

.predict-option:last-child .predict-option__team {
  flex-direction: row-reverse;
}

.predict-option:last-child .predict-option__label {
  text-align: right;
}

.predict-option.is-picked {
  background: #dff1ff;
  color: #2a2a2b;
}

.predict-option.is-picked .predict-option__label {
  color: #2a2a2b;
}

.predict-row.is-active {
  box-shadow: 0 0 0 2px rgba(0, 104, 183, 0.22) inset;
}

.predict-option__team {
  width: 100%;
  justify-content: space-between;
  gap: 4px;
}

.predict-option__team img {
  width: 40px;
  height: 40px;
}

.predict-option__label {
  min-width: 36px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}

.predict-locked-card {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  min-height: 48px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.predict-locked-card__team {
  opacity: 0.48;
}

.predict-locked-card__team .predict-option__label {
  display: none;
}

.predict-locked-card__team--right .predict-option__team {
  justify-content: flex-end;
}

.predict-locked-card__notice {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;
}

.predict-footer-note {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.24px;
}

/* Exact Figma pass: landing / home / shared topbar */
.topbar,
.menu-topbar {
  --figma-topbar-icon-size: calc(24px * var(--figma-stage-scale));
  --figma-topbar-brand-width: calc(132px * var(--figma-stage-scale));
  --figma-topbar-brand-height: calc(20px * var(--figma-stage-scale));
  left: var(--figma-page-margin);
  right: auto;
  width: var(--figma-content-width);
  max-width: var(--figma-content-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--figma-topbar-icon-size);
  gap: 0;
  transform: none;
}

.topbar__brand {
  position: absolute;
  left: 50%;
  top: 50%;
  height: var(--figma-topbar-brand-height);
  justify-self: center;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.topbar__brand-lockup {
  height: var(--figma-topbar-brand-height);
  overflow: hidden;
  flex: none;
}

.topbar__brand-image {
  display: block;
  width: 100%;
  height: var(--figma-topbar-brand-height);
  object-fit: contain;
}

.topbar__brand--light,
.topbar__brand-lockup--light {
  width: calc(111px * var(--figma-stage-scale));
  min-width: calc(111px * var(--figma-stage-scale));
}

.topbar__brand--dark,
.topbar__brand-lockup--dark {
  width: calc(128px * var(--figma-stage-scale));
  min-width: calc(128px * var(--figma-stage-scale));
}

.topbar__button,
.topbar__slot,
.topbar__icon {
  width: var(--figma-topbar-icon-size);
  height: var(--figma-topbar-icon-size);
}

.topbar__button,
.topbar__slot {
  position: relative;
  z-index: 1;
  flex: none;
}

.topbar__button:first-child,
.menu-topbar .topbar__button:first-child,
.topbar__slot:first-child {
  justify-self: start;
}

.topbar__button:last-child,
.menu-topbar .topbar__button:last-child,
.topbar__slot:last-child {
  justify-self: end;
}

.topbar__icon {
  display: block;
  object-fit: contain;
}

.screen--landing .topbar {
  left: var(--figma-page-margin);
  right: auto;
  width: var(--figma-content-width);
  max-width: var(--figma-content-width);
  min-width: 0;
  min-height: 28px;
}

.screen--landing .topbar__brand--light,
.screen--landing .topbar__brand-lockup--light {
  width: 111px;
  min-width: 111px;
  height: 20px;
}

.screen--landing .topbar__brand--dark,
.screen--landing .topbar__brand-lockup--dark {
  width: 128px;
  min-width: 128px;
  height: 20px;
}

.screen--landing .topbar__brand-image {
  width: 100%;
  height: 100%;
}

.screen--landing .topbar__button,
.screen--landing .topbar__slot,
.screen--landing .topbar__icon {
  width: 28px;
  height: 28px;
}

.landing__title {
  top: 102px;
  width: min(385px, calc(100% - 45px));
  height: auto;
  max-width: calc(100% - 45px);
}

.landing__hero {
  top: 106px;
  width: var(--figma-content-width);
  height: auto;
  max-width: var(--figma-content-width);
}

.landing__actions {
  bottom: 78px;
  width: min(327px, calc(100% - 72px));
}

.package-choice-grid {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: var(--figma-stage-width);
  max-width: var(--figma-stage-width);
  grid-template-columns:
    calc((var(--figma-stage-width) - var(--figma-package-card-gap)) / 2)
    calc((var(--figma-stage-width) - var(--figma-package-card-gap)) / 2);
  gap: var(--figma-package-card-gap);
  margin: 30px 0 0;
}

.package-choice {
  width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 184 / 360;
  min-height: 0;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
}

.package-choice--dream,
.package-choice--share {
  background: transparent;
}

.package-choice::after,
.package-choice.is-selected::after {
  border: 0;
  border-color: transparent;
}

.package-choice:focus,
.package-choice:focus-visible,
.package-choice:active {
  outline: 0;
  box-shadow: none;
}

.package-choice__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Global spacing rebalance: reduce gap under topbar, restore bottom breathing room */
.screen__body,
.agreements-screen__body,
.member-form-screen__body,
.package-screen__body,
.community-screen__body,
.community-me__body {
  padding-bottom: 152px;
}

.agreements-screen__body,
.member-form-screen__body {
  padding-top: calc(var(--safe-top) + 102px);
}

.package-screen__body {
  padding-top: calc(var(--safe-top) + 142px);
}

.home-screen__hero {
  padding-top: calc(var(--safe-top) + 96px);
}

.predict-screen .screen__body {
  padding-top: calc(var(--safe-top) + 138px);
}

.community-screen__body {
  padding-top: calc(var(--safe-top) + 124px);
}

.community-me__body {
  padding-top: calc(var(--safe-top) + 102px);
}

.package-choice-grid.has-selection .package-choice.is-muted {
  filter: grayscale(1);
  opacity: 0.42;
}

.package-choice-grid.has-selection .package-choice.is-selected {
  filter: none;
  opacity: 1;
}

.home-screen__hero {
  padding-top: calc(var(--safe-top) + 94px);
}

.home-screen__product {
  display: block;
  width: 205px;
  height: 166px;
  margin: 0 auto;
  object-fit: contain;
}

.home-screen__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--figma-content-width);
  height: 60px;
  margin: 58px auto 0;
}

.home-screen__logo {
  display: block;
  width: 60px;
  height: 60px;
  flex: none;
}

.home-screen__switch {
  top: 319px;
  right: 8px;
  width: 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-screen__sheet {
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 360px;
  height: 360px;
  padding-top: 98px;
}

.home-screen__metric {
  width: 231px;
}

.home-screen__sheet .cta {
  width: 285px;
  height: 52px;
  margin-top: 48px;
}

.home-screen__sheet .pager {
  margin-top: 44px;
}
