:root {
  --bg-dark: #0d0d12;
  --text-white: #ffffff;
  --text-muted: #888891;
  --accent-lime: #b3ff3b;
  --accent-blue: #5ea8ff;
  --grid-line: rgba(255, 255, 255, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  width: 150vh;
  height: 150vw;
  z-index: -1;
  background-image:
    linear-gradient(rgba(13, 13, 18, 0.8), rgba(13, 13, 18, 0.8)),
    url('background_template.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: bg-drift-desktop 60s linear infinite;
  transform: translate(-50%, -50%) rotate(90deg); 
}

@keyframes bg-drift-desktop {
  0% {
    transform: translate(-50%, -50%) rotate(90deg) translate(0, 0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(90deg) translate(2%, 2%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(90deg) translate(0, 0);
  }
}

@media (max-width: 768px) {
  body::before {
    transform: rotate(0); /* Not rotated on mobile */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: bg-drift-mobile 60s linear infinite;
  }
  @keyframes bg-drift-mobile {
    0% { transform: translate(0,0); }
    50% { transform: translate(2%,2%); }
    100% { transform: translate(0,0); }
  }
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to right, var(--grid-line) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  pointer-events: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  margin-top: 160px; /* Added subtle gap below ticker */
}

/* Custom Cursor */
#cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100000;
}

#cursor-halo {
  position: fixed;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(179, 255, 59, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  pointer-events: none;
  z-index: 9999;
}

#cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent-lime);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--accent-lime);
  pointer-events: none;
  z-index: 9999;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 9999;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grid-line);
  background: var(--bg-dark);
  transition: background 0.4s ease, border-color 0.4s ease;
}

nav.menu-active {
  background: transparent;
  border-color: transparent;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 5%;
  position: relative;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.logo:hover {
  transform: translateX(-50%) scale(1.05);
}

.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

@media (max-width: 768px) {
  .signin-btn-nav {
    display: none;
  }
}

.burger-menu {
  width: 40px;
  height: 40px;
  border: 1px solid var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 10000;
  transition: var(--transition);
}

.burger-menu span {
  width: 20px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
}

.burger-menu.active {
  border-color: var(--accent-lime);
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
  background: var(--accent-lime);
}

.burger-menu.active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
  background: var(--accent-lime);
}

/* Full Screen Menu */
.full-screen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.full-screen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.full-screen-menu.active .menu-content {
  transform: translateY(0);
}

.menu-content a {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.menu-content a:hover {
  color: var(--accent-lime);
  transform: scale(1.05);
}

.menu-content a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-lime);
  transition: width 0.3s ease;
}

.menu-content a:hover::after {
  width: 100%;
}

.menu-content a.menu-cta {
  margin-top: 20px;
  padding: 10px 30px;
  border: 2px solid var(--accent-lime);
  border-radius: 8px;
  color: var(--accent-lime);
  animation: glow-pulse 2s infinite alternate;
}

.menu-content a.menu-cta::after {
  display: none;
}

.menu-content a.menu-cta:hover {
  background: var(--accent-lime);
  color: var(--bg-dark);
  transform: scale(1.05);
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 5px rgba(179, 255, 59, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(179, 255, 59, 0.6);
  }
}

