@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+Georgian:wght@700&display=swap");

:root {
  --rv-violet: #2563EB;
  --rv-lagoon: #000000;
  --rv-gold: #C4B5FD;
  --rv-alabaster: #FFFFFF;
  --rv-moss: #475569;
  --rv-ink: #143146;
  --rv-white: #ffffff;
  --rv-border: 1px solid rgba(0, 0, 0, 0.16);
  --rv-shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.11);
  --rv-shadow-lift: 0 20px 34px rgba(0, 0, 0, 0.2);
  --rv-radius-lg: 26px;
  --rv-radius-md: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--rv-ink);
  background:
    radial-gradient(circle at 9% 10%, rgba(37, 99, 235, 0.2), transparent 48%),
    radial-gradient(circle at 86% 8%, rgba(196, 181, 253, 0.2), transparent 40%),
    linear-gradient(165deg, #fcfaf0 0%, var(--rv-alabaster) 48%, #edf4f8 100%);
}

body[data-reward-guard="pending"] {
  visibility: hidden;
}

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

.reward-page {
  width: min(1180px, calc(100% - 34px));
  margin: 30px auto 56px;
  display: grid;
  gap: 22px;
}

.card-surface {
  border-radius: var(--rv-radius-lg);
  border: var(--rv-border);
  background:
    radial-gradient(circle at 14% 14%, rgba(37, 99, 235, 0.08), transparent 54%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.9));
  box-shadow: var(--rv-shadow-soft);
  animation: section-rise 0.58s ease both;
}

.reward-hero {
  padding: clamp(22px, 3.4vw, 34px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.hero-content h1 {
  margin: 8px 0 12px;
  font-family: "Noto Sans Georgian", sans-serif;
  color: var(--rv-lagoon);
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.3rem + 1.7vw, 2.55rem);
}

.hero-content p {
  margin: 0;
  max-width: 640px;
  color: var(--rv-moss);
}

.hero-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.32);
  background: rgba(37, 99, 235, 0.1);
  color: var(--rv-lagoon);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
}

.hero-kicker i {
  color: var(--rv-violet);
}

body[data-reward-guard] .coin-container {
  background: linear-gradient(140deg, rgba(0, 0, 0, 0.95), #255b81 62%, #2d6b92 100%);
  border-radius: var(--rv-radius-md);
  padding: clamp(20px, 3.4vw, 30px);
  color: var(--rv-alabaster);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 30px rgba(15, 48, 70, 0.28);
  display: grid;
  align-content: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

body[data-reward-guard] .coin-container::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -54px;
  top: -58px;
  border-radius: 50%;
  background: rgba(196, 181, 253, 0.16);
  border: 1px solid rgba(196, 181, 253, 0.22);
  pointer-events: none;
}

body[data-reward-guard] .coin-container h2 {
  position: relative;
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  row-gap: 2px;
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: clamp(1.82rem, 1.3rem + 1.7vw, 2.85rem);
  line-height: 1.2;
  color: #fff8de;
}

body[data-reward-guard] .coin-container .coin-label {
  align-self: end;
  color: #fff8de;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(8, 24, 36, 0.14);
  -webkit-text-fill-color: currentColor;
}

body[data-reward-guard] .coin-container #coin-balance {
  grid-column: 2;
  align-self: start;
  margin-left: 0;
  color: var(--rv-gold);
  font-weight: 800;
  font-size: clamp(2.35rem, 1.7rem + 2.3vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: 0;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 8px 18px rgba(8, 24, 36, 0.22);
}

body[data-reward-guard] .coin-container p {
  position: relative;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

body[data-reward-guard] .reward-rate-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(196, 181, 253, 0.14);
  border: 1px solid rgba(196, 181, 253, 0.28);
  color: #fff2c7;
  font-weight: 800;
}

.coin-icon {
  grid-row: 1 / span 2;
  width: clamp(76px, 8vw, 112px);
  height: clamp(76px, 8vw, 112px);
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, #fff8de, #f8c75a);
  padding: clamp(5px, 0.75vw, 8px);
  box-shadow:
    0 18px 34px rgba(196, 181, 253, 0.38),
    0 0 0 8px rgba(255, 248, 222, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

body[data-reward-guard] .notice-ticker {
  border-radius: 999px;
  border: var(--rv-border);
  background: linear-gradient(130deg, rgba(0, 0, 0, 0.96), rgba(35, 95, 135, 0.92));
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

body[data-reward-guard] .notice-ticker p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  text-align: center;
  color: #f8f5e6;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(8, 24, 36, 0.14);
}

body[data-reward-guard] .notice-ticker i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--rv-violet);
  color: var(--rv-white);
  font-size: 0.8rem;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.28);
}

