:root {
  --surface: #121212;
  --panel: #1b1b1b;
  --placeholder: #2a2a2a;
  --text: #f1f1f1;
  --muted: #b0b0b0;
  --dot: #cfcfcf;
  --cta: #e66824;
  --banner: #cd9494;
  --neutral: #2f2f2f;
  --border: rgba(255, 255, 255, 0.14);
  --topbar-h: 62px;
  --radius-hero: 75px;
  --radius-lg: 39px;
  --radius-btn: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--surface);
  color: var(--text);
  font-family: Poppins, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.splashOverlay {
  position: fixed;
  inset: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  animation: splashOverlay 1100ms ease forwards;
}

.splashLogo {
  width: 260px;
  max-width: 72vw;
  height: auto;
  object-fit: contain;
  user-select: none;
  animation: splashLogo 1100ms ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .splashOverlay {
    animation-duration: 350ms;
  }
  .splashLogo {
    animation-duration: 350ms;
  }
}

@keyframes splashOverlay {
  0% {
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes splashLogo {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  18% {
    opacity: 1;
    transform: scale(1);
  }
  85% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.98);
  }
}

button,
input,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

.appRoot {
  min-height: 100vh;
  width: 100%;
  background: var(--surface);
}

.center {
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}

.center.hideDesktop {
  padding: 0;
  justify-content: stretch;
}

.frameDesktop {
  width: 100%;
  height: 100vh;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.frameMobile {
  width: 100%;
  max-width: none;
  height: 100vh;
  max-height: none;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.hideDesktop {
  display: block;
}
.hideMobile {
  display: none;
}

@media (min-width: 768px) {
  .hideDesktop {
    display: none;
  }
  .hideMobile {
    display: block;
  }
  .center {
    padding: 0;
    justify-content: stretch;
  }
}

.homeDesktop {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.homeLeft {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 0;
  height: 100%;
  overflow: hidden;
  animation: premiumFadeUp 360ms ease both;
}

.logoDesktop {
  margin-left: 0;
  width: 400px;
  max-width: 100%;
  height: 163px;
  object-fit: contain;
  user-select: none;
}

.hero {
  margin-top: 40px;
  width: 100%;
  flex: 1;
  min-height: 0;
  border-radius: var(--radius-hero);
  background: var(--placeholder);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 17px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  touch-action: pan-y;
}

.sliderHost {
  position: relative;
}

.sliderSlide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(0);
  pointer-events: none;
}

.dots {
  position: relative;
  z-index: 2;
}

.heroTitleWrap {
  padding: 0 32px 24px;
}

.heroTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  height: 24px;
}

.skeletonTitle {
  height: 24px;
  width: 260px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  animation: pulse 1.4s ease-in-out infinite;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--dot);
  border: 0;
  cursor: pointer;
}

.dotActive {
  background: #ffffff;
}

.homeRight {
  flex: 1;
  height: 100%;
  background: var(--panel);
  position: relative;
  overflow: hidden;
  animation: premiumFadeUp 420ms ease both;
}

.rightInner {
  padding: 72px 12px 11px 64px;
  height: 100%;
  display: flex;
}