/* Ticker */
.ticker-wrap {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 40px;
  overflow: hidden;
  background: var(--accent-lime);
  color: var(--bg-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-move 40s linear infinite;
  align-items: center;
}

.ticker span {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.ticker img {
  height: 35px;
  width: auto;
  margin: 0 50px;
}

@keyframes ticker-move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Hero */
.hero {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.massive-title {
  font-size: clamp(80px, 15vw, 240px);
  line-height: 0.9;
  letter-spacing: -5px;
  margin-bottom: 20px;
}

.hero-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding: 40px 0;
}

.hero-sub p {
  font-size: 24px;
  line-height: 1.4;
  color: var(--text-muted);
}

.hero-sub .cta-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Boxed Components */
.boxed-card {
  border: 1px solid var(--accent-blue);
  padding: 40px;
  transition: var(--transition);
  height: 100%;
}

.boxed-card:hover {
  background: #6952eb;
  color: var(--text-white);
}

.boxed-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.boxed-card p {
  font-weight: 700;
  line-height: 1.6;
}

.plan-card.active {
  background: #6952eb !important;
  border-color: #b3ff3b !important;
}

.plan-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.plan-perks {
  margin-top: 15px;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
}

.plan-perks li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-perks li::before {
  content: '✓';
  color: var(--accent-lime);
  font-weight: bold;
}

.plan-card.active .plan-perks {
  color: rgba(255, 255, 255, 0.9);
}

.plan-card.active .plan-perks li::before {
  color: #fff;
}

.btn-boxed {
  padding: 20px 40px;
  border: 1px solid var(--text-white);
  background: transparent;
  color: var(--text-white);
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-boxed:hover {
  background: var(--text-white);
  color: var(--bg-dark);
}

/* Sections */
section {
  padding: 0;
  border-bottom: 1px solid var(--grid-line);
  scroll-margin-top: 160px;
}

.section-header {
  padding: 60px 0;
  border-bottom: 1px solid var(--grid-line);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: auto;
}

.grid-item {
  border-right: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
  padding: 30px;
}

.grid-item:nth-child(3n) {
  border-right: none;
}

/* HOW IT WORKS Scroll Animation Styles */
.how-section {
  position: relative;
  background: transparent;
}

.how-scroll-track {
  position: relative;
  height: 400vh;
  width: 100%;
}

.how-sticky-container {
  position: sticky;
  top: 100px;
  height: calc(100vh - 100px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 5%;
}

/* Left Panel - Text */
.how-left-panel {
  flex: 1;
  max-width: 500px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}

.how-step {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

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

.how-mobile-visual {
  display: none !important;
}

.how-step-num {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--text-muted);
  margin-right: 15px;
}

.how-step-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--text-white);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.how-step-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Progress Bar */
.how-progress-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.how-play-pause {
  background: var(--text-white);
  color: var(--bg-dark);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.how-play-pause:hover {
  transform: scale(1.1);
}

.how-progress-bar {
  flex: 1;
  max-width: 120px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.how-progress-fill {
  height: 100%;
  width: 0%;
  background: #141414;
  transition: width 0.1s linear;
}

/* Right Panel - Phone */
.how-right-panel {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.how-bg-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #ff5e5e;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  z-index: 1;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(40px);
  opacity: 0.4;
}

.mock-phone {
  width: 250px;
  height: 500px;
  background: #000;
  border-radius: 35px;
  border: 8px solid #1a1a1a;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 0 1px #333;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 12px;
  background: #1a1a1a;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 10;
}

.mock-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--accent-blue);
  position: relative;
  transition: background-color 0.8s ease;
}

.how-screen-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.how-screen-content.active {
  opacity: 1;
}

.how-mock-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  z-index: 5;
}

/* Pagination Dots */
.how-pagination {
  position: absolute;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.how-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.how-dot.active {
  background: var(--text-white);
  transform: scale(1.3);
}

@media (max-width: 992px) {
  .how-sticky-container {
    flex-direction: column;
    padding-top: 100px;
    height: auto;
    justify-content: flex-start;
  }
  .how-left-panel {
    align-items: center;
    text-align: center;
    max-width: 100%;
    height: auto;
    flex: 0 0 auto;
    margin-top: 40px;
    order: 2;
  }
  .how-step {
    position: relative;
    display: none;
    padding: 0 20px;
  }
  .how-step.active {
    display: block;
  }
  .how-step-title {
    font-size: 28px;
  }
  .how-progress-container {
    justify-content: center;
    margin-top: 10px;
  }
  .how-right-panel {
    align-items: center;
    flex: 0 0 auto;
    order: 1;
  }
  .mock-phone {
    width: 220px;
    height: 440px;
  }
  .how-bg-shape {
    width: 300px;
    height: 300px;
  }
  .how-pagination {
    display: none;
  }
}

.social-button {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-decoration: none;
  margin-top: 20px;
  transition: var(--transition);
  cursor: pointer;
}

.social-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.divider-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--grid-line);
}

.divider-text {
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
}

/* Profile & Stats Widget */
.nav-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(179, 255, 59, 0.05);
  transition: var(--transition);
}

.profile-icon:hover {
  background: var(--accent-lime);
  color: var(--bg-dark);
}

.record-widget {
  background: linear-gradient(135deg, #1E1E1E, #141414);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.stat-circle-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-circle-svg {
  position: absolute;
  transform: rotate(-90deg);
}

.stat-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 10;
}

.stat-circle-progress {
  fill: none;
  stroke: var(--accent-lime);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-out;
}

.stat-value-container {
  text-align: center;
}

.stat-odometer {
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: #888;
  letter-spacing: 1px;
  margin-top: 5px;
}

.record-stats {
  display: flex;
  gap: 40px;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-big-value {
  font-family: 'Anton', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: var(--accent-lime);
}

.stat-big-total {
  font-family: 'Anton', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: #fff;
  opacity: 0.9;
}

.trophy-cabinet {
  margin-top: 15px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  animation: slideInUp 0.8s ease-out;
}

.trophy-slot {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.badge-hex {
  width: 68px;
  height: 68px;
  background: #1e1e1e;
  border-radius: 16px;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.badge-hex.empty {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.02);
}

.badge-hex.mythic {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
}

.badge-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  font-weight: 800;
  color: #666;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trophy-title {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer */
footer {
  padding: 40px 5% 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-size: 80px;
  font-family: 'Anton', sans-serif;
}

.tier-label {
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--accent-lime);
}

.social-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--text-muted);
  border-radius: 8px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-icon-box:hover {
  border-color: var(--accent-lime);
  color: var(--bg-dark);
  background: var(--accent-lime);
}

