.desktop-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #06060e;
}

.desktop-columns {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.desktop-col-track {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.desktop-col-inner {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.desktop-col-up { animation: desktop-scroll-up 132s linear infinite; }
.desktop-col-down { animation: desktop-scroll-down 128s linear infinite; }
.desktop-col-up2 { animation: desktop-scroll-up 124s linear infinite; }
.desktop-col-down2 { animation: desktop-scroll-down 136s linear infinite; }
.desktop-col-up3 { animation: desktop-scroll-up 130s linear infinite; }
.desktop-col-down3 { animation: desktop-scroll-down 122s linear infinite; }

@keyframes desktop-scroll-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes desktop-scroll-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.desktop-game-panel {
  width: 100%;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  overflow: hidden;
  background: #0a0a14;
  border-radius: 8px;
}

.desktop-game-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.desktop-vignette,
.desktop-color,
.desktop-bloom {
  position: absolute;
  pointer-events: none;
}

.desktop-vignette {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(6, 6, 14, 0.92) 0%, rgba(6, 6, 14, 0) 16%, rgba(6, 6, 14, 0) 84%, rgba(6, 6, 14, 0.92) 100%),
    linear-gradient(to right, rgba(6, 6, 14, 0.9) 0%, rgba(6, 6, 14, 0) 14%, rgba(6, 6, 14, 0) 86%, rgba(6, 6, 14, 0.9) 100%);
}

.desktop-color {
  inset: 0;
  z-index: 3;
  background: radial-gradient(ellipse 75% 75% at 50% 50%, rgba(210, 37, 10, 0.76) 0%, rgba(130, 11, 5, 0.79) 28%, rgba(6, 6, 20, 0.7) 62%, rgba(6, 6, 14, 0.96) 100%);
}

.desktop-bloom {
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(232, 64, 28, 0.2) 0%, rgba(232, 64, 28, 0.07) 40%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.desktop-card {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
  width: 92%;
  max-width: 820px;
  padding: clamp(28px, 3.5vw, 52px) clamp(28px, 3.5vw, 56px);
  background: rgba(8, 6, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(232, 64, 28, 0.12),
    0 0 60px rgba(200, 30, 10, 0.18),
    0 32px 80px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.desktop-card-text {
  flex: 1;
  min-width: 0;
}

.desktop-logo {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.desktop-logo span,
.desktop-headline em {
  color: #e8401c;
}

.desktop-headline {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.1;
}

.desktop-headline em {
  font-style: normal;
}

.desktop-sub {
  max-width: 330px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.65;
}

.desktop-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.desktop-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.desktop-divider-text {
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  white-space: nowrap;
}

.desktop-stats {
  display: flex;
  gap: 28px;
}

.desktop-stat-val {
  color: #fff;
  font-size: 38px;
  font-weight: 500;
  text-align: center;
}

.desktop-stat-lbl {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
  text-align: center;
}

.desktop-card-qr {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.desktop-qr-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  height: 166px;
  padding: 14px;
  background: #fff;
  border-radius: 6px;
}

.desktop-qr-wrap img {
  width: 138px;
  height: 138px;
  object-fit: contain;
}

.desktop-qr-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #e8401c;
  border-style: solid;
}

.desktop-qr-corner--tl {
  top: -1px;
  left: -1px;
  border-width: 3px 0 0 3px;
  border-radius: 5px 0 0 0;
}

.desktop-qr-corner--tr {
  top: -1px;
  right: -1px;
  border-width: 3px 3px 0 0;
  border-radius: 0 5px 0 0;
}

.desktop-qr-corner--bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 5px;
}

.desktop-qr-corner--br {
  right: -1px;
  bottom: -1px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 5px 0;
}

.desktop-qr-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.desktop-qr-label strong {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
}

.desktop-pill {
  position: absolute;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  white-space: nowrap;
  background: rgba(8, 6, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.desktop-pill-dot {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  background: rgba(155, 89, 182, 0.25);
  border-radius: 8px;
}

.desktop-pill-dot--green { background: rgba(46, 204, 113, 0.2); }
.desktop-pill-dot--blue { background: rgba(52, 152, 219, 0.2); }
.desktop-pill-dot--orange { background: rgba(230, 126, 34, 0.2); }

.desktop-pill-rating {
  color: #e8401c;
  margin-left: 4px;
}

.desktop-pill-rating::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 3px;
  vertical-align: -2px;
  background: url("../image/icon-star.svg") center / contain no-repeat;
}

.desktop-pill--tl {
  top: clamp(14px, 4vh, 44px);
  left: clamp(14px, 3vw, 44px);
}

.desktop-pill--tr {
  top: clamp(14px, 4vh, 44px);
  right: clamp(14px, 3vw, 44px);
}

.desktop-pill--bl {
  bottom: clamp(14px, 4vh, 44px);
  left: clamp(14px, 3vw, 44px);
}

.desktop-pill--br {
  right: clamp(14px, 3vw, 44px);
  bottom: clamp(14px, 4vh, 44px);
}

@media (max-width: 760px) {
  .desktop-page {
    min-height: 100vh;
    padding: 18px;
  }

  .desktop-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .desktop-card {
    flex-direction: column;
    align-items: stretch;
    max-width: 420px;
    padding: 26px;
  }

  .desktop-card-text,
  .desktop-qr-label {
    text-align: center;
  }

  .desktop-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .desktop-stats {
    justify-content: center;
  }

  .desktop-pill {
    display: none;
  }
}