body[data-reward-guard] .reward-access-note {
  min-height: 20px;
  margin-top: 8px !important;
  font-weight: 700;
  color: #f9dc99 !important;
}

body[data-reward-guard] #balance-copy {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.earn-flow {
  padding: clamp(20px, 3vw, 30px);
}

.earn-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.earn-step {
  border-radius: var(--rv-radius-md);
  border: var(--rv-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.earn-step-no {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--rv-violet), #988cff);
  color: var(--rv-white);
  font-weight: 800;
  box-shadow: 0 11px 20px rgba(37, 99, 235, 0.28);
}

.earn-step h3 {
  margin: 14px 0 10px;
  color: var(--rv-lagoon);
  font-size: 1.05rem;
}

.earn-step p {
  margin: 0;
  color: var(--rv-moss);
}

.catalog {
  padding: clamp(20px, 3vw, 30px);
}

.section-head {
  margin-bottom: 16px;
}

.section-head h2,
.history-card h3,
.rules h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans Georgian", sans-serif;
  color: var(--rv-lagoon);
  font-size: clamp(1.35rem, 1.06rem + 0.9vw, 1.92rem);
}

.section-head h2 i,
.history-card h3 i,
.rules h3 i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, var(--rv-violet), #988cff);
  color: var(--rv-white);
  font-size: 0.98rem;
  box-shadow: 0 11px 20px rgba(37, 99, 235, 0.28);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--rv-moss);
}

.reward-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reward-card {
  border-radius: var(--rv-radius-md);
  border: var(--rv-border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: translateY(12px);
  opacity: 0;
  animation: card-enter 0.56s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:nth-child(3n + 2) {
  animation-delay: 0.08s;
}

.reward-card:nth-child(3n + 3) {
  animation-delay: 0.16s;
}

.reward-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rv-shadow-lift);
}

.reward-card img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92));
  padding: 10px;
}

.reward-card h4 {
  margin: 4px 0 0;
  font-size: 1.07rem;
  color: var(--rv-lagoon);
}

.reward-card p {
  margin: 0;
  color: var(--rv-moss);
  font-weight: 600;
}

.reward-card .reward-card-value,
.reward-card .reward-card-cost {
  color: var(--rv-lagoon);
  font-weight: 800;
}

.reward-card .reward-card-rate {
  color: var(--rv-violet);
  font-size: 0.9rem;
  font-weight: 800;
}

button {
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.reward-card button {
  margin-top: auto;
  background: linear-gradient(140deg, #fbc466, var(--rv-gold));
  color: #3f2d00;
  box-shadow: 0 10px 18px rgba(196, 181, 253, 0.32);
}

.reward-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(196, 181, 253, 0.38);
}

.reward-card button:disabled,
.reward-card button.is-disabled {
  opacity: 0.68;
  cursor: not-allowed;
  background: linear-gradient(140deg, rgba(93, 115, 124, 0.5), rgba(93, 115, 124, 0.4));
  color: rgba(20, 49, 70, 0.7);
  box-shadow: none;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.history-card {
  padding: clamp(18px, 2.7vw, 24px);
}

.history-card h3 {
  margin-bottom: 14px;
}

.claimed-rewards {
  border-radius: 14px;
  border: var(--rv-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 14px;
  min-height: 210px;
  max-height: 420px;
  overflow: auto;
  color: var(--rv-moss);
}

.history-more.hidden {
  display: none;
}

.history-toggle-btn {
  margin-top: 10px;
  width: 100%;
  background: rgba(0, 0, 0, 0.08);
  color: var(--rv-lagoon);
  box-shadow: none;
}

.history-toggle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.claimed-item {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86));
  padding: 11px 12px;
  margin-bottom: 10px;
  line-height: 1.45;
}

.claimed-item:last-child {
  margin-bottom: 0;
}

.claimed-item b {
  color: var(--rv-lagoon);
}

.rules {
  padding: clamp(18px, 2.6vw, 26px);
}

.rules ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--rv-moss);
  display: grid;
  gap: 9px;
}