/* Partner Ticker */
.partner-section {
  padding: 0;
  overflow: hidden;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--grid-line);
}

.partner-ticker-band {
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--grid-line);
  position: relative;
}

.partner-static-side {
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: var(--bg-dark);
  z-index: 10;
  height: 100%;
  border-right: 1px solid var(--grid-line);
  flex-shrink: 0;
}

.partner-static-logo {
  height: 40px;
  width: auto;
  margin-right: 15px;
}

.partner-static-text {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 2px;
}

.partner-ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  mask-image: linear-gradient(to right, transparent, black 150px, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 150px, black 90%, transparent);
}

.partner-ticker {
  display: flex;
  white-space: nowrap;
  animation: partner-move 60s linear infinite;
  align-items: center;
  height: 100%;
}

/* Testimonials */
.testimonials-section {
  padding: 5px 0 60px 0;
  border-bottom: 1px solid var(--grid-line);
  scroll-margin-top: 160px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--accent-lime);
  background: rgba(179, 255, 59, 0.02);
}

/* Hero Pills - Badge Format */
.hero-pills {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--accent-lime);
  color: var(--accent-lime);
  background: transparent;
  cursor: pointer;
}

.pill-partners:hover {
  background: var(--accent-lime);
  color: #141414;
  box-shadow: 0 0 25px rgba(179, 255, 59, 0.4);
}

