/* =========================================================
   Mystical Pass - Reward Page (reward_new.html)
   - Layout ตาม design reference
   - Responsive: Desktop / Tablet / Mobile
   ========================================================= */

/* ---------- BACKGROUND ---------- */
.bg-inner {
  background: url(../images/bg_inner.png) center bottom / 100% 100% no-repeat !important;    
  padding: 30px 20px 50px;
}

.mainLayout {
  padding: 80px 16px 28px !important;
  gap: 24px !important;
  min-height: 100dvh;
  overflow: hidden;
  font-family: "Google Sans", sans-serif;
  background: none;
}

.btn_backLayout { z-index: 20; }

/* ---------- HEAD: Title + Description ---------- */
.head-rewards {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

.head-rewards p {
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.75;
  color: #d8eef7;
}

.head-rewards p:first-child img {
  max-width: clamp(220px, 35vw, 420px);
  height: auto;
}

/* ---------- LEVEL PASS GRID ---------- */
.levelPassViewport {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 0 10px;
  scrollbar-width: thin;
}
.levelPassViewport::-webkit-scrollbar { height: 7px; }
.levelPassViewport::-webkit-scrollbar-track { background: rgba(0, 8, 20, 0.8); border-radius: 999px; }
.levelPassViewport::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #16e7ff, #2c6fff); border-radius: 999px; }

.levelPassMainLayout {
  --frame-w: 1280;
  --frame-h: 611;
  --content-left: 20%;
  --content-right: 5%;
  --content-top: 6.75%;
  --content-bottom: 7.85%;
  --lv-title-h: clamp(24px, 2.55vw, 32px);
  --book-left: 5.35%;
  --book-top: 11.15%;
  --book-width: 14.35%;
  --book-height: 75.15%;

  position: relative !important;
  flex: 0 0 min(100%, 1280px);
  width: min(100%, 1280px) !important;
  max-width: 1280px;
  aspect-ratio: var(--frame-w) / var(--frame-h);
  height: auto !important;
  min-height: 0 !important;
  margin: 0 auto;
  padding: 0 !important;
  display: block !important;
  background: url("../images/bg_reward.png") center / 100% 100% no-repeat !important;
  overflow: hidden;
}

.level_titleMainLayout {
  position: absolute !important;
  left: var(--book-left) !important;
  top: var(--book-top) !important;
  width: var(--book-width) !important;
  height: var(--book-height) !important;
  min-width: 0 !important;
  z-index: 5;
  display: grid !important;
  grid-template-rows: 6fr 4fr !important;
  gap: 0 !important;
  align-items: stretch !important;
  justify-content: stretch !important;
}
.level_titlePremiumLayout,
.level_titleNormalLayout {
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
.level_titlePremiumLayout img,
.level_titleNormalLayout img {
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* ---------- LEVEL CONTENT (Reward columns) ---------- */
.rewardSlide_contentLayout {
  position: absolute !important;
  left: var(--content-left) !important;
  right: var(--content-right) !important;
  top: var(--content-top) !important;
  bottom: var(--content-bottom) !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  display: flex !important;
  align-items: stretch !important;
  gap: 2px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  z-index: 4;
  scrollbar-width: thin;
}
.rewardSlide_contentLayout.dragging { cursor: grabbing; }
.rewardSlide_contentLayout::-webkit-scrollbar { height: 6px; }
.rewardSlide_contentLayout::-webkit-scrollbar-track { background: rgba(1, 8, 20, 0.85); }
.rewardSlide_contentLayout::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #23efff, #1b86ff); border-radius: 20px; }

.rewardSlide_contentItemLayout {
  position: relative !important;
  flex: 0 0 clamp(120px, 12.65vw, 140px) !important;
  width: clamp(120px, 12.65vw, 140px) !important;
  min-width: clamp(120px, 12.65vw, 140px) !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  background: transparent !important;
  gap: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}
.rewardSlide_contentItemLayout.xl {
  flex-basis: clamp(178px, 18vw, 230px) !important;
  width: clamp(178px, 18vw, 230px) !important;
  min-width: clamp(178px, 18vw, 230px) !important;
}

/* เส้นแบ่งคั่นแต่ละ Lv */
.rewardSlide_contentItemLayout::after {
  content: "";
  position: absolute;
  top: var(--lv-title-h);
  right: 0;
  width: 1px;
  height: calc(100% - var(--lv-title-h));
  background: rgba(210, 255, 255, 0.75);
  box-shadow:
    -1px 0 0 rgba(255, 255, 170, 0.18),
    1px 0 8px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 3;
}

/* Title bar Lv. */
.rewardSlide_contentItemTitle_wrap {
  position: relative;
  width: 100% !important;
  height: var(--lv-title-h) !important;
  min-height: var(--lv-title-h) !important;
  flex: 0 0 var(--lv-title-h) !important;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 210, 0.55) !important;
  border-right: 1px solid rgba(0, 0, 0, 0.65) !important;
  box-sizing: border-box !important;
}
.rewardSlide_contentItemTitle {
  position: relative;
  isolation: isolate;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  background: #fff27a !important;
  color: #0b0b05 !important;
  font-size: clamp(10px, 1.02vw, 13px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  overflow: hidden;
}
.rewardSlide_contentItemTitle::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: clamp(38px, 4.4vw, 45px);
  height: clamp(12px, 1.55vw, 15px);
  background: #171812;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 100%);
  z-index: -1;
}
.rewardSlide_contentItemTitle::before { display: none !important; }

/* Premium / Normal rows */
.slidePremium_layout,
.slideNormal_layout {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  padding: clamp(4px, 0.55vw, 7px) !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  color: #000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(210, 255, 255, 0.58) !important;
  overflow: hidden !important;
}
.slidePremium_layout {
  flex: 5.25 1 0 !important;
  background:
    linear-gradient(180deg, rgba(87, 82, 25, 0.72) 0%, rgba(35, 36, 14, 0.84) 100%) !important;
  border-color: rgba(244, 236, 132, 0.72) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 210, 0.12),
    inset 0 0 22px rgba(255, 238, 120, 0.15),
    inset 0 -1px 0 rgba(255, 234, 108, 0.62) !important;
}
.slidePremium_layout::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 239, 120, 0.78);
  box-shadow: 0 0 6px rgba(255, 239, 120, 0.35);
  pointer-events: none;
  display: block !important;
}
.slideNormal_layout {
  flex: 4 1 0 !important;
  background:
    linear-gradient(180deg, rgba(0, 137, 160, 0.50) 0%, rgba(0, 78, 105, 0.66) 100%) !important;
  border-color: rgba(172, 255, 255, 0.58) !important;
  box-shadow:
    inset 0 0 0 1px rgba(215, 255, 255, 0.12),
    inset 0 0 22px rgba(0, 238, 255, 0.12),
    inset 0 1px 0 rgba(210, 255, 255, 0.46) !important;
}
.slideNormal_layout::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 0;
  height: 1px;
  background: rgba(210, 255, 255, 0.38);
  pointer-events: none;
  display: block !important;
}