.rules b {
  color: var(--rv-violet);
}

.sq-dropdown a.active-page {
  background: rgba(37, 99, 235, 0.15);
  color: var(--rv-lagoon);
  font-weight: 700;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(16, 42, 59, 0.58);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 18px;
}

.modal-content {
  width: min(500px, 100%);
  border-radius: 20px;
  border: var(--rv-border);
  background:
    radial-gradient(circle at 18% 14%, rgba(37, 99, 235, 0.12), transparent 48%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92));
  box-shadow: 0 22px 40px rgba(14, 41, 60, 0.35);
  padding: clamp(20px, 4vw, 28px);
  text-align: center;
}

.animate {
  animation: modal-pop 0.32s ease both;
}

.modal-content h3 {
  margin: 0 0 14px;
  color: var(--rv-lagoon);
  font-family: "Noto Sans Georgian", sans-serif;
}

.modal-content h4 {
  margin: 12px 0 8px;
  color: var(--rv-ink);
}

.methods {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.method-img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 3px solid transparent;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
  background: #fff;
  padding: 6px;
}

.method-img:hover {
  transform: translateY(-2px);
}

.method-img.selected {
  border-color: var(--rv-violet);
  box-shadow: 0 10px 16px rgba(37, 99, 235, 0.28);
  transform: scale(1.05);
}

.method-img.dimmed {
  opacity: 0.72;
  filter: grayscale(1) saturate(0.05) brightness(1.42);
  border-color: rgba(226, 232, 240, 0.95);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  cursor: not-allowed;
  transform: scale(0.98);
}

.method-img.dimmed:hover {
  transform: scale(0.98);
}

#payment-form {
  display: grid;
  gap: 10px;
}

input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  padding: 11px 12px;
  font-size: 0.94rem;
  color: var(--rv-ink);
  background: #fff;
}

input:focus {
  border-color: var(--rv-violet);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.review-box {
  border-radius: 12px;
  border: var(--rv-border);
  background: rgba(255, 255, 255, 0.88);
  padding: 10px 12px;
  margin-bottom: 12px;
  text-align: left;
  color: var(--rv-moss);
}

.review-box b {
  color: var(--rv-lagoon);
}

#captcha-code {
  color: var(--rv-lagoon);
  letter-spacing: 0.08em;
  font-size: 1.22rem;
}

.error-msg {
  min-height: 16px;
  font-size: 0.84rem;
  color: #a33f4d;
  margin-top: 6px;
}

.modal-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-content button,
#rechoose-area button {
  background: linear-gradient(145deg, #fbc466, var(--rv-gold));
  color: #3f2d00;
  box-shadow: 0 10px 18px rgba(196, 181, 253, 0.3);
}

.modal-content button:hover,
#rechoose-area button:hover {
  transform: translateY(-1px);
}