.pill-help {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.pill-help:hover {
  background: var(--accent-blue);
  color: #141414;
  box-shadow: 0 0 25px rgba(78, 172, 255, 0.4);
}

/* Redesigned Comparison Grid */
.help-section {
  padding: 120px 0 80px;
}

.comparison-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.comparison-pair.revealed {
  opacity: 1;
  transform: translateY(0);
}

.comp-card {
  padding: 35px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comp-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: scale(1.02);
}

.comp-card.trap {
  border-left: 3px solid #ff4d4d;
}

.comp-card.solution {
  border-left: 3px solid var(--accent-lime);
  background: rgba(179, 255, 59, 0.02);
}

.comp-card.solution:hover {
  box-shadow: 0 0 30px rgba(179, 255, 59, 0.1);
  border-color: var(--accent-lime);
}

.comp-tag {
  font-family: 'Anton', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.trap .comp-tag { color: #ff4d4d; }
.solution .comp-tag { color: var(--accent-lime); }

.comp-title {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.comp-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
}

.solution .comp-desc {
  color: #fff;
}

@media (max-width: 992px) {
  .comparison-pair {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .comp-card {
    padding: 25px;
  }
  
  .comp-title {
    font-size: 22px;
  }
}

/* State Support */
.state-support-container {
  width: 100%;
  max-width: 1100px;
  margin: 80px auto 0;
  scroll-margin-top: 160px;
}

.registration-grid-wrapper {
  grid-template-columns: 1.1fr 0.9fr !important;
}

@media (max-width: 992px) {
  .registration-grid-wrapper {
    grid-template-columns: 1fr !important;
  }
  
  .registration-grid-wrapper .grid-item:last-child {
    order: -1;
    margin-bottom: 30px;
  }
}

/* State Support */
.state-support-container {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
}

.local-support-grid {
  grid-template-columns: 1fr 1.1fr !important; /* Made widget wider */
  gap: 60px; /* Increased gap */
}

@media (max-width: 992px) {
  .local-support-grid {
    grid-template-columns: 1fr !important;
  }
}

.dropdown-pill {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.state-dropdown {
  width: 100%;
  padding: 15px 20px;
  border-radius: 30px;
  border: 1px solid var(--grid-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  font-size: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.state-dropdown:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(186, 199, 218, 0.2);
}

.dropdown-pill::after {
  content: '▼';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-lime);
  pointer-events: none;
  font-size: 12px;
}

.state-content-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--grid-line);
  border-radius: 12px;
  padding: 30px 40px; /* Reduced vertical padding */
  text-align: left;
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
  height: 100%;
}

.state-content-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--text-white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.state-content-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

.state-contact-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.state-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Anton', sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#state-phone {
  background: var(--accent-lime);
  color: var(--bg-dark);
}
#state-phone:hover {
  box-shadow: 0 0 15px rgba(179, 255, 59, 0.4);
  transform: translateY(-2px);
}

#state-website {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-muted);
}
#state-website:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
  .help-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }

  body {
    overflow-x: hidden;
  }

  .nav-content {
    height: 80px;
  }

  .massive-title {
    font-size: 72px; /* Increased for impact */
    letter-spacing: -2px;
  }

  .hero-pills {
    gap: 15px;
    justify-content: center;
    width: 100%;
  }

  .pill {
    padding: 12px 25px !important;
    font-size: 12px !important;
    min-width: 160px;
    flex: 0 1 auto;
  }

  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }
  p, span, li { font-size: 14px !important; }

  .ticker-wrap {
    top: 80px;
    height: 40px; /* Increased to avoid cut */
    z-index: 999;
  }
  
  .ticker-move span {
    font-size: 11px;
  }

  .how-sticky-container {
    padding-top: 130px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .how-left-panel {
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .how-right-panel {
    margin: 0 auto 20px auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .how-progress-container {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }

  .how-step-desc {
    display: block !important;
    font-size: 13px !important;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .partner-ticker-band {
    height: 50px;
  }
  
  .partner-static-side {
    padding: 0 20px;
  }
  
  .partner-static-logo {
    height: 30px;
    margin-right: 10px;
  }
  
  .partner-static-text {
    font-size: 18px;
  }

  .partner-ticker-wrapper {
    mask-image: linear-gradient(to right, transparent, black 40px, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black 90%, transparent);
  }

  .partner-item {
    padding: 0 30px;
  }

  .partner-item span {
    font-size: 16px !important;
    letter-spacing: 2px;
  }


  /* Compact Registration/Subscription for Mobile */
  .registration-container {
    padding: 20px 0;
  }
  
  .plans-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .plan-card {
    padding: 15px;
  }

  .help-card {
    padding: 20px;
  }
  
  .how-step-title {
    font-size: 16px !important;
  }
  
  .how-step-desc {
    font-size: 12px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .state-content-card {
    width: 100%;
    padding: 20px 15px; /* Wider/shorter */
    margin: 0;
  }
  
  .state-support-container {
    padding: 0 15px;
  }
}

/* User Rewards Dashboard Styles */
.rewards-section {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(94, 168, 255, 0.05), transparent 60%);
}

.rewards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.rewards-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

@media (max-width: 1100px) {
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-card-widget {
        order: -1;
        margin-bottom: 40px;
    }
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-title {
    font-size: 48px;
    color: var(--accent-lime);
    margin-bottom: 10px;
}

.dashboard-subtitle {
    color: var(--text-muted);
    font-weight: 400;
}

/* Quest Cards */
.quests-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 480px; /* Fixed height for 2.5 cards */
    overflow-y: auto;
    padding-right: 15px; /* Space for scrollbar */
    padding-bottom: 50px; /* Extra space to ensure bottom card can be seen */
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.quests-carousel::-webkit-scrollbar {
    width: 4px;
}
.quests-carousel::-webkit-scrollbar-track {
    background: transparent;
}
.quests-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.quest-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--grid-line);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.quest-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    transform: translateX(10px);
}

.quest-info {
    flex: 1;
}

.quest-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.quest-status-icon {
    font-size: 20px;
    color: var(--text-muted);
}

.quest-status-icon.active {
    color: var(--accent-lime);
}

.quest-tier {
    font-family: 'Anton';
    font-size: 14px;
    color: var(--accent-blue);
}

.quest-name {
    font-size: 24px;
    margin-bottom: 5px;
}

.quest-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.4;
}

.quest-min-picks {
    color: var(--accent-lime);
    font-weight: bold;
    margin-left: 5px;
}

.quest-tabs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.quest-tab {
    background: transparent;
    border: 1px solid var(--grid-line);
    color: var(--text-muted);
    padding: 8px 20px;
    font-family: 'Anton';
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.quest-tab:hover {
    border-color: var(--accent-lime);
    color: var(--text-white);
}

.quest-tab.active {
    background: var(--accent-lime);
    border-color: var(--accent-lime);
    color: var(--bg-dark);
}

.quest-progress-container {
    width: 100%;
    max-width: 300px;
}

.quest-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.quest-progress-fill {
    height: 100%;
    background: var(--accent-lime);
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.quest-stats {
    font-size: 12px;
    color: var(--text-muted);
}

.quest-action {
    margin-left: 30px;
}

.redeem-btn {
    padding: 12px 25px;
    background: var(--accent-lime);
    color: var(--bg-dark);
    border: none;
    font-family: 'Anton';
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.redeem-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.redeem-btn:not(:disabled):hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(179, 255, 59, 0.4);
}

.quest-card.locked {
    opacity: 0.6;
    filter: grayscale(0.8);
    cursor: not-allowed;
}

.quest-card.locked:hover {
    transform: none;
    border-color: var(--grid-line);
}

.quest-card.redeemed {
    border-color: var(--accent-lime);
    background: rgba(179, 255, 59, 0.05);
}

.quest-card.redeemed .quest-name {
    text-decoration: line-through;
    opacity: 0.5;
}

/* 3D Gift Card Widget - 1:1 Mobile App Parity */
.gift-card-widget {
    perspective: 1200px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gift-card-container {
    width: 350px;
    height: 220px;
    position: relative;
    cursor: pointer;
}

.gift-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gift-card-inner.flipped {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
}

.gift-card-front, .gift-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Front Side: Dark Olive/Grey Gradient */
.gift-card-front {
    background: linear-gradient(135deg, rgba(44,49,32,0.7) 0%, rgba(26,28,26,0.7) 50%, rgba(13,13,18,0.7) 100%), url('giftCard.png') no-repeat center center / cover;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.08);
}

.gc-shimmer-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.gc-shimmer-bar {
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: skewX(-20deg);
    animation: gcShimmerAnim 4.5s infinite 1.5s;
}

@keyframes gcShimmerAnim {
    0% { left: -150px; }
    100% { left: 150%; }
}

.gc-background-logo-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    pointer-events: none;
}

.gc-background-logo {
    width: 120%;
    height: 120%;
    object-fit: contain;
    opacity: 0.04;
    filter: grayscale(1) brightness(0.6);
    transform: rotate(-25deg);
}

.gc-top-bar {
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.gc-corner-badge-right {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 16px;
    border-radius: 8px;
    margin: 0;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.05);
}

.gc-badge-text {
    font-family: 'Anton';
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gc-center-branding {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.gc-pickr-text {
    font-family: 'Anton';
    font-size: 90px;
    color: #fff;
    line-height: 1;
    text-shadow: 0 10px 20px rgba(0,0,0,0.8);
    letter-spacing: -2px;
}

.gc-card-subtitle {
    font-family: 'Anton';
    font-size: 50px;
    color: #fff;
    line-height: 1;
    margin-top: 5px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.gc-centered-tap-badge {
    background: rgba(15, 15, 15, 0.6);
    padding: 6px 28px;
    border-radius: 30px;
    margin-top: 25px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Back Side: Magnetic Stripe & Promo Area */
.gift-card-back {
    background: linear-gradient(135deg, rgba(13,13,18,0.7) 0%, rgba(26,28,26,0.7) 50%, rgba(44,49,32,0.7) 100%), url('giftCard.png') no-repeat center center / cover;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.gc-magnetic-stripe {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, #d1d9e0, #8e9ba5);
    opacity: 0.8;
    z-index: 1;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.gc-magnetic-stripe::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: gcShimmerAnim 3.5s infinite 1.5s;
}

.gc-barcode-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    z-index: 10;
}

.gc-glass-wrapper {
    width: 85%;
    background: rgba(0, 0, 0, 0.4);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    backdrop-filter: blur(10px);
}

.gc-barcode-text {
    font-family: 'Montserrat';
    color: #fff;
    font-weight: bold;
}

.gc-promo-text {
    font-size: 20px;
    letter-spacing: 4px;
    color: #b3ff3b;
    text-shadow: 0 0 10px rgba(179, 255, 59, 0.3);
}

.gc-placeholder-text {
    font-size: 26px;
    letter-spacing: 3px;
    opacity: 0.8;
}

.gc-disclaimer-container {
    margin-top: 10px;
    background: rgba(20, 20, 20, 0.4);
    padding: 4px 12px;
    border-radius: 10px;
}

.gc-disclaimer-text {
    font-family: 'Montserrat';
    font-size: 10px;
    color: #aaa;
    font-style: italic;
    text-align: center;
}

.gc-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

.gc-corner-badge-left-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 14px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.gc-corner-badge-right-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 14px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}


.gift-card-hint {
    margin-top: 15px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Offers Dashboard */
.offers-dashboard {
    width: 350px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--grid-line);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.offers-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-bottom: 1px solid var(--grid-line);
}

.offer-tabs {
    display: flex;
    gap: 5px;
}

.offer-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Anton';
    font-size: 12px;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.offer-tab.active {
    background: rgba(179, 255, 59, 0.1);
    color: var(--accent-lime);
}

.offers-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Slim scrollbar */
.offers-list::-webkit-scrollbar {
    width: 4px;
}
.offers-list::-webkit-scrollbar-track {
    background: transparent;
}
.offers-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.offer-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d12 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: var(--transition);
}

.offer-card:hover {
    border-color: rgba(94, 168, 255, 0.3);
    transform: translateY(-2px);
}

.offer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-tier {
    font-family: 'Anton';
    font-size: 10px;
    color: var(--accent-blue);
    letter-spacing: 1px;
}

.offer-status-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(179, 255, 59, 0.1);
    color: var(--accent-lime);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(179, 255, 59, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(179, 255, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(179, 255, 59, 0); }
}

.offer-reward-title {
    font-family: 'Anton';
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.2;
}

.offer-quest-source {
    font-size: 11px;
    color: var(--text-muted);
}

.offer-redeem-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-lime) 0%, #6952eb 100%);
    border: none;
    padding: 12px;
    border-radius: 10px;
    color: var(--bg-dark);
    font-family: 'Anton';
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.offer-redeem-btn:disabled {
    background: #333 !important;
    color: #666 !important;
    cursor: not-allowed;
    opacity: 0.8;
}

.offer-redeem-btn.premium-locked {
    background: #444;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Upgrade Popup */
.upgrade-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.upgrade-popup.active {
    display: flex;
}

.upgrade-card {
    background: var(--bg-dark);
    border: 1px solid var(--accent-lime);
    padding: 40px;
    border-radius: 20px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(179, 255, 59, 0.2);
}

.upgrade-icon {
    font-size: 60px;
    color: var(--accent-lime);
    margin-bottom: 20px;
}

.upgrade-card h2 {
    font-family: 'Anton';
    color: #fff;
    margin-bottom: 15px;
}

.upgrade-card p {
    font-family: 'Montserrat';
    color: #aaa;
    margin-bottom: 30px;
}

.btn-upgrade {
    background: var(--accent-lime);
    color: #141414;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Anton';
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.no-offers {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    padding: 40px 0;
    font-family: 'Anton';
    letter-spacing: 1px;
    opacity: 0.5;
}

.offer-card.redeemed {
    opacity: 0.6;
}

.offer-card.redeemed .offer-status-badge {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}


.registration-card-header {
  font-family: 'Anton';
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--accent-lime);
  margin-bottom: 25px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Legal Modals */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10005; /* Above everything */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.legal-modal.active {
  opacity: 1;
  visibility: visible;
}

.legal-modal-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--grid-line);
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  padding: 40px;
  position: relative;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.legal-modal.active .legal-modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--accent-lime);
}

.legal-text {
  color: var(--text-white);
  line-height: 1.6;
}

.legal-text h2 {
  font-family: 'Anton', sans-serif;
  color: var(--accent-lime);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.legal-text h3 {
  font-family: 'Anton', sans-serif;
  color: var(--text-white);
  margin: 25px 0 10px;
  font-size: 18px;
}

.legal-text p, .legal-text ul {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.legal-text ul {
  padding-left: 20px;
}

.legal-text li {
  margin-bottom: 8px;
}

/* Footer Text Links (non-clickable) */
.footer-text-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #bac7da;
  font-size: 14px;
  cursor: default;
  user-select: none;
}

/* Footer Legal Links (clickable) */
.footer-legal-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #bac7da !important;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--accent-lime) !important;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  filter: grayscale(1);
  opacity: 0.4;
  transition: var(--transition);
}

.partner-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partner-item span {
  font-family: 'Anton';
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--text-white);
  pointer-events: none;
}

@keyframes partner-move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .hero-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-sub {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .registration-grid {
    grid-template-columns: 1fr !important;
  }

  .help-card {
    min-width: 100%;
    padding: 20px;
  }
  
  .how-step {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .how-mobile-visual {
    display: none;
  }

  .how-step.active {
    opacity: 1;
  }

  .local-support-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .registration-grid-wrapper {
    grid-template-columns: 1fr !important;
  }
  
  .registration-grid-wrapper .grid-item:last-child {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
    overflow-x: hidden;
  }


  .container {
    padding: 0 15px !important;
  }

  .how-bg-shape {
    display: none !important;
  }

  .nav-content {
    height: 50px;
    padding: 0 8px;
  }

  .nav-left {
    gap: 8px;
  }

  .logo {
    position: static !important;
    transform: none !important;
    margin-left: 5px;
  }

  .logo-img {
    height: 35px !important;
  }

  .burger-menu {
    width: 28px !important;
    height: 28px !important;
    gap: 3px !important;
  }

  .burger-menu span {
    width: 14px !important;
  }

  .nav-right {
    gap: 4px;
  }

  .btn-boxed.download-btn-nav,
  .btn-boxed.signin-btn-nav {
    padding: 2px 6px !important;
    font-size: 8.5px !important;
    white-space: nowrap !important;
    min-width: auto;
    letter-spacing: 0.2px;
  }

  .hero-main-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center !important;
  }

  .hero-left, .hero-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .massive-title {
    font-size: 64px; 
    letter-spacing: -2px;
  }

  .hero-pills {
    gap: 12px;
    justify-content: center;
    width: 100%;
  }

  .pill {
    padding: 10px 20px !important;
    font-size: 11px !important;
    min-width: 140px;
    flex: 0 1 auto;
  }

  h2 { font-size: 22px !important; }
  h3 { font-size: 18px !important; }
  p, span, li { font-size: 13px !important; }

  .ticker-wrap {
    top: 50px;
    height: 30px;
    z-index: 999;
  }
  
  .ticker-move span {
    font-size: 9px;
  }

  /* Sequential How It Works on Mobile */
  .how-scroll-track {
    height: auto !important;
  }

  .how-sticky-container {
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    padding: 20px 0 !important;
    display: block !important;
  }

  .how-left-panel {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
  }

  .how-right-panel {
    display: none !important;
  }

  .how-step {
    position: relative !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 60px !important;
    display: block !important;
    text-align: left;
  }

  .how-mobile-visual {
    display: flex !important;
    justify-content: center;
    margin-top: 30px;
  }

  .mock-phone.mini {
    width: 220px;
    height: 440px;
    border: 6px solid #2a2a30;
    border-radius: 30px;
  }

  .how-pagination {
    display: none !important;
  }

  .how-step-desc {
    font-size: 14px !important;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left !important;
    max-width: 100% !important;
  }

  /* Shrink Auth Widgets */
  .record-widget {
    padding: 15px 10px;
    flex-direction: row !important; 
    gap: 10px;
    justify-content: center;
    width: 100% !important;
    max-width: calc(100vw - 30px) !important;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .stat-circle-container {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
  }

  .stat-circle-svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Reset circle overrides to rely on viewBox/SVG scaling */
  .stat-circle-bg, .stat-circle-progress {
    cx: 60 !important;
    cy: 60 !important;
    r: 54 !important;
    stroke-width: 10 !important;
  }

  .stat-odometer {
    font-size: 34px;
  }

  .stat-label {
    font-size: 9px;
    margin-top: 2px;
  }

  .record-stats {
    gap: 15px;
    flex: 0 1 auto;
    justify-content: center;
  }

  .stat-big-value, .stat-big-total {
    font-size: 52px;
  }

  .trophy-cabinet {
    padding: 15px 10px;
    gap: 12px;
    overflow-x: auto;
    justify-content: flex-start;
    width: 100% !important;
    max-width: calc(100vw - 30px) !important;
    box-sizing: border-box;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
  }

  .trophy-slot {
    min-width: 50px;
  }

  .badge-hex {
    width: 42px;
    height: 42px;
  }

  .partner-ticker-wrapper {
    mask-image: linear-gradient(to right, transparent, black 20px, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black 98%, transparent);
  }

  .state-content-card {
    width: 100%;
    padding: 20px 15px;
    margin: 0;
  }
  
  .state-support-container {
    padding: 0 15px;
  }
}

/* ==========================================================================
   BADGE VAULT & MODAL STYLES
   ========================================================================== */

/* Vault Section */
.badge-vault-section {
    padding: 60px 0;
}

.bv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.bv-header {
    text-align: center;
    margin-bottom: 40px;
}

.bv-title {
    font-family: 'Anton';
    font-size: 36px;
    color: var(--text-white);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bv-subtitle {
    color: var(--text-muted);
    font-family: 'Montserrat';
    font-weight: 500;
    margin-top: 10px;
}

/* Category Tabs */
.bv-tabs-container {
    overflow-x: auto;
    margin-bottom: 40px;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-lime) rgba(255, 255, 255, 0.1);
}

.bv-tabs-container::-webkit-scrollbar {
    height: 4px;
}

.bv-tabs-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.bv-tabs-container::-webkit-scrollbar-thumb {
    background: var(--accent-lime);
    border-radius: 4px;
}

.bv-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    min-width: max-content;
}

.bv-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'Anton';
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bv-tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bv-tab.active {
    background: var(--accent-lime);
    color: #000;
    border-color: var(--accent-lime);
}

/* Badge Grid */
.bv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    justify-content: center;
}