.rightMain {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.linkBanner {
  width: 100%;
  max-width: 454px;
  height: 144px;
  border-radius: 20px;
  background: var(--banner);
  margin: 0 auto;
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.gridScrollWrap {
  margin-top: 90px;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.gridScroll {
  height: 100%;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-gutter: stable;
}

.gridContent {
  width: 100%;
  max-width: 454px;
  margin: 0 auto;
}

.row2 {
  display: flex;
  justify-content: space-between;
}

.rowGap {
  margin-top: 42px;
}

.gameSlot {
  width: 179px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gameIconDesktop {
  width: 180px;
  height: 180px;
  border-radius: 33px;
  background: var(--placeholder);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.gameNameDesktop {
  margin-top: 17px;
  width: 179px;
  height: 29px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.gameSlotDisabled {
  pointer-events: none;
  opacity: 0.8;
}

.homeMobile {
  width: 100%;
  min-height: 100%;
}

.mobileTop {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: premiumFadeUp 340ms ease both;
}

.logoMobile {
  width: 162px;
  height: 66px;
  max-width: 100%;
  object-fit: contain;
  user-select: none;
  margin: 0 auto 0 0;
}

.mobileCarousel {
  margin-top: 12px;
  width: 100%;
  max-width: 358px;
  height: 353px;
  border-radius: 32px;
  background: var(--placeholder);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  padding: 0 0 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  touch-action: pan-y;
  margin-left: auto;
  margin-right: auto;
}

.dotSm {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--dot);
  position: relative;
  z-index: 2;
}

.dotSmActive {
  background: #ffffff;
}

.mobileRow {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  max-width: 358px;
  margin-left: auto;
  margin-right: auto;
  gap: 72px;
}

.mobileRow2 {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  max-width: 358px;
  margin-left: auto;
  margin-right: auto;
  gap: 72px;
}

.mobileBottom {
  padding: 0 16px 24px 16px;
}

.gameSlotMobile {
  width: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gameIconMobile {
  width: 115px;
  height: 115px;
  border-radius: 18px;
  background: var(--placeholder);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.gameNameMobile {
  margin-top: 11px;
  width: 115px;
  height: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.detailsDesktop {
  width: 100%;
  height: 100%;
  background: var(--panel);
  padding: 26px 76px 20px 61px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: premiumFadeUp 320ms ease both;
}

.backBtn {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-btn);
  background: var(--neutral);
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.backBtnText {
  width: 68px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.headerDesktop {
  margin-top: 54px;
  display: flex;
  justify-content: space-between;
  min-width: 583px;
}

.detailsIconDesktop {
  width: 229px;
  height: 226px;
  border-radius: 33px;
  background: var(--placeholder);
}

.detailsInfoDesktop {
  margin-top: 33px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detailsTitleDesktop {
  width: 317px;
  height: 37px;
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
}

.detailsStudioDesktop {
  margin-top: 15px;
  width: 317px;
  height: 36px;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.playBtnDesktop {
  margin-top: 50px;
  margin-right: 98px;
  border-radius: var(--radius-btn);
  background: var(--cta);
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.playBtnDesktopText {
  width: 219px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.descBlockDesktop {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
}

.descTitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.descTextDesktop {
  margin-top: 3px;
  width: 583px;
  height: 149px;
  font-size: 15px;
  color: var(--muted);
}

.shotsRowDesktop {
  margin-top: 45px;
  display: flex;
  justify-content: space-between;
  min-width: 580px;
}

.shotCol {
  display: flex;
  flex-direction: column;
}

.shotTitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.shotBoxDesktop {
  margin-top: 8px;
  width: 172px;
  background: var(--placeholder);
  border-radius: 16px;
  aspect-ratio: 9 / 16;
}

.shotBoxDesktop2 {
  margin-top: 43px;
  width: 172px;
  background: var(--placeholder);
  border-radius: 16px;
  aspect-ratio: 9 / 16;
}

.shotBoxDesktop3 {
  margin-top: 44px;
  width: 172px;
  background: var(--placeholder);
  border-radius: 16px;
  aspect-ratio: 9 / 16;
}

.detailsMobile {
  width: 100%;
  height: 100%;
  background: var(--surface);
  padding: 16px 16px 72px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  animation: premiumFadeUp 300ms ease both;
}

.detailsMobile::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.backBtnFixedDesktop {
  position: sticky;
  top: 26px;
  z-index: 30;
}

.backBtnFixedMobile {
  position: sticky;
  top: 22px;
  z-index: 30;
}

.backBtnSmText {
  width: 46px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
}

.headerMobile {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  gap: 16px;
}

.detailsIconMobile {
  width: 124px;
  height: 123px;
  border-radius: 20px;
  background: var(--placeholder);
}

.detailsInfoMobile {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detailsTitleMobile {
  width: auto;
  height: auto;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.detailsStudioMobile {
  margin-top: 2px;
  width: auto;
  height: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.playBtnMobile {
  margin-top: 12px;
  margin-right: 0;
  border-radius: 13px;
  background: var(--cta);
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.playBtnMobileText {
  width: 126px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.descBlockMobile {
  margin-top: 28px;
  width: 100%;
}

.descTitleMobile {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.descTextMobile {
  margin-top: 3px;
  width: 100%;
  height: auto;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.shotsSectionMobile {
  margin-top: 28px;
}

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

.shotWrapMobile {
  width: 100%;
  height: auto;
  position: relative;
}

.shotTitleMobile {
  position: static;
  width: auto;
  height: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.shotBoxMobile {
  width: 100%;
  border-radius: 16px;
  background: var(--placeholder);
  aspect-ratio: 9 / 16;
}


.gameScreenFrame {
  background: var(--surface);
  position: relative;
}

.gameTopBar {
  position: absolute;
  top: 0;
  left: 0;
  height: var(--topbar-h);
  width: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
}

.homeIconBtn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--placeholder);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.homeIcon {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #ffffff;
  transform: translateY(-2px);
}

.logoBar {
  height: 48px;
  object-fit: contain;
  user-select: none;
}

.playerAccountBtn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.96), rgba(24, 24, 24, 0.96));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 8;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.playerAccountBtnMobile {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
}

.playerAccountSvg {
  width: 26px;
  height: 26px;
  display: block;
}

.gameViewport {
  position: absolute;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  height: calc(100% - var(--topbar-h));
}

.playRoot .center {
  padding: 0;
}

.playRoot .frameMobile {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
}

@media (max-width: 767px) {
  .mobileTop {
    padding: 16px 16px 24px 16px;
  }

  .mobileCarousel {
    height: 330px;
    border-radius: 28px;
  }

  .mobileRow,
  .mobileRow2 {
    gap: 48px;
  }

  .gameNameMobile {
    font-size: 12px;
  }

  :root {
    --topbar-h: 56px;
  }

  .gameTopBar {
    padding: 0 12px;
  }

  .homeIconBtn {
    width: 38px;
    height: 38px;
  }

  .logoBar {
    height: 36px;
  }

  .playerAccountBtn {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}

.iframeFull {
  width: 100%;
  height: 100%;
  border: 0;
}

.skeletonFull {
  width: 100%;
  height: 100%;
  background: var(--placeholder);
  animation: pulse 1.4s ease-in-out infinite;
}

.modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 50;
}

.dialogDesktop {
  width: 552px;
  height: 377px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 97px 118px 97px 117px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialogMobile {
  width: 342px;
  height: 251px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 81px 13px 60px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialogTitleDesktop {
  width: 317px;
  height: 104px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  line-height: 40px;
}

.dialogTitleMobile {
  width: 317px;
  height: 53px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 20px;
}

.dialogBtnsDesktop {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 31px;
}

.dialogBtnsMobile {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-right: 31px;
}

.btnYesDesktop {
  border-radius: var(--radius-btn);
  background: var(--neutral);
  border: 0;
  cursor: pointer;
}

.btnNoDesktop {
  border-radius: var(--radius-btn);
  background: var(--placeholder);
  border: 0;
  cursor: pointer;
}

.btnYesTextDesktop {
  width: 123px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.btnNoTextDesktop {
  width: 123px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.btnYesTextMobile {
  width: 123px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.btnNoTextMobile {
  width: 123px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.btnYesMobile {
  border-radius: 10px;
  background: var(--neutral);
  border: 0;
  cursor: pointer;
}

.btnNoMobile {
  border-radius: 10px;
  background: var(--placeholder);
  border: 0;
  cursor: pointer;
}

.noticeDialog {
  width: 420px;
  max-width: calc(100vw - 32px);
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px;
}

.noticeText {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.purchaseOverlay {
  align-items: flex-end;
  padding: 20px 16px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82));
}

.purchaseSheet {
  width: min(100%, 560px);
  border-radius: 30px;
  background: linear-gradient(180deg, #202020 0%, #151515 100%);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.purchaseSheetConfirm {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.purchaseSheetResult {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
}

.purchaseHeader {
  display: flex;
  align-items: center;
  gap: 16px;
}

.purchaseGameIcon {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 22px;
  background: var(--placeholder);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.purchaseHeaderBody {
  min-width: 0;
  flex: 1;
}

.purchaseEyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.purchaseItemName {
  margin-top: 6px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.purchaseMeta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.purchasePrice {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.purchaseTag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.purchaseCopy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.purchaseActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.purchaseBtn {
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  min-height: 54px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease;
}

.purchaseBtn:hover {
  transform: translateY(-1px);
}

.purchaseBtn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.purchaseBtnMuted {
  background: var(--neutral);
  color: #ffffff;
}

.purchaseBtnCta {
  background: var(--cta);
  color: #ffffff;
}

.purchaseBtnFull {
  width: 100%;
}

.purchaseBusyText {
  min-height: 18px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.purchaseStatusIcon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  position: relative;
  border: 4px solid rgba(255, 255, 255, 0.16);
}

.purchaseStatusIconSuccess {
  background: #31b34b;
}

.purchaseStatusIconFailure {
  background: #ef4444;
}

.purchaseStatusCheck {
  position: absolute;
  left: 24px;
  top: 14px;
  width: 18px;
  height: 32px;
  border-right: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  transform: rotate(42deg);
  border-radius: 2px;
}

.purchaseStatusCross::before,
.purchaseStatusCross::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 16px;
  width: 6px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
}

.purchaseStatusCross::before {
  transform: rotate(45deg);
}

.purchaseStatusCross::after {
  transform: rotate(-45deg);
}

.purchaseResultTitle {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.purchaseResultText {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.playerAccountOverlay {
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.78));
}

.playerAccountSheet {
  position: relative;
  width: min(100%, 720px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(45, 45, 45, 0.98), rgba(28, 28, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4);
  padding: 26px 26px 28px;
  animation: premiumFadeUp 280ms ease both;
}

.playerAccountClose {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.playerAccountTitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.playerAccountSummary {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.playerAccountMetaLine {
  font-size: 15px;
  color: var(--muted);
  word-break: break-word;
}

.playerAccountMetaLineStrong {
  margin-top: 8px;
  font-size: 21px;
  font-weight: 600;
  color: #ffffff;
}

.playerAccountHint {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.playerAccountHintCentered {
  text-align: center;
}

.playerAccountTabs {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.playerAccountTab {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.playerAccountTabActive {
  background: rgba(230, 104, 36, 0.16);
  border-color: rgba(230, 104, 36, 0.26);
}

.playerAccountTabLocked {
  opacity: 0.5;
  cursor: not-allowed;
}

.playerAccountPanel {
  margin-top: 18px;
  min-height: 220px;
}

.playerAccountPanelTitle,
.playerAccountContactTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.playerAccountNotice {
  margin-bottom: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

.playerAccountNoticeError {
  background: rgba(185, 28, 28, 0.14);
  border-color: rgba(239, 68, 68, 0.24);
  color: #fecaca;
}

.playerAccountEmailInput,
.playerAccountLinkedEmail,
.playerAccountTextarea {
  margin-top: 16px;
}

.playerAccountLinkedEmail {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  word-break: break-word;
}

.playerAccountPanel .submitBtn {
  width: 100%;
  margin-top: 12px;
}

.playerAccountPanel .submitBtnText {
  width: 100%;
}

.playerAccountActionRow {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.playerAccountActionRow .miniBtn,
.playerAccountActionRow .submitBtn {
  width: 100%;
}

.playerAccountActionRow .miniBtnText,
.playerAccountActionRow .submitBtnText {
  width: 100%;
}

.playerAccountOtpRow {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.playerAccountOtpInput {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.playerAccountOtpInput:focus,
.playerAccountOtpInput:focus-visible {
  outline: none;
  border-color: rgba(230, 104, 36, 0.52);
  box-shadow: 0 0 0 4px rgba(230, 104, 36, 0.14);
}

.playerAccountEmpty {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-align: center;
}

.playerAccountHistoryList {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.playerAccountHistoryItem {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
}

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

.playerAccountHistoryName,
.playerAccountHistoryAmount {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.playerAccountHistoryAmount {
  text-align: right;
  white-space: nowrap;
}

.playerAccountHistoryMeta {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.playerAccountTextarea {
  min-height: 136px;
}

.playerAccountSentState {
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.playerAccountSentTitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.playerAccountBtn:focus-visible,
.playerAccountClose:focus-visible,
.playerAccountTab:focus-visible {
  outline: 2px solid rgba(230, 104, 36, 0.58);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .playerAccountBtn:hover,
  .playerAccountClose:hover,
  .playerAccountTab:hover:not(:disabled) {
    transform: translateY(-1px);
  }

  .playerAccountBtn:hover {
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .playerAccountClose:hover {
    background: rgba(255, 255, 255, 0.22);
  }

  .playerAccountTab:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 767px) {
  .purchaseOverlay {
    padding: 16px 12px 18px;
  }

  .purchaseSheet {
    width: 100%;
    border-radius: 28px;
    padding: 20px;
  }

  .purchaseHeader {
    gap: 14px;
  }

  .purchaseGameIcon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    border-radius: 18px;
  }

  .purchaseItemName {
    font-size: 20px;
  }

  .purchasePrice {
    font-size: 18px;
  }

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

  .purchaseBtn {
    min-height: 50px;
    font-size: 15px;
  }

  .purchaseResultTitle {
    font-size: 24px;
  }

  .playerAccountOverlay {
    padding: 16px 12px;
  }

  .playerAccountSheet {
    max-height: calc(100vh - 32px);
    border-radius: 28px;
    padding: 22px 18px 22px;
  }

  .playerAccountTitle {
    font-size: 24px;
  }

  .playerAccountSummary {
    padding: 16px;
    border-radius: 20px;
  }

  .playerAccountMetaLineStrong {
    font-size: 18px;
  }

  .playerAccountTab {
    min-height: 52px;
    font-size: 15px;
    padding: 0 16px;
  }

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

  .playerAccountOtpRow {
    gap: 8px;
  }

  .playerAccountOtpInput {
    height: 50px;
    font-size: 20px;
    border-radius: 14px;
  }

  .playerAccountHistoryTop {
    flex-direction: column;
    gap: 4px;
  }

  .playerAccountHistoryAmount {
    text-align: left;
  }

  .playerAccountSentTitle {
    font-size: 24px;
  }
}

.portalPanel {
  width: 900px;
  max-width: calc(100vw - 32px);
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 32px;
  animation: premiumFadeUp 360ms ease both;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.portalPanelWide {
  width: 1120px;
}

.portalDesktopCenter {
  width: 100%;
}

.portalPanelDevLogin {
  width: min(100%, 760px);
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.98), rgba(12, 12, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  padding: 22px 22px 26px;
}

.portalHero {
  padding: 4px 4px 12px;
}

.portalHeroDevLogin {
  padding: 0;
}

.devPortalLoginTopRow {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4px;
}

.devPortalLoginArtwork {
  display: block;
  width: min(100%, 460px);
  margin: 0 auto;
  object-fit: contain;
}

.devPortalLoginCard {
  width: min(100%, 540px);
  margin: 10px auto 0;
  padding: 24px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.devPortalLoginCard .portalSectionTitle {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
}

.devPortalLoginCard .portalSectionSub {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.devPortalLoginCard .fieldLabel {
  color: rgba(255, 255, 255, 0.82);
}

.devPortalLoginCard .portalActions {
  justify-content: center;
}

.portalEyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.portalTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.portalSub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.portalSection {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
  animation: premiumFadeUp 280ms ease both;
}

.portalSectionTitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.portalSectionSub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.portalTabRow {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portalControls {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.portalCardGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .portalCardGrid {
    grid-template-columns: 1fr 1fr;
  }

  .portalDesktopCenter {
    justify-content: center;
    padding: 24px 16px;
  }
}

@media (max-width: 767px) {
  .portalPanelDevLogin {
    padding: 16px 14px 20px;
  }

  .devPortalLoginArtwork {
    width: min(100%, 360px);
  }

  .devPortalLoginCard {
    margin-top: 10px;
    padding: 20px 16px;
    border-radius: 24px;
  }

  .devPortalLoginCard .portalSectionTitle {
    font-size: 28px;
  }
}

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

.portalIdentity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.portalIdentityTitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.portalIdentitySub {
  font-size: 13px;
  color: var(--muted);
}

.portalMetaRow {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portalMetaChip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.portalStatusBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.portalStatusBadgePending {
  background: rgba(245, 185, 66, 0.14);
  color: #f5b942;
}

.portalStatusBadgeDraft {
  background: rgba(96, 165, 250, 0.14);
  color: #60a5fa;
}

.portalStatusBadgeApproved,
.portalStatusBadgeActive {
  background: rgba(35, 196, 131, 0.14);
  color: #23c483;
}

.portalStatusBadgeSuspended {
  background: rgba(239, 68, 68, 0.14);
  color: #f87171;
}

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

.portalSelect {
  appearance: none;
}

.portalEmpty {
  margin-top: 8px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.02);
}

.portalModal {
  width: min(680px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  border-radius: 28px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  animation: premiumFadeUp 240ms ease both;
}

.portalSuspended {
  background:
    linear-gradient(180deg, rgba(239, 68, 68, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.portalSummaryGrid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 700px) {
  .portalSummaryGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.portalSummaryCard {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.portalSummaryLabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portalSummaryValue {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.formGrid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .formGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.fieldLabel {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

.input {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 0 16px;
  font-size: 14px;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.textarea {
  width: 100%;
  min-height: 120px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.dropZone {
  height: 140px;
  border-radius: 20px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.dropText1 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.dropText2 {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.assetGuide {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

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

.assetGuideChip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  color: var(--muted);
}

.assetPreviewStack {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.assetPreviewSection {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.assetPreviewGrid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.assetSlot {
  min-width: 0;
}

.assetSlotFrame {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  aspect-ratio: 1 / 1;
}

.assetSlotFrameSquare {
  aspect-ratio: 1 / 1;
}

.assetSlotFrameWide {
  aspect-ratio: 16 / 9;
}

.assetSlotFrameHomeBanner {
  aspect-ratio: 454 / 144;
}

.assetSlotFrameSliderDesktop {
  aspect-ratio: 644 / 635;
}

.assetSlotFrameSliderMobile {
  aspect-ratio: 358 / 353;
}

.assetSlotImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.assetSlotEmpty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.assetSlotCaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

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

.portalActionsReport {
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
}

.submitBtn {
  border-radius: var(--radius-btn);
  background: var(--cta);
  border: 0;
  cursor: pointer;
  max-width: 100%;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.submitBtnReport {
  flex: 1 1 240px;
  min-width: 0;
}

.submitBtnDisabled {
  background: var(--placeholder);
  cursor: not-allowed;
}

.submitBtnText {
  width: 220px;
  max-width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.submitBtnReport .submitBtnText {
  width: 100%;
}

@media (max-width: 640px) {
  .portalActionsReport {
    gap: 10px;
  }

  .submitBtnReport {
    flex-basis: 100%;
  }

  .submitBtnReport .submitBtnText {
    height: 52px;
    font-size: 15px;
  }
}

.linkMuted {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
}

.messageBox {
  margin-top: 16px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  font-size: 13px;
  color: var(--text);
  animation: premiumFadeUp 260ms ease both;
}

.messageError {
  color: #b91c1c;
}

.card {
  margin-top: 16px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cardTitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.cardSub {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.cardBtns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.miniBtn {
  border-radius: var(--radius-btn);
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.miniBtnMuted {
  background: var(--placeholder);
}

.miniBtnCta {
  background: var(--cta);
}

.miniBtnText {
  width: 123px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.miniBtnTextMuted {
  color: var(--muted);
}

.miniBtnTextWhite {
  color: #ffffff;
}

.fieldRow {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.kv {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.kvLabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.kvVal {
  font-size: 12px;
  color: var(--muted);
}

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

.thumbRow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--placeholder);
  object-fit: cover;
}

.deleteLink {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.adBox {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: adIn 300ms ease forwards;
}

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

.adCreative {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 20px;
  background: var(--banner);
  border: 0;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

button.adCreative {
  height: 144px;
}

.adRow {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adTitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.closeBtn {
  border-radius: var(--radius-btn);
  background: var(--neutral);
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.closeBtn.closeBtnDisabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.adFrame {
  width: 100%;
  height: 144px;
  border-radius: 20px;
  border: 0;
  background: var(--banner);
}

.closeBtnText {
  width: 123px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.linkBanner:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.gameSlot:focus-visible,
.gameSlotMobile:focus-visible {
  transform: translateY(-2px);
}

.gameSlot:focus-visible .gameIconDesktop,
.gameSlotMobile:focus-visible .gameIconMobile {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  filter: brightness(1.02);
}

.backBtn:focus-visible,
.homeIconBtn:focus-visible,
.closeBtn:focus-visible:not(.closeBtnDisabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.playBtnDesktop:focus-visible,
.playBtnMobile:focus-visible,
.submitBtn:focus-visible,
.miniBtn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(230, 104, 36, 0.18);
  filter: brightness(1.03);
}

.card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.dropZone:focus-within {
  transform: translateY(-1px);
  border-color: rgba(230, 104, 36, 0.38);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.14);
}

.input:focus,
.input:focus-visible,
.textarea:focus,
.textarea:focus-visible {
  outline: none;
  border-color: rgba(230, 104, 36, 0.52);
  box-shadow: 0 0 0 4px rgba(230, 104, 36, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.deleteLink:hover,
.deleteLink:focus-visible,
.linkMuted:hover,
.linkMuted:focus-visible {
  color: var(--text);
}

.adCreative:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  filter: brightness(1.02);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(230, 104, 36, 0.58);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .linkBanner:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  }

  .gameSlot:hover,
  .gameSlotMobile:hover {
    transform: translateY(-2px);
  }

  .gameSlot:hover .gameIconDesktop,
  .gameSlotMobile:hover .gameIconMobile {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    filter: brightness(1.02);
  }

  .backBtn:hover,
  .homeIconBtn:hover,
  .closeBtn:hover:not(.closeBtnDisabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  }

  .playBtnDesktop:hover,
  .playBtnMobile:hover,
  .submitBtn:hover:not(.submitBtnDisabled),
  .miniBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(230, 104, 36, 0.18);
    filter: brightness(1.03);
  }

  .card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  }

  .dropZone:hover {
    transform: translateY(-1px);
    border-color: rgba(230, 104, 36, 0.38);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.14);
  }

  .adCreative:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
    filter: brightness(1.02);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.85;
  }
  100% {
    opacity: 0.55;
  }
}

@keyframes premiumFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rightOverlay {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: transform 260ms ease;
  z-index: 20;
}

.rightOverlayOpen {
  transform: translateX(0);
}

.mobileOverlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: transform 260ms ease;
  z-index: 20;
}

.mobileOverlayOpen {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .homeLeft,
  .homeRight,
  .mobileTop,
  .detailsDesktop,
  .detailsMobile,
  .portalPanel,
  .messageBox {
    animation: none;
  }

  .linkBanner,
  .gameSlot,
  .gameSlotMobile,
  .gameIconDesktop,
  .gameIconMobile,
  .backBtn,
  .playBtnDesktop,
  .playBtnMobile,
  .homeIconBtn,
  .input,
  .textarea,
  .dropZone,
  .submitBtn,
  .card,
  .miniBtn,
  .deleteLink,
  .adCreative,
  .closeBtn {
    transition: none;
  }
}