.modal-content button.secondary-btn,
#rechoose-area .secondary-btn {
  background: rgba(93, 115, 124, 0.18);
  color: var(--rv-lagoon);
  box-shadow: none;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 4500;
  max-width: min(92vw, 360px);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.55);
  background: var(--rv-lagoon);
  color: var(--rv-alabaster);
  box-shadow: 0 14px 26px rgba(20, 49, 70, 0.3);
  padding: 11px 14px;
  font-weight: 600;
  display: none;
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modal-pop {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1100px) {
  .earn-flow-grid,
  .reward-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .reward-page {
    margin-top: 22px;
    width: calc(100% - 24px);
    gap: 18px;
  }

  .reward-hero {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .earn-flow-grid,
  .reward-section {
    grid-template-columns: 1fr;
  }

  .notice-ticker p {
    justify-content: flex-start;
    text-align: left;
  }

  .methods {
    flex-wrap: wrap;
  }

  .method-img {
    width: 60px;
    height: 60px;
  }

  .modal-content {
    padding: 18px;
  }

  body[data-reward-guard] .coin-container h2 {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 12px;
  }

  .coin-icon {
    width: 72px;
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Shared shell styles (merged from shared-shell.css) */

:root {
  --gx-primary: #2563EB;
  --gx-lagoon: #000000;
  --gx-gold: #C4B5FD;
  --gx-alabaster: #FFFFFF;
  --gx-moss: #475569;
  --gx-ink: #000000;
  --gx-white: #ffffff;
  --gx-border: 1px solid rgba(0, 0, 0, 0.16);
  --gx-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.sq-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: var(--gx-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sq-header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sq-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sq-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
}

.sq-logo span {
  color: var(--gx-lagoon);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sq-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sq-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--gx-lagoon);
  font-weight: 700;
  font-size: 0.94rem;
  transition: all 0.25s ease;
}

.sq-link i {
  color: var(--gx-moss);
}

.sq-link:hover,
.sq-link.active {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.34);
  color: var(--gx-lagoon);
}

.sq-link:hover i,
.sq-link.active i {
  color: var(--gx-primary);
}

.sq-nav-item {
  position: relative;
}

.sq-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 216px;
  background: rgba(255, 255, 255, 0.96);
  border: var(--gx-border);
  border-radius: 12px;
  box-shadow: var(--gx-shadow);
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.22s ease;
}

.sq-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sq-dropdown a {
  color: var(--gx-lagoon);
  text-decoration: none;
  border-radius: 9px;
  padding: 9px 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.sq-dropdown a i {
  margin-right: 8px;
}

.sq-dropdown a:hover {
  background: rgba(0, 0, 0, 0.08);
}

.sq-user-id {
  margin: 2px 4px 8px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.8rem;
  color: var(--gx-moss);
  font-weight: 700;
}

.sq-auth {
  display: flex;
  align-items: center;
}

.sq-auth button {
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
}

.sq-login-btn {
  background: rgba(0, 0, 0, 0.12);
  color: var(--gx-lagoon);
  border: 1px solid rgba(0, 0, 0, 0.26) !important;
}

.sq-register-btn,
.sq-profile-btn {
  background: linear-gradient(130deg, #fbc466, var(--gx-gold));
  color: #3c2d00;
  box-shadow: 0 10px 20px rgba(196, 181, 253, 0.26);
}

.sq-profile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sq-user-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.sq-user-name {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sq-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.85);
  color: var(--gx-lagoon);
  font-size: 1.2rem;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}

















































@media (max-width: 980px) {
  .sq-header-container {
    flex-wrap: nowrap;
  }

  .sq-toggle {
    display: inline-grid;
  }

  .sq-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    border: var(--gx-border);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.98), rgba(18, 58, 84, 0.98));
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 30px rgba(10, 31, 45, 0.24);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .sq-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sq-link {
    width: 100%;
    color: var(--gx-alabaster);
  }

  .sq-link i {
    color: rgba(196, 181, 253, 0.94);
  }

  .sq-nav .sq-link:hover,
  .sq-nav .sq-link.active {
    color: var(--gx-gold);
    background: rgba(196, 181, 253, 0.14);
    border-color: rgba(196, 181, 253, 0.34);
  }

  .sq-nav .sq-link:hover i,
  .sq-nav .sq-link.active i {
    color: var(--gx-gold);
  }

  .sq-nav .sq-dropdown {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    pointer-events: none;
  }

  .sq-nav .sq-dropdown.show {
    opacity: 1;
    max-height: 420px;
    pointer-events: auto;
  }


}