.bv-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.bv-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.bv-card.locked {
    opacity: 0.6;
}

.bv-card.locked:hover {
    opacity: 0.8;
}

.bv-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
}

.bv-showcase-check {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-lime);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.bv-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
}

.bv-card-name {
    font-family: 'Anton';
    font-size: 14px;
    color: var(--text-white);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.bv-progress-track {
    width: 80%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.bv-progress-fill {
    height: 100%;
    border-radius: 2px;
}

/* Badge Detail Modal */
.badge-detail-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.badge-detail-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.badge-modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.badge-detail-modal.active .badge-modal-content {
    transform: translateY(0);
}

.badge-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.badge-modal-close:hover {
    color: var(--text-white);
}

.badge-modal-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(0, 0, 0, 0.5);
}

.badge-modal-name {
    font-family: 'Anton';
    font-size: 28px;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.badge-modal-tier {
    font-family: 'Anton';
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.badge-modal-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Anton';
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.badge-modal-status.earned {
    background: rgba(205, 255, 0, 0.1);
    color: var(--accent-lime);
}

.badge-modal-status.locked {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.badge-modal-desc {
    color: var(--text-white);
    font-family: 'Montserrat';
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.badge-modal-progress {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
}

.badge-modal-progress-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Anton';
    font-size: 14px;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.badge-modal-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    overflow: hidden;
}

.badge-modal-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

@media (max-width: 768px) {
    .bv-tabs {
        justify-content: flex-start;
    }
    .bv-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
}

/* ==========================================================================
   SUBSCRIPTION PLANS STYLES
   ========================================================================== */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.plan-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-widget:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.plan-widget.popular {
    border-color: rgba(179, 255, 59, 0.3);
    background: rgba(179, 255, 59, 0.02);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(179, 255, 59, 0.1);
}

.plan-widget.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 50px rgba(179, 255, 59, 0.2);
    border-color: var(--accent-lime);
}

.plan-widget.value {
    border-color: rgba(64, 224, 208, 0.3);
    background: rgba(64, 224, 208, 0.02);
}

.plan-widget.value:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(64, 224, 208, 0.15);
    border-color: rgba(64, 224, 208, 0.8);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-lime);
    color: #000;
    font-family: 'Anton';
    font-size: 12px;
    letter-spacing: 1px;
    padding: 6px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(179, 255, 59, 0.3);
}

.plan-badge.value-badge {
    background: #40E0D0; /* Turquoise */
    color: #000;
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
}

.plan-title {
    font-family: 'Anton';
    font-size: 24px;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.plan-price {
    font-family: 'Anton';
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.plan-widget.popular .plan-price {
    color: var(--accent-lime);
}

.plan-widget.value .plan-price {
    color: #40E0D0;
}

.plan-price span {
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.plan-desc {
    color: var(--text-muted);
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: 1.5;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-family: 'Montserrat';
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.plan-features-list ion-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.plan-widget.popular .plan-features-list ion-icon {
    color: var(--accent-lime);
}

.plan-widget.value .plan-features-list ion-icon {
    color: #40E0D0;
}

.btn-plan {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-family: 'Anton';
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-plan-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-plan-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-free {
    background: #6952eb;
    border: 1px solid #6952eb;
    color: #fff;
}

.btn-free:hover {
    background: #5642c2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(105, 82, 235, 0.4);
}

.btn-premium {
    background: var(--accent-lime);
    border: 1px solid var(--accent-lime);
    color: #000;
}

.btn-premium:hover {
    background: #a3e635;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 255, 59, 0.4);
}

.btn-family {
    background: #bac7da;
    border: 1px solid #bac7da;
    color: #000;
}

.btn-family:hover {
    background: #a1b0c7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(186, 199, 218, 0.4);
}

@media (max-width: 992px) {
    .plan-widget.popular {
        transform: scale(1);
    }
    .plan-widget.popular:hover {
        transform: translateY(-10px);
    }
}

/* APP MODAL & IPHONE FRAME */
.app-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.app-modal.active {
  display: flex;
  opacity: 1;
}

.app-modal.active ~ #pwa-launcher {
  display: none !important;
}

.iphone-frame {
  width: 375px;
  height: 812px;
  background: #000;
  border: 12px solid #141414;
  border-radius: 50px;
  position: relative;
  box-shadow: 0 0 0 4px #222, 0 30px 100px rgba(0,0,0,0.8);
  overflow: hidden;
  transform: scale(0.9);
}

@media (max-height: 900px) {
  .iphone-frame {
    transform: scale(0.8);
  }
}

@media (max-width: 500px) {
  .iphone-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    transform: scale(1);
  }
}

.iphone-dynamic-island {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 35px;
  background: #000;
  border-radius: 20px;
  z-index: 1000;
}

.iphone-content {
  width: 100%;
  height: 100%;
  background: #000;
  border: none;
}

.close-app-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 100001;
}

.close-app-btn:hover {
  background: #ff4d4d;
  border-color: #ff4d4d;
  transform: rotate(90deg);
}

.launch-pwa-overlay {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #b3ff3b;
  color: #000;
  padding: 15px 25px;
  border-radius: 30px;
  font-family: 'Anton';
  font-size: 16px;
  box-shadow: 0 10px 30px rgba(179, 255, 59, 0.4);
  display: none;
  z-index: 100002;
  cursor: pointer;
}

.launch-pwa-overlay.visible {
  display: block;
}

.redeem-btn.redeem-now,
.offer-redeem-btn.redeem-now {
    background: #6952eb !important;
    color: #141414 !important;
}

.redeem-btn.redeemed,
.offer-redeem-btn.redeemed {
    background: #bac7da !important;
    color: #141414 !important;
    opacity: 1 !important;
    cursor: pointer !important;
}