.reward-hero h1 {
  margin: 0 auto;
  max-width: 10ch;
  font-size: 2.55rem;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-align: center;
}

.reward-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  text-align: center;
}

.reward-hero__copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-align: center;
}

.qr-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 26px;
}

.qr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(104, 242, 211, 0.16), transparent 28%),
    radial-gradient(circle at right center, rgba(255, 87, 217, 0.16), transparent 28%);
  pointer-events: none;
}

.qr-neon-shell {
  position: relative;
  margin-top: 0;
  padding: 0;
}

.qr-frame {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 324px;
  aspect-ratio: 1 / 1;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 246, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 24px 50px rgba(0, 0, 0, 0.2),
    -10px 0 34px rgba(104, 242, 211, 0.22),
    10px 0 34px rgba(255, 87, 217, 0.18);
}

.qr-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.qr-scanline {
  position: absolute;
  left: 50%;
  top: 84px;
  width: min(calc(100% - 64px), 286px);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 248, 236, 0.96), transparent);
  box-shadow: 0 0 18px rgba(255, 248, 236, 0.4);
  animation: qrSweep 2.8s ease-in-out infinite;
  z-index: 3;
}

.reward-scene-wrap {
  margin-top: -8px;
}

.reward-scene {
  width: 100%;
  height: 220px;
  background:
    linear-gradient(180deg, rgba(7, 13, 26, 0) 0%, rgba(7, 13, 26, 0.18) 18%, rgba(7, 13, 26, 0.92) 100%),
    url("../images/kahveci.png");
  background-size: cover;
  background-position: center bottom;
}

@keyframes qrSweep {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateX(-50%) translateY(236px);
    opacity: 1;
  }
}