/* Reward items inside cells */
.item_layoutContentMain {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: clamp(4px, 0.62vw, 8px) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-content: center !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(4px, 0.45vw, 6px) !important;
  box-sizing: border-box !important;
}
.rewardSlide_contentItemLayout.xl .item_layoutContentMain {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  justify-items: center !important;
  align-content: center !important;
  gap: clamp(4px, 0.45vw, 6px) !important;
}
.item_layout {
  position: relative;
  width: clamp(46px, 4.25vw, 60px) !important;
  height: clamp(46px, 4.25vw, 60px) !important;
  min-height: 0 !important;
  padding: clamp(5px, 0.62vw, 8px) !important;
  background: transparent center / 100% 100% no-repeat !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
}
.item_layout.sm,
.rewardSlide_contentItemLayout.xl .item_layout.sm {
  width: clamp(42px, 4vw, 52px) !important;
  height: clamp(42px, 4vw, 52px) !important;
  min-height: 0 !important;
  padding: clamp(4px, 0.5vw, 6px) !important;
}

/* พื้นหลังกรอบไอเทมตามประเภท */
.item_layout.premium {
  background-image: url("../images/reward/bg-item-yl.png") !important;
  filter: drop-shadow(0 0 3px rgba(255, 240, 120, 0.45));
}
.item_layout.normal {
  background-image: url("../images/reward/bg-item-bl.png") !important;
  filter: drop-shadow(0 0 3px rgba(170, 240, 255, 0.40));
}
.item_layout.special,
.item_layout.event {
  background-image: url("../images/reward/bg-item-pp.png") !important;
  filter: drop-shadow(0 0 3px rgba(255, 180, 240, 0.45));
}
/* ป้ายจำนวน x1, x5 ฯลฯ — ขวาล่าง ไม่มีพื้นแดง */
.item_point {
  position: absolute !important;
  top: auto !important;
  left: auto !important;
  bottom: 2px !important;
  right: 4px !important;

  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  color: #ffffff !important;
  font-size: clamp(10px, 0.95vw, 13px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em;

  text-shadow:
    0 0 2px #000,
    1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;

  pointer-events: none;
  z-index: 3;
}
.rewardSlide_item img,
.item_layoutObject img,
.item_layout img,
.rewardSlide_arrow img { width: 100% !important; height: 100% !important; object-fit: contain !important; }

/* Arrow buttons (hidden by default; can be shown by JS) */
.rewardSlideArrow_l,
.rewardSlideArrow_r { display: none; }

/* =========================================================
   CLICKABLE REWARD — เฉพาะ Premium cell ของ Lv 1000, 3000, ...
   - กรอบเหลือง glow + cursor + hover เฉพาะเซลล์บน
   - เซลล์ Normal (ล่าง) ไม่กดได้, ไม่มี glow
   ========================================================= */
.rewardSlide_contentItemLayout.clickable-reward {
  position: relative;
}

/* Premium cell: cursor pointer + transition */
.rewardSlide_contentItemLayout.clickable-reward .slidePremium_layout {
  cursor: pointer;
  transition: filter 0.22s ease;
}

/* glow รอบเซลล์ Premium */
.rewardSlide_contentItemLayout.clickable-reward .slidePremium_layout::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 240, 110, 0.95);
  pointer-events: none;
  z-index: 5;
  animation: clickablePremiumGlow 1.8s ease-in-out infinite;
}