@media (max-width: 680px) {
  .sq-logo span {
    display: none;
  }

  .sq-auth button {
    padding: 8px 11px;
    font-size: 0.84rem;
  }




}






/* --- NEW REWARD DESIGN OVERRIDES --- */
.reward-redesign-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Typography Base */
.reward-redesign-wrapper h1, .reward-redesign-wrapper h2, .reward-redesign-wrapper h3 {
  color: #0f172a !important;
  margin: 0;
  font-family: var(--gx-font-display, inherit);
}
.reward-redesign-wrapper p {
  color: #475569;
}

/* TOP SECTION */
.reward-vault-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: transparent;
}

.reward-vault-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.reward-vault-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0e7ff;
  color: #4338ca;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  width: max-content;
}

.reward-vault-text h1 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 16px;
}

.reward-vault-text p {
  font-size: 1.05rem;
  line-height: 1.5;
}

.reward-vault-balance-card {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 24px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.balance-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.coin-img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.balance-info {
  display: flex;
  flex-direction: column;
}

.balance-label {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.balance-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
  color: white !important;
}

.balance-desc {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  max-width: 80%;
}



/* HOW REWARDS WORK */
.how-rewards-work {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.head-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-box {
  background: #eff6ff;
  color: #2563eb;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.head-left h2 {
  font-size: 1.4rem;
}

.notice-pill {
  background: #f1f5f9;
  color: #475569;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fafafa;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
}

.step-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #2563eb;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.step-icon {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #3b82f6;
  font-size: 2.5rem;
}

.step-text h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-text p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.step-arrow {
  color: #cbd5e1;
  font-size: 1.5rem;
  margin-top: 80px;
}

/* CATALOG */
.catalog-desc {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.reward-section-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reward-card-new {
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.reward-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.reward-card-graphic {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.graphic-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.graphic-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.reward-card-body {
  padding: 20px;
  flex: 1;
}

.reward-card-body h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #1e293b;
}

.reward-details-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reward-detail {
  font-size: 0.85rem;
  margin: 0 !important;
}

.reward-detail strong {
  color: #64748b;
  font-weight: 600;
}







/* BOTTOM GRID */
.bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bottom-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 24px;
}

.bottom-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.header-icon {
  background: #eff6ff;
  color: #3b82f6;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-card-header h3 {
  font-size: 1.1rem;
}

.rules-content ul {
  padding-left: 20px;
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.claimed-rewards-list {
  font-size: 0.85rem;
  color: #475569;
}

.claimed-item {
  padding: 12px;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  margin-bottom: 12px;
}

@media (max-width: 1000px) {
  .reward-vault-top {
    grid-template-columns: 1fr;
  }
  .steps-flow {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .reward-section-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .reward-section-new {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Final rewards vault dashboard redesign */
body[data-reward-guard] {
  color: #10203f;
  background:
    radial-gradient(circle at 12% -8%, rgba(73, 129, 244, 0.14), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(147, 197, 253, 0.16), transparent 38%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 54%, #f7fbff 100%);
}

body[data-reward-guard] .reward-page {
  width: min(1240px, calc(100% - 36px));
  margin: 22px auto 48px;
}

body[data-reward-guard] .reward-redesign-wrapper {
  max-width: none;
  padding: 0;
  gap: 20px;
}

body[data-reward-guard] .card-surface,
body[data-reward-guard] .bottom-card,
body[data-reward-guard] .reward-vault-text,
body[data-reward-guard] .reward-card-new {
  border: 1px solid #dbe7fb;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(39, 83, 158, 0.08);
}

body[data-reward-guard] .reward-vault-top {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

body[data-reward-guard] .reward-vault-text {
  position: relative;
  min-height: 290px;
  padding: 28px 34px;
  border-radius: 16px;
  overflow: hidden;
}

body[data-reward-guard] .reward-vault-badge {
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px solid #d8e5ff;
  color: #2264df;
  background: #eef5ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

body[data-reward-guard] .reward-vault-text h1 {
  max-width: 620px;
  margin: 0 0 16px;
  color: #10203f !important;
  font-family: "Manrope", sans-serif !important;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: 0;
}

body[data-reward-guard] .reward-vault-text p {
  max-width: 520px;
  margin: 0;
  color: #53627d;
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 650;
}

body[data-reward-guard] .reward-shine,
body[data-reward-guard] .reward-star {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

body[data-reward-guard] .reward-shine::before,
body[data-reward-guard] .reward-shine::after,
body[data-reward-guard] .reward-star::before,
body[data-reward-guard] .reward-star::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: currentColor;
}

body[data-reward-guard] .reward-shine::before,
body[data-reward-guard] .reward-star::before {
  width: 18px;
  height: 4px;
  top: 7px;
}

body[data-reward-guard] .reward-shine::after,
body[data-reward-guard] .reward-star::after {
  width: 4px;
  height: 18px;
  left: 7px;
}

body[data-reward-guard] .reward-shine {
  color: #8db7ff;
}

body[data-reward-guard] .reward-shine-one {
  right: 54px;
  top: 62px;
}

body[data-reward-guard] .reward-shine-two {
  right: 30px;
  bottom: 72px;
  transform: scale(1.4);
}

body[data-reward-guard] .reward-vault-balance-card {
  position: relative;
  min-height: 290px;
  padding: 34px 34px 24px;
  border: 1px solid rgba(128, 173, 255, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 16%, rgba(96, 165, 250, 0.36), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(79, 70, 229, 0.26), transparent 32%),
    linear-gradient(135deg, #063b93 0%, #145bdc 54%, #2878f0 100%);
  box-shadow: 0 24px 44px rgba(37, 99, 235, 0.24);
}

body[data-reward-guard] .reward-vault-balance-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.35) 0 1px, transparent 2px),
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 38%);
  background-size: 72px 72px, auto;
  opacity: 0.7;
}

body[data-reward-guard] .coin-wrapper {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe58f, #f5a70b);
  box-shadow: 0 18px 24px rgba(9, 31, 85, 0.28), inset 0 0 0 7px rgba(255, 255, 255, 0.2);
}

body[data-reward-guard] .coin-img {
  width: 74px;
  height: 74px;
}

body[data-reward-guard] .balance-card-header {
  gap: 20px;
  margin-bottom: 24px;
}

body[data-reward-guard] .balance-label {
  color: #dbeafe;
  font-size: 0.98rem;
  font-weight: 850;
}

body[data-reward-guard] .balance-value {
  margin-top: 3px;
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 950;
  letter-spacing: 0;
}

body[data-reward-guard] .balance-desc {
  max-width: 62%;
  margin: 0 0 22px;
  padding: 14px 18px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88) !important;
  background: rgba(17, 67, 164, 0.44);
  font-size: 0.9rem;
  line-height: 1.55;
}



body[data-reward-guard] .reward-star {
  z-index: 2;
  color: #9cc4ff;
}

body[data-reward-guard] .reward-star-one {
  right: 112px;
  top: 76px;
}

body[data-reward-guard] .reward-star-two {
  right: 40px;
  top: 50px;
  transform: scale(0.82);
}

body[data-reward-guard] .reward-star-three {
  right: 54px;
  bottom: 86px;
  transform: scale(0.72);
}

body[data-reward-guard] .reward-gift-art {
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: 158px;
  height: 142px;
  z-index: 2;
}

body[data-reward-guard] .reward-gift-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 112px;
  height: 100px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255,255,255,0.38) 42% 58%, transparent 58%),
    linear-gradient(180deg, #8fc0ff 0 18%, #5b8fff 18% 100%);
  box-shadow: 0 16px 22px rgba(4, 25, 78, 0.22);
}

body[data-reward-guard] .reward-gift-box::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: -18px;
  height: 28px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 43%, rgba(255,255,255,0.42) 43% 57%, transparent 57%),
    linear-gradient(180deg, #9dcbff, #6da3ff);
}

body[data-reward-guard] .reward-gift-box::after {
  content: "";
  position: absolute;
  left: 26px;
  top: -45px;
  width: 28px;
  height: 28px;
  border: 8px solid #9dcbff;
  border-radius: 50% 50% 4px 50%;
  box-shadow: 35px 0 0 -8px transparent, 35px 0 0 0 #9dcbff;
}

body[data-reward-guard] .reward-gift-coin {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, #fff0a8, #ffc22d 55%, #f59e0b);
  box-shadow: 0 14px 18px rgba(5, 28, 88, 0.22);
}

body[data-reward-guard] .how-rewards-work,
body[data-reward-guard] .catalog {
  padding: 20px 24px 22px;
  border-radius: 16px;
}

body[data-reward-guard] .section-head {
  margin-bottom: 14px;
  gap: 14px;
}

body[data-reward-guard] .head-left {
  gap: 10px;
}

body[data-reward-guard] .icon-box,
body[data-reward-guard] .header-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #2468e8;
  background: #eaf3ff;
  font-size: 1rem;
}

body[data-reward-guard] .head-left h2,
body[data-reward-guard] .bottom-card-header h3 {
  color: #13213d !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 1.15rem;
  font-weight: 950;
}

body[data-reward-guard] .notice-pill {
  padding: 7px 12px;
  color: #2b65c8;
  background: #eef6ff;
  font-size: 0.78rem;
  font-weight: 800;
}

body[data-reward-guard] .steps-flow {
  align-items: stretch;
  gap: 14px;
}

body[data-reward-guard] .step-card {
  min-height: 176px;
  padding: 18px 18px 18px 82px;
  border: 1px solid #deebff;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(39, 83, 158, 0.06);
}

body[data-reward-guard] .step-badge {
  top: 16px;
  left: 18px;
  width: 30px;
  height: 24px;
  border-radius: 7px;
  background: #2471f2;
  font-size: 0.72rem;
}

body[data-reward-guard] .step-icon {
  position: absolute;
  left: 20px;
  top: 58px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 64px;
  margin: 0;
  color: #4d8cf8;
  font-size: 2.25rem;
}

body[data-reward-guard] .step-text h3 {
  margin: 30px 0 8px;
  color: #13213d !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 950;
}

body[data-reward-guard] .step-text p,
body[data-reward-guard] .catalog-desc {
  color: #596984;
  font-size: 0.82rem;
  line-height: 1.55;
  font-weight: 650;
}

body[data-reward-guard] .step-arrow {
  align-self: center;
  margin: 0;
  color: #b7cced;
  font-size: 1.35rem;
}

body[data-reward-guard] .catalog-desc {
  margin: -4px 0 16px;
}

body[data-reward-guard] .reward-section-new {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-reward-guard] .reward-card-new {
  border-radius: 12px;
  overflow: hidden;
}

body[data-reward-guard] .reward-card-graphic {
  position: relative;
  height: 96px;
  margin: 14px 14px 0;
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 20%, #ffc847 0 6px, transparent 7px),
    radial-gradient(circle at 87% 24%, #ffd15c 0 8px, transparent 9px),
    radial-gradient(circle at 72% 78%, #f6a915 0 5px, transparent 6px),
    linear-gradient(135deg, #3e35d5 0%, #7538df 62%, #9b51f1 100%);
  overflow: hidden;
}

body[data-reward-guard] .reward-card-graphic::before,
body[data-reward-guard] .reward-card-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 72%, rgba(255,255,255,0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 12%, rgba(255,255,255,0.78) 0 2px, transparent 3px),
    radial-gradient(circle at 94% 68%, rgba(255,255,255,0.82) 0 2px, transparent 3px);
}

body[data-reward-guard] .reward-card-graphic::after {
  inset: auto 0 0;
  height: 22px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.28), rgba(255,255,255,0.08));
}

body[data-reward-guard] .graphic-value {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 2.15rem;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 5px 14px rgba(21, 21, 94, 0.26);
}

body[data-reward-guard] .graphic-label {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

body[data-reward-guard] .reward-card-body {
  padding: 14px 16px 10px;
}

body[data-reward-guard] .reward-card-body h4 {
  margin: 0 0 10px;
  color: #13213d;
  font-size: 0.88rem;
  font-weight: 950;
}

body[data-reward-guard] .reward-details-list {
  gap: 3px;
}

body[data-reward-guard] .reward-detail {
  color: #51617d;
  font-size: 0.78rem;
  font-weight: 650;
}

body[data-reward-guard] .reward-detail strong {
  color: #253653;
  font-weight: 900;
}







body[data-reward-guard] .bottom-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-reward-guard] .bottom-card {
  min-height: 270px;
  padding: 18px;
  border-radius: 14px;
}

body[data-reward-guard] .bottom-card-header {
  margin-bottom: 14px;
}

body[data-reward-guard] .claimed-rewards-list {
  max-height: 220px;
  overflow: auto;
  color: #50607b;
  font-size: 0.78rem;
}

body[data-reward-guard] .claimed-item {
  position: relative;
  margin-bottom: 10px;
  padding: 12px 14px;
  border: 1px solid #dfeafa;
  border-radius: 10px;
  background: #ffffff;
  color: #50607b;
  line-height: 1.45;
  box-shadow: 0 10px 20px rgba(39, 83, 158, 0.05);
}

body[data-reward-guard] .claimed-item b {
  color: #14233f;
}

body[data-reward-guard] .history-toggle-btn {
  width: 100%;
  min-height: 34px;
  border: 1px solid #d9e7fb;
  color: #2468e8;
  background: #eef6ff;
  font-size: 0.76rem;
  box-shadow: none;
}

body[data-reward-guard] .rules-content ul {
  margin: 0;
  padding-left: 17px;
  color: #50607b;
  font-size: 0.78rem;
  line-height: 1.42;
  gap: 7px;
}

@media (max-width: 1000px) {
  body[data-reward-guard] .reward-vault-top,
  body[data-reward-guard] .bottom-grid {
    grid-template-columns: 1fr;
  }

  body[data-reward-guard] .steps-flow {
    flex-direction: column;
  }

  body[data-reward-guard] .step-arrow {
    display: none;
  }

  body[data-reward-guard] .reward-section-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body[data-reward-guard] .reward-page {
    width: calc(100% - 22px);
    margin-top: 14px;
  }

  body[data-reward-guard] .reward-vault-text,
  body[data-reward-guard] .reward-vault-balance-card,
  body[data-reward-guard] .how-rewards-work,
  body[data-reward-guard] .catalog,
  body[data-reward-guard] .bottom-card {
    border-radius: 12px;
  }

  body[data-reward-guard] .reward-vault-text {
    min-height: 0;
    padding: 24px 18px;
  }

  body[data-reward-guard] .reward-vault-text h1 {
    font-size: 1.75rem;
  }

  body[data-reward-guard] .reward-vault-balance-card {
    min-height: 330px;
    padding: 24px 18px;
  }

  body[data-reward-guard] .balance-card-header {
    align-items: flex-start;
  }

  body[data-reward-guard] .coin-wrapper {
    width: 68px;
    height: 68px;
  }

  body[data-reward-guard] .coin-img {
    width: 58px;
    height: 58px;
  }

  body[data-reward-guard] .balance-value {
    font-size: 2.65rem;
  }

  body[data-reward-guard] .balance-desc {
    max-width: 100%;
  }

  body[data-reward-guard] .reward-gift-art {
    opacity: 0.72;
    transform: scale(0.78);
    transform-origin: right bottom;
  }

  body[data-reward-guard] .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-reward-guard] .step-card {
    padding-left: 74px;
  }

  body[data-reward-guard] .reward-section-new {
    grid-template-columns: 1fr;
  }
}