@keyframes clickablePremiumGlow {
  0%, 100% {
    border-color: rgba(255, 240, 110, 0.78);
    box-shadow:
      inset 0 0 14px rgba(255, 240, 110, 0.30),
      inset 0 0 0 1px rgba(255, 255, 210, 0.20);
  }
  50% {
    border-color: rgba(255, 252, 180, 1);
    box-shadow:
      inset 0 0 28px rgba(255, 245, 130, 0.55),
      inset 0 0 0 1px rgba(255, 255, 240, 0.55);
  }
}

/* Hover เฉพาะ Premium cell */
.rewardSlide_contentItemLayout.clickable-reward .slidePremium_layout:hover {
  filter: brightness(1.10);
}
.rewardSlide_contentItemLayout.clickable-reward .slidePremium_layout:hover::before {
  border-color: rgba(255, 255, 200, 1);
  animation-duration: 1.0s;
}

/* wrapper item + new! ให้เรียงแนวตั้ง */
.reward-with-badge {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.8vh, 10px);
}

/* ───── "new!" Badge ───── */
.new-badge {
  width: 100%;
  margin-top: clamp(6px, 1vh, 12px);
  padding: 0 4px;

/*  font-family: "Brush Script MT", "Lucida Handwriting", "Pacifico", cursive;*/
  font-style: italic;
  font-weight: 700;
  font-size: clamp(13px, 1.35vw, 14px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;

  color: #ff2e2e;
  text-shadow:
    0 0 1px #ffffff,
    1px 1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px -1px 0 #ffffff,
    2px 2px 0 #ffffff,
    3px 3px 6px rgba(255, 60, 60, 0.45);

  pointer-events: none;
  user-select: none;
  animation: newBadgePulse 1.4s ease-in-out infinite;
  z-index: 4;
}

@keyframes newBadgePulse {
  0%, 100% { transform: scale(1) rotate(-2deg); opacity: 1; }
  50%      { transform: scale(1.10) rotate(-2deg); opacity: 0.95; }
}

/* =========================================================
   SEASON REWARD + NPC SECTION
   ========================================================= */
.seasonRewardWrap {
  width: min(100%, 1200px);
  margin: 42px auto 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

/* PANEL: ใช้ Frame342.png เป็นพื้นหลัง */
.seasonBox,
.seasonRewardPanel {
  position: relative !important;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 616 / 300;
  padding: clamp(40px, 6vw, 64px) clamp(18px, 3vw, 36px) clamp(28px, 4vw, 44px) !important;
  background: url("../images/Frame342.png") center / 100% 100% no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
  clip-path: none !important;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title pill ด้านบน */
.seasonHeader,
.seasonRewardTitle {
  position: absolute !important;
  top: -8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: clamp(180px, 22vw, 230px);
  height: clamp(28px, 3.5vw, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08242b !important;
  font-size: clamp(13px, 1.2vw, 16px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #eaffff 0%, #62f8ff 100%) !important;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%) !important;
  z-index: 3;
}

/* Item grid 3 x 2 */
.seasonItems,
.seasonRewardGrid {
  position: relative;
  z-index: 2;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: clamp(8px, 1.4vw, 16px) !important;
  justify-items: center !important;
  align-items: center !important;
  padding: 0 clamp(4px, 1vw, 12px);
}

.seasonRewardItem {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.seasonRewardItem:hover {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 0 10px rgba(0, 230, 255, 0.55));
}
.seasonRewardItem:focus-visible {
  outline: 2px solid #62f8ff;
  outline-offset: 2px;
}

.seasonItems img,
.seasonRewardGrid img {
  width: clamp(72px, 9vw, 120px) !important;
  height: auto !important;
  display: block;
  max-width: 100%;
}

/* Description */
.seasonDesc,
.seasonRewardText {
  position: relative;
  z-index: 2;
  margin-top: clamp(10px, 1.5vw, 18px) !important;
  color: #ffffff !important;
  font-size: clamp(12px, 1vw, 14px) !important;
  line-height: 1.55 !important;
  text-align: center !important;
  padding: 0 clamp(4px, 1.5vw, 16px);
}

/* NPC Panel (right side) */
.seasonNpcPanel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seasonNpcPanel img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(0, 220, 255, 0.30));
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ───── 4K / Ultra-wide (≥1920px) ───── */
@media (min-width: 1920px) {
  .head-rewards { max-width: 1400px; }
  .head-rewards p { font-size: clamp(15px, 0.9vw, 18px); }
  .levelPassMainLayout { max-width: 1480px; }
  .seasonRewardWrap { width: min(100%, 1400px); gap: 36px; }
  .seasonBox,
  .seasonRewardPanel { max-width: 620px; }
  .seasonNpcPanel img { max-width: 600px; }
}

/* ───── Desktop XL (1440–1919px) ───── */
@media (min-width: 1440px) and (max-width: 1919px) {
  .levelPassMainLayout { max-width: 1320px; }
  .seasonRewardWrap { width: min(100%, 1280px); }
}

/* ───── Tablet ใหญ่ (max 1200px) ───── */
@media (max-width: 1200px) {
  .head-rewards { max-width: 96%; }
  .head-rewards p { font-size: clamp(13px, 1.2vw, 15.5px); }
  .seasonRewardWrap { gap: 22px; }
}

/* ───── Tablet (max 992px) — Season + NPC stack ───── */
@media (max-width: 992px) {
  .seasonRewardWrap {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100%, 720px);
  }
  .seasonNpcPanel img { max-width: 360px; }
}

/* ───── Tablet เล็ก (max 900px) — Level Pass scroll แนวนอน ───── */
@media (max-width: 900px) {
  html, body { overflow-x: hidden !important; }

  .mainLayout {
    align-items: flex-start !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-height: auto;
  }

  .levelPassViewport {
    justify-content: flex-start;
    padding-left: 12px;
    padding-right: 12px;
  }
  .levelPassMainLayout {
    flex-basis: 980px !important;
    width: 980px !important;
    max-width: none !important;
  }

  .head-rewards { padding: 0 16px; }
}

/* ───── Mobile Large (max 768px) ───── */
@media (max-width: 768px) {
  .head-rewards p { font-size: 13.5px; line-height: 1.7; }
  .head-rewards p:first-child img { max-width: 280px; }

  .seasonBox,
  .seasonRewardPanel {
    max-width: 100%;
    aspect-ratio: auto;
    padding: 50px 18px 28px !important;
    min-height: 380px;
  }

  .seasonRewardGrid,
  .seasonItems { gap: 12px !important; }
  .seasonRewardGrid img,
  .seasonItems img { width: clamp(72px, 22vw, 96px) !important; }

  .seasonNpcPanel img { max-width: 280px; }

  .levelPassMainLayout {
    flex-basis: 920px !important;
    width: 920px !important;
  }
}

/* ───── Mobile Medium (max 576px) ───── */
@media (max-width: 576px) {
  .levelPassMainLayout {
    flex-basis: 880px !important;
    width: 880px !important;
  }
  .btn_backLayout { top: 60px; left: 10px; }

  .head-rewards p { font-size: 13px; }
  .head-rewards p:first-child img { max-width: 240px; }

  .seasonRewardTitle,
  .seasonHeader {
    width: 170px;
    height: 28px;
    font-size: 13px !important;
  }

  .seasonRewardText,
  .seasonDesc { font-size: 12.5px !important; }

  .seasonBox,
  .seasonRewardPanel {
    padding: 44px 14px 24px !important;
    min-height: 340px;
  }

  .bg-inner { padding: 20px 12px 40px; }
}

/* ───── Mobile Small (max 480px) ───── */
@media (max-width: 480px) {
  .head-rewards p { font-size: 12.5px; line-height: 1.65; }
  .head-rewards p:first-child img { max-width: 220px; }

  .seasonRewardGrid,
  .seasonItems { gap: 8px !important; }
  .seasonRewardGrid img,
  .seasonItems img { width: clamp(64px, 22vw, 80px) !important; }

  .seasonNpcPanel img { max-width: 240px; }

  .seasonRewardTitle,
  .seasonHeader {
    width: 156px;
    height: 26px;
    font-size: 12px !important;
  }

  .seasonRewardText,
  .seasonDesc {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}

/* ───── Mobile Tiny (max 380px) ───── */
@media (max-width: 380px) {
  .seasonRewardGrid,
  .seasonItems { gap: 6px !important; }
  .seasonRewardGrid img,
  .seasonItems img { width: 66px !important; }

  .seasonBox,
  .seasonRewardPanel { padding: 40px 10px 20px !important; }

  .levelPassMainLayout {
    flex-basis: 820px !important;
    width: 820px !important;
  }

  .head-rewards p:first-child img { max-width: 200px; }
}

/* ───── Mobile Ultra-tiny (max 320px) ───── */
@media (max-width: 320px) {
  .seasonRewardGrid img,
  .seasonItems img { width: 60px !important; }
  .head-rewards p { font-size: 12px; }
}

/* ───── Hover เฉพาะ device ที่ใช้เมาส์จริง ───── */
@media (hover: none) {
  .seasonRewardItem:hover { transform: none; filter: none; }
}

/* ───── ผู้ใช้ลด motion ───── */
@media (prefers-reduced-motion: reduce) {
  .seasonRewardItem { transition: none; }
  .seasonRewardItem:hover { transform: none; }
}
