:root {
  color-scheme: dark;
  --wl-bg-950: #180B3D;
  --wl-bg-900: #24105A;
  --wl-bg-850: #301475;
  --wl-purple: #6E35F2;
  --wl-purple-soft: #8C67FF;
  --wl-blue: #129BF4;
  --wl-fuchsia: #D412F7;
  --wl-pink: #EC36C8;
  --wl-text: #FFFFFF;
  --wl-muted: #D8D1FF;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--wl-bg-950);
  color: #f8fbff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

.page-background {
  background:
    radial-gradient(circle at 14% 16%, rgba(212, 18, 247, 0.23), transparent 28rem),
    radial-gradient(circle at 80% 22%, rgba(18, 155, 244, 0.24), transparent 34rem),
    radial-gradient(circle at 48% 72%, rgba(110, 53, 242, 0.24), transparent 30rem),
    linear-gradient(135deg, #180B3D 0%, #2A126A 42%, #1E0D4E 72%, #150930 100%);
}

.page-background::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    url("../images/assets/textures/bg-lottery-pattern.svg"),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 76px 76px, auto, 72px 72px, 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 76%);
  opacity: 0.16;
}

.noise-layer {
  background-image:
    radial-gradient(circle at 22% 16%, rgba(212, 18, 247, 0.22), transparent 24rem),
    radial-gradient(circle at 78% 28%, rgba(18, 155, 244, 0.18), transparent 30rem),
    url("../images/assets/textures/bg-noise-dark.webp");
  background-position: top center;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: cover, cover, 320px 320px;
  opacity: 0.42;
}

.lw-hero {
  background-image:
    linear-gradient(180deg, rgba(24, 11, 61, 0.86) 0%, rgba(41, 18, 106, 0.76) 48%, rgba(24, 11, 61, 0.38) 100%),
    url("../images/assets/hero/hero-bg-mobile.webp");
  background-position: center top;
  background-size: cover;
}

@media (min-width: 1024px) {
  .lw-hero {
    background-image:
      linear-gradient(90deg, rgba(24, 11, 61, 0.94) 0%, rgba(42, 18, 106, 0.72) 48%, rgba(24, 11, 61, 0.20) 100%),
      url("../images/assets/hero/hero-bg-desktop.webp");
    background-position: center right;
  }
}

.glass-panel {
  border: 1px solid rgba(216, 209, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045)),
    linear-gradient(135deg, rgba(110, 53, 242, 0.12), rgba(18, 155, 244, 0.05));
  box-shadow: 0 24px 74px rgba(16, 7, 43, 0.54);
  backdrop-filter: blur(22px);
}

.hero-signal-card {
  overflow: hidden;
  border: 1px solid rgba(216, 209, 255, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(23, 11, 55, 0.94), rgba(42, 18, 106, 0.76)),
    radial-gradient(circle at 78% 8%, rgba(212, 18, 247, 0.26), transparent 15rem),
    radial-gradient(circle at 14% 84%, rgba(18, 155, 244, 0.24), transparent 16rem);
  box-shadow:
    0 34px 104px rgba(14, 6, 40, 0.62),
    0 0 64px rgba(110, 53, 242, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(24px);
  position: relative;
}

.hero-signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 255, 255, 0.10), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 46%);
}

.hero-signal-card > * {
  position: relative;
}

.legal-content h1 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content p + p {
  margin-top: 1rem;
}

.legal-content ul {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.number-ball {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 800;
  color: #ffffff;
}

.article-content {
  color: #cbd5e1;
}

.article-content p {
  margin: 0 0 1.1rem;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.85;
}

.article-content h2 {
  margin: 2rem 0 0.75rem;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 750;
  line-height: 1.2;
}

.article-content h3 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 750;
}

.article-content a,
aside a {
  color: #BFA8FF;
  font-weight: 700;
  text-decoration: none;
}

.article-content a:hover,
aside a:hover {
  color: #ffffff;
}

.article-content ul,
aside ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
}

@media (max-width: 767px) {
  header img[alt="LottoWinners.club"] {
    max-width: 190px;
  }

  .lw-hero {
    min-height: auto;
  }
}

.feature-copy-block {
  position: relative;
}

@media (max-width: 767px) {
  .lw-hero {
    padding-top: 1.5rem !important;
    padding-bottom: 2.75rem !important;
    background-position: center top;
  }

  .lw-hero h1 {
    margin-top: 1rem !important;
    font-size: 2.3rem !important;
    line-height: 1.05 !important;
  }

  .lw-hero p {
    margin-top: 0.9rem !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }

  #preview,
  #unlock,
  #how-it-works,
  main > section.px-4.py-16 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  #preview .feature-section,
  #unlock .feature-section {
    gap: 1rem !important;
  }

  #preview .feature-media-panel,
  #unlock .feature-media-panel {
    display: none;
  }

  .feature-copy-block {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.75rem;
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(24, 11, 61, 0.35) 0%, rgba(24, 11, 61, 0.82) 48%, rgba(24, 11, 61, 0.96) 100%);
    box-shadow: 0 18px 60px rgba(16, 7, 43, 0.42);
    backdrop-filter: blur(10px);
    isolation: isolate;
  }

  .feature-copy-block::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
  }

  .feature-copy-block::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(24, 11, 61, 0.18) 0%, rgba(24, 11, 61, 0.52) 38%, rgba(24, 11, 61, 0.94) 100%);
  }

  .feature-copy-insights::before {
    background-image: url("../images/assets/sections/section-insights-mobile.webp");
  }

  .feature-copy-unlock::before {
    background-image: url("../images/assets/sections/section-alerts-mobile.webp");
  }

  #preview h2,
  #unlock h2,
  #how-it-works h2 {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  #preview .mt-8.grid,
  #how-it-works .mt-10.grid {
    margin-top: 1.25rem !important;
    gap: 0.9rem !important;
  }

  .glass-panel.rounded-3xl,
  .rounded-2xl.border {
    padding: 1rem !important;
  }

  footer .flex.flex-wrap.items-center.gap-4 {
    gap: 0.75rem !important;
  }
}

@media (max-width: 767px) {
  .live-preview-module {
    display: block;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-signal-card {
    border-radius: 1.5rem;
  }

  .hero-signal-card.p-6 {
    padding: 1rem !important;
  }

  .hero-signal-card h2 {
    font-size: 1.7rem !important;
    line-height: 1.08 !important;
  }

  .hero-signal-card .grid.h-16.w-16 {
    display: none;
  }

  .hero-signal-card .mt-7 {
    margin-top: 1.1rem !important;
    gap: 0.8rem !important;
  }

  .hero-signal-card .rounded-2xl.p-4 {
    padding: 0.95rem !important;
  }

  .hero-signal-card .mb-3.flex {
    margin-bottom: 0.75rem !important;
    display: block !important;
  }

  .hero-signal-card .number-ball {
    width: 2.05rem;
    height: 2.05rem;
    font-size: 0.8rem;
  }
}

header img[alt="LottoWinners.club"],
footer img[alt="LottoWinners.club"] {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(18, 155, 244, 0.18));
}

footer img[alt="LottoWinners.club"] {
  opacity: 1 !important;
}

@media (max-width: 767px) {
  header .mx-auto.flex.h-\[76px\] {
    height: 64px !important;
    gap: 0.65rem !important;
  }

  main.relative.z-10.pt-\[76px\] {
    padding-top: 64px !important;
  }

  header a[aria-label="LottoWinners.club home"] {
    min-width: 0;
    flex: 1 1 auto;
  }

  header img[alt="LottoWinners.club"] {
    width: min(136px, 42vw) !important;
    height: auto !important;
    max-width: 136px !important;
  }

  header a[href="./index.html#lead"] {
    flex: 0 0 auto;
    border-radius: 0.75rem !important;
    padding: 0.72rem 0.82rem !important;
    font-size: 0.68rem !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  .lw-hero {
    padding-top: 1.15rem !important;
    padding-bottom: 1.75rem !important;
    background-image:
      linear-gradient(180deg, rgba(24, 11, 61, 0.90) 0%, rgba(41, 18, 106, 0.76) 46%, rgba(24, 11, 61, 0.52) 100%),
      url("../images/assets/hero/hero-bg-mobile.webp") !important;
    background-position: center top !important;
  }

  .lw-hero > .mx-auto.grid {
    gap: 1.25rem !important;
  }

  .lw-hero .inline-flex {
    max-width: 100%;
    padding: 0.55rem 0.75rem !important;
    letter-spacing: 0.13em !important;
    font-size: 0.64rem !important;
  }

  .lw-hero h1 {
    margin-top: 0.85rem !important;
    max-width: 18ch;
    font-size: clamp(2.05rem, 10.5vw, 2.45rem) !important;
  }

  .lw-hero p {
    margin-top: 0.75rem !important;
    max-width: 32rem;
  }

  #lead {
    margin-top: 1.2rem !important;
  }

  #lead-form {
    border-radius: 1.1rem !important;
    padding: 0.75rem !important;
  }

  #lead-form label {
    padding-left: 0.15rem !important;
    font-size: 0.78rem !important;
  }

  #lead-form input,
  #lead-form button {
    height: 3rem !important;
  }

  #lead-form button {
    width: 100%;
    align-self: stretch !important;
  }

  .live-preview-module {
    margin-top: 0 !important;
  }

  .hero-signal-card {
    border-radius: 1.25rem !important;
    box-shadow: 0 20px 58px rgba(14, 6, 40, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
  }

  .hero-signal-card h2 {
    font-size: 1.48rem !important;
  }

  .hero-signal-card .mt-7 {
    margin-top: 0.85rem !important;
  }

  .hero-signal-card .rounded-2xl.p-4 {
    padding: 0.78rem !important;
  }

  .hero-signal-card .number-ball {
    width: 1.92rem !important;
    height: 1.92rem !important;
    font-size: 0.74rem !important;
  }

  #preview,
  #unlock,
  #how-it-works,
  main > section.px-4.py-16 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  #preview .feature-section,
  #unlock .feature-section {
    gap: 0.85rem !important;
  }

  .feature-copy-block {
    min-height: 0 !important;
    padding: 1.15rem !important;
    border-radius: 1.35rem !important;
  }

  .feature-copy-block::before {
    opacity: 0.62;
    transform: scale(1.01);
    background-position: center !important;
  }

  .feature-copy-insights::before {
    background-image: url("../images/assets/sections/section-insights-desktop.webp") !important;
  }

  .feature-copy-unlock::before {
    background-image: url("../images/assets/sections/section-alerts-desktop.webp") !important;
  }

  .feature-copy-block .mt-4 {
    margin-top: 0.75rem !important;
  }

  .feature-copy-block .mt-5 {
    margin-top: 0.75rem !important;
  }

  .feature-copy-block .mt-8 {
    margin-top: 1rem !important;
  }

  #preview h2,
  #unlock h2,
  #how-it-works h2 {
    font-size: 1.72rem !important;
  }

  #preview p,
  #unlock p {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
  }

  #preview .mt-8.grid,
  #how-it-works .mt-10.grid,
  section .mt-10.grid {
    margin-top: 1rem !important;
    gap: 0.75rem !important;
  }

  .glass-panel.rounded-3xl,
  .rounded-2xl.border {
    padding: 0.9rem !important;
  }

  section.px-4.pb-20.pt-10 {
    padding-top: 1.5rem !important;
    padding-bottom: 2.25rem !important;
  }

  footer {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  footer img[alt="LottoWinners.club"] {
    width: min(190px, 58vw) !important;
    height: auto !important;
  }

  footer nav {
    gap: 0.7rem 1rem !important;
  }

  footer .mt-8 {
    margin-top: 1.25rem !important;
  }
}

.header-actions { min-width: 0; }
.header-login-link { box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }

.powerball-preview-card .powerball-logo-shell {
  display: grid;
  min-width: 104px;
  max-width: 124px;
  min-height: 64px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.92);
  padding: 0.55rem 0.75rem;
  box-shadow: 0 18px 42px rgba(4, 1, 15, 0.25);
}

.powerball-logo-img {
  display: block;
  width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.powerball-red {
  background: #D71920 !important;
  color: #ffffff !important;
  box-shadow: 0 0 22px rgba(215, 25, 32, 0.35);
}

.signal-line-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-line-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.26);
}

#login-status[data-type="error"] { color: #fecaca; }
#login-status[data-type="info"] { color: #bae6fd; }

.member-page body { opacity: 0; }
.member-ready body { opacity: 1; transition: opacity 180ms ease; }

.member-filter-bar {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px) minmax(160px, 220px);
  gap: 0.85rem;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1.35rem;
  background: rgba(255,255,255,0.07);
  padding: 0.85rem;
  backdrop-filter: blur(18px);
}

.member-filter-bar > div {
  color: #d8d1ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.member-filter-bar input,
.member-filter-bar select {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.9rem;
  background: rgba(24, 11, 61, 0.72);
  color: #ffffff;
  padding: 0 0.9rem;
  outline: none;
}

.member-filter-bar input:focus,
.member-filter-bar select:focus {
  border-color: rgba(191, 168, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(140, 103, 255, 0.16);
}

.member-lottery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.member-lottery-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(216, 209, 255, 0.16);
  border-radius: 1.65rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.045)),
    radial-gradient(circle at 80% 8%, rgba(212, 18, 247, 0.18), transparent 12rem),
    rgba(24, 11, 61, 0.72);
  box-shadow: 0 24px 72px rgba(16, 7, 43, 0.44);
  padding: 1.05rem;
  backdrop-filter: blur(18px);
}

.member-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.member-card-head p {
  color: #bfa8ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.member-card-head h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 760;
  line-height: 1.12;
  margin: 0.25rem 0 0;
}

.member-card-head > span {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(18,155,244,0.12);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.35rem 0.55rem;
  white-space: nowrap;
}

.member-lines {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.member-lines section {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.1rem;
  background: rgba(255,255,255,0.055);
  padding: 0.8rem;
}

.member-lines strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #f5f3ff;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-main-balls,
.member-extra-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.member-number-ball {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: #180B3D;
  font-size: 0.75rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(4,1,15,0.18);
}

.member-number-extra {
  background: linear-gradient(135deg, #D412F7, #6E35F2) !important;
  color: #ffffff !important;
}

.member-extra-wrap {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.member-extra-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.member-extra-group > span {
  min-width: 3.5rem;
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 800;
}

.member-refresh-btn {
  margin-top: auto;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1rem;
  background: rgba(255,255,255,0.07);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.75rem 0.9rem;
  transition: transform 160ms ease, background 160ms ease;
}

.member-refresh-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
}

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

@media (max-width: 767px) {
  header .header-actions {
    gap: 0.45rem !important;
  }

  .header-login-link {
    border-radius: 0.72rem !important;
    padding: 0.62rem 0.62rem !important;
    font-size: 0.68rem !important;
    line-height: 1 !important;
  }

  header a[href="./index.html#lead"] {
    max-width: 6.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .powerball-preview-card .powerball-logo-shell {
    min-width: 86px;
    max-width: 92px;
    min-height: 48px;
    border-radius: 0.95rem;
    padding: 0.45rem 0.55rem;
  }

  .powerball-logo-img {
    max-height: 35px;
  }

  .member-hero {
    padding-top: 1.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .member-hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.55rem) !important;
    line-height: 1.05 !important;
  }

  .member-filter-bar {
    grid-template-columns: 1fr;
    border-radius: 1.1rem;
  }

  .member-lottery-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .member-lottery-card {
    border-radius: 1.25rem;
    padding: 0.9rem;
  }

  .member-card-head {
    display: grid;
    gap: 0.75rem;
  }

  .member-card-head > span {
    width: fit-content;
  }

  .member-number-ball {
    width: 1.82rem;
    height: 1.82rem;
    font-size: 0.7rem;
  }
}

.preview-refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.78rem 1rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.preview-refresh-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
}
.powerball-preview-card .powerball-logo-shell {
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.98), rgba(255,255,255,0.88));
}
.powerball-logo-img {
  width: 84px;
  max-height: 84px;
}
.signal-line-card.theme-hot {
  border: 1px solid rgba(255, 133, 67, 0.30);
  background: linear-gradient(180deg, rgba(255, 151, 71, 0.16), rgba(255, 93, 56, 0.10)), rgba(255,255,255,0.03);
}
.signal-line-card.theme-cold {
  border: 1px solid rgba(119, 204, 255, 0.30);
  background: linear-gradient(180deg, rgba(120, 218, 255, 0.14), rgba(71, 127, 255, 0.10)), rgba(255,255,255,0.03);
}
.signal-line-card.theme-unique {
  border: 1px solid rgba(255, 209, 102, 0.32);
  background: linear-gradient(180deg, rgba(255, 218, 109, 0.14), rgba(212, 165, 44, 0.12)), rgba(255,255,255,0.03);
}
.signal-line-card.theme-hot .text-sm,
.signal-line-card.theme-hot .preview-line-badge { color: #ffe3c5; }
.signal-line-card.theme-cold .text-sm,
.signal-line-card.theme-cold .preview-line-badge { color: #d8f2ff; }
.signal-line-card.theme-unique .text-sm,
.signal-line-card.theme-unique .preview-line-badge { color: #fff0bf; }
.preview-line-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.premium-set-wrap,
.member-line { position: relative; }
.premium-extra-wrap {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}
.premium-extra-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.premium-extra-group > span {
  min-width: 2.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.premium-extra-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.number-ball.premium-ball,
.member-number-ball {
  position: relative;
  overflow: hidden;
}
.number-ball.premium-ball::before,
.member-number-ball::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  opacity: 0.55;
  pointer-events: none;
}
.number-ball.premium-ball::after,
.member-number-ball::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -40%;
  width: 62%;
  height: 180%;
  transform: rotate(28deg);
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0));
  opacity: 0.28;
  pointer-events: none;
}
.theme-hot-main,
.member-number-hot-main {
  background: radial-gradient(circle at 30% 28%, #fff3de 0%, #ffd09c 24%, #ff7f32 62%, #d93a11 100%) !important;
  color: #3c0a03 !important;
  box-shadow: 0 0 0 1px rgba(255,168,93,0.25), 0 12px 26px rgba(230, 78, 27, 0.35), 0 0 26px rgba(255, 115, 63, 0.18);
}
.theme-hot-main::before,
.member-number-hot-main::before {
  background: radial-gradient(circle at 32% 22%, rgba(255,255,255,0.84), rgba(255, 204, 122, 0.12) 60%, rgba(255, 120, 40, 0.06));
}
.theme-hot-extra,
.member-number-hot-extra {
  background: radial-gradient(circle at 30% 26%, #fff7eb 0%, #ffd8aa 20%, #ff5f3c 58%, #8b1010 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 1px rgba(255,128,93,0.3), 0 14px 30px rgba(173, 24, 24, 0.42), 0 0 28px rgba(255, 88, 63, 0.26);
}
.theme-cold-main,
.member-number-cold-main {
  background: radial-gradient(circle at 30% 28%, #fbfeff 0%, #dcf4ff 20%, #83d7ff 58%, #2357d0 100%) !important;
  color: #092450 !important;
  box-shadow: 0 0 0 1px rgba(134,206,255,0.24), 0 12px 24px rgba(32, 113, 225, 0.24), 0 0 28px rgba(109, 224, 255, 0.15);
}
.theme-cold-main::before,
.member-number-cold-main::before {
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,0.95), rgba(201,237,255,0.18) 58%, rgba(144,213,255,0.08));
}
.theme-cold-extra,
.member-number-cold-extra {
  background: radial-gradient(circle at 30% 28%, #f7fdff 0%, #d1f0ff 20%, #63c7ff 54%, #0f2d74 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 1px rgba(122,210,255,0.26), 0 12px 26px rgba(15, 60, 145, 0.34), 0 0 26px rgba(105, 218, 255, 0.22);
}
.theme-unique-main,
.member-number-unique-main {
  background: radial-gradient(circle at 30% 28%, #fffef4 0%, #ffeeb2 18%, #f0c64e 58%, #a57110 100%) !important;
  color: #463108 !important;
  box-shadow: 0 0 0 1px rgba(255,211,118,0.24), 0 12px 28px rgba(184, 135, 39, 0.27), 0 0 26px rgba(255, 216, 120, 0.22);
}
.theme-unique-main::before,
.member-number-unique-main::before {
  background: radial-gradient(circle at 34% 24%, rgba(255,255,255,0.92), rgba(255,237,171,0.18) 56%, rgba(255,220,134,0.10));
}
.theme-unique-extra,
.member-number-unique-extra {
  background: radial-gradient(circle at 30% 28%, #fffdf6 0%, #ffe79d 18%, #ffce47 56%, #8d5e08 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 1px rgba(255,216,110,0.28), 0 14px 28px rgba(156, 109, 18, 0.36), 0 0 28px rgba(255, 211, 90, 0.24);
}
.premium-ball,
.member-number-ball {
  animation: none;
}
.premium-ball.is-live,
.member-number-ball.is-live {
  animation: premiumBallEntrance 560ms cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--ball-index, 0) * 45ms);
}
.theme-hot-main.is-live,
.theme-hot-extra.is-live,
.member-number-hot-main.is-live,
.member-number-hot-extra.is-live {
  animation-name: premiumBallEntrance, emberPulse;
  animation-duration: 560ms, 4.8s;
  animation-delay: calc(var(--ball-index, 0) * 45ms), calc(560ms + var(--ball-index, 0) * 18ms);
  animation-iteration-count: 1, infinite;
}
.theme-cold-main.is-live,
.theme-cold-extra.is-live,
.member-number-cold-main.is-live,
.member-number-cold-extra.is-live {
  animation-name: premiumBallEntrance, frostPulse;
  animation-duration: 560ms, 5.2s;
  animation-delay: calc(var(--ball-index, 0) * 45ms), calc(560ms + var(--ball-index, 0) * 18ms);
  animation-iteration-count: 1, infinite;
}
.theme-unique-main.is-live,
.theme-unique-extra.is-live,
.member-number-unique-main.is-live,
.member-number-unique-extra.is-live {
  animation-name: premiumBallEntrance, goldPulse;
  animation-duration: 560ms, 5s;
  animation-delay: calc(var(--ball-index, 0) * 45ms), calc(560ms + var(--ball-index, 0) * 18ms);
  animation-iteration-count: 1, infinite;
}
@keyframes premiumBallEntrance {
  0% { transform: translateY(14px) scale(0.84) rotate(-4deg); opacity: 0; }
  65% { transform: translateY(-3px) scale(1.04) rotate(1deg); opacity: 1; }
  100% { transform: translateY(0) scale(1) rotate(0); opacity: 1; }
}
@keyframes emberPulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.12) brightness(1.03); box-shadow: 0 0 0 1px rgba(255,168,93,0.25), 0 12px 26px rgba(230, 78, 27, 0.4), 0 0 32px rgba(255, 115, 63, 0.34); }
}
@keyframes frostPulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.06) brightness(1.04); box-shadow: 0 0 0 1px rgba(134,206,255,0.24), 0 12px 24px rgba(32, 113, 225, 0.28), 0 0 34px rgba(109, 224, 255, 0.3); }
}
@keyframes goldPulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.08) brightness(1.05); box-shadow: 0 0 0 1px rgba(255,211,118,0.24), 0 12px 28px rgba(184, 135, 39, 0.30), 0 0 34px rgba(255, 216, 120, 0.34); }
}
#public-powerball-preview.is-refreshing,
.member-lottery-card.is-refreshing,
.member-lottery-grid.is-grid-refreshing {
  opacity: 0.62;
  transform: scale(0.995);
  transition: opacity 140ms ease, transform 140ms ease;
}
.member-card-branding {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.member-lottery-brand {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  border-radius: 1.15rem;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.96), rgba(255,255,255,0.78));
  box-shadow: 0 18px 38px rgba(4, 1, 15, 0.22);
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
}
.member-lottery-brand img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}
.member-card-head small {
  display: block;
  margin-top: 0.3rem;
  color: #cbd5e1;
  font-size: 0.74rem;
}
.member-card-head > span { align-self: flex-start; }
.member-lines { gap: 0.82rem; }
.member-line {
  border-radius: 1.15rem;
  padding: 0.85rem;
}
.member-line-hot {
  border: 1px solid rgba(255, 133, 67, 0.24);
  background: linear-gradient(180deg, rgba(255, 148, 68, 0.12), rgba(255, 92, 58, 0.08)), rgba(255,255,255,0.05);
}
.member-line-cold {
  border: 1px solid rgba(119, 204, 255, 0.24);
  background: linear-gradient(180deg, rgba(120, 218, 255, 0.12), rgba(71, 127, 255, 0.08)), rgba(255,255,255,0.05);
}
.member-line-unique {
  border: 1px solid rgba(255, 209, 102, 0.24);
  background: linear-gradient(180deg, rgba(255, 220, 109, 0.12), rgba(212, 165, 44, 0.08)), rgba(255,255,255,0.05);
}
.member-line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.member-line-head strong { margin: 0; }
.member-line-head span {
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.member-line-hot .member-line-head span { background: rgba(255, 115, 63, 0.18); color: #ffe1cf; }
.member-line-cold .member-line-head span { background: rgba(106, 218, 255, 0.16); color: #dff7ff; }
.member-line-unique .member-line-head span { background: rgba(255, 214, 105, 0.16); color: #fff1c3; }
.member-line > p {
  margin: 0 0 0.72rem;
  font-size: 0.74rem;
  color: #d6d3f7;
}
.member-card-head h3 { margin-top: 0.12rem; }
@media (max-width: 767px) {
  .powerball-logo-img {
    width: 58px;
    max-height: 58px;
  }
  .preview-refresh-btn { width: 100%; }
  .member-card-branding { align-items: flex-start; }
  .member-lottery-brand {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 0.95rem;
  }
  .member-card-head { gap: 0.8rem; }
  .member-line { padding: 0.78rem; }
}

.member-filter-bar select option {
  background: #665d88;
  color: #ffffff;
}

.line-head-row,
.member-line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.72rem;
}

.line-title,
.member-line-head strong {
  margin: 0;
  color: #f6f3ff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.line-copy-btn,
.member-play-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.line-copy-btn:hover,
.member-play-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.24);
}

.member-play-link {
  min-width: 4.6rem;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(18,155,244,0.18), rgba(110,53,242,0.18));
}

.member-card-head p {
  color: #bfa8ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.member-card-head small,
.member-line > p,
.member-line-head span,
.preview-line-badge {
  display: none !important;
}

.signal-line-card.theme-hot,
.member-line-hot {
  border-color: rgba(255, 146, 94, 0.22);
  background: linear-gradient(180deg, rgba(255, 135, 73, 0.08), rgba(255, 108, 66, 0.04)), rgba(255,255,255,0.025);
}

.signal-line-card.theme-cold,
.member-line-cold {
  border-color: rgba(130, 208, 255, 0.22);
  background: linear-gradient(180deg, rgba(132, 214, 255, 0.08), rgba(82, 140, 255, 0.04)), rgba(255,255,255,0.025);
}

.signal-line-card.theme-unique,
.member-line-unique {
  border-color: rgba(247, 214, 124, 0.24);
  background: linear-gradient(180deg, rgba(250, 214, 116, 0.08), rgba(219, 176, 73, 0.04)), rgba(255,255,255,0.025);
}

.number-ball.premium-ball,
.member-number-ball {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden;
  isolation: isolate;
}

.ball-number {
  position: relative;
  z-index: 3;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 1px rgba(0,0,0,0.14);
}

.number-ball.premium-ball::before,
.member-number-ball::before,
.number-ball.premium-ball::after,
.member-number-ball::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.number-ball.premium-ball::before,
.member-number-ball::before {
  inset: 0;
  border: 1px solid transparent;
}

.number-ball.premium-ball::after,
.member-number-ball::after {
  inset: 1px;
}

.theme-hot-main::before,
.theme-hot-extra::before,
.member-number-hot-main::before,
.member-number-hot-extra::before {
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.22), transparent 30%),
    radial-gradient(circle at 50% 86%, rgba(255,166,92,0.22), transparent 24%),
    linear-gradient(180deg, rgba(255,126,68,0.16), rgba(173,54,22,0.14));
  border-color: rgba(255,150,92,0.30);
  backdrop-filter: blur(1px);
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  background:
    radial-gradient(circle at 20% 78%, rgba(255,188,111,0.22) 0 8%, transparent 10%),
    radial-gradient(circle at 50% 70%, rgba(255,122,73,0.24) 0 10%, transparent 12%),
    radial-gradient(circle at 78% 80%, rgba(255,171,86,0.20) 0 8%, transparent 10%);
  filter: blur(0.3px);
}

.theme-hot-main .ball-number,
.theme-hot-extra .ball-number,
.member-number-hot-main .ball-number,
.member-number-hot-extra .ball-number { color: #fff8f2; }

.theme-cold-main::before,
.theme-cold-extra::before,
.member-number-cold-main::before,
.member-number-cold-extra::before {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 30%),
    linear-gradient(180deg, rgba(117,204,255,0.12), rgba(36,88,186,0.14));
  border-color: rgba(147,218,255,0.28);
}

.theme-cold-main::after,
.theme-cold-extra::after,
.member-number-cold-main::after,
.member-number-cold-extra::after {
  background:
    linear-gradient(135deg, transparent 26%, rgba(219,245,255,0.16) 27%, transparent 31%),
    linear-gradient(45deg, transparent 58%, rgba(211,241,255,0.14) 59%, transparent 63%),
    radial-gradient(circle at 70% 30%, rgba(223,246,255,0.16) 0 9%, transparent 11%);
}

.theme-cold-main .ball-number,
.theme-cold-extra .ball-number,
.member-number-cold-main .ball-number,
.member-number-cold-extra .ball-number { color: #f3fbff; }

.theme-unique-main::before,
.theme-unique-extra::before,
.member-number-unique-main::before,
.member-number-unique-extra::before {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.24), transparent 32%),
    linear-gradient(180deg, rgba(246,214,127,0.14), rgba(173,129,35,0.15));
  border-color: rgba(247,217,132,0.30);
}

.theme-unique-main::after,
.theme-unique-extra::after,
.member-number-unique-main::after,
.member-number-unique-extra::after {
  background:
    radial-gradient(circle at 28% 72%, rgba(255,226,152,0.18) 0 8%, transparent 10%),
    radial-gradient(circle at 60% 36%, rgba(255,215,120,0.18) 0 6%, transparent 8%),
    radial-gradient(circle at 78% 70%, rgba(252,232,170,0.14) 0 7%, transparent 9%);
}

.theme-unique-main .ball-number,
.theme-unique-extra .ball-number,
.member-number-unique-main .ball-number,
.member-number-unique-extra .ball-number { color: #fffdf6; }

.premium-ball.is-live,
.member-number-ball.is-live {
  animation: lottoBallReveal 420ms cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc(var(--ball-index, 0) * 34ms);
}

@keyframes lottoBallReveal {
  0% { transform: translateY(8px) scale(0.92); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.member-lottery-brand {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 12px 28px rgba(4,1,15,0.18);
}

@media (max-width: 767px) {
  .number-ball.premium-ball,
  .member-number-ball {
    width: 1.92rem;
    height: 1.92rem;
  }

  .ball-number {
    font-size: 0.71rem;
  }

  .line-copy-btn,
  .member-play-link {
    min-height: 1.85rem;
    padding: 0.42rem 0.65rem;
    font-size: 0.64rem;
  }
}

.theme-hot-main.is-live,
.theme-hot-extra.is-live,
.theme-cold-main.is-live,
.theme-cold-extra.is-live,
.theme-unique-main.is-live,
.theme-unique-extra.is-live,
.member-number-hot-main.is-live,
.member-number-hot-extra.is-live,
.member-number-cold-main.is-live,
.member-number-cold-extra.is-live,
.member-number-unique-main.is-live,
.member-number-unique-extra.is-live {
  animation: lottoBallReveal 420ms cubic-bezier(.2,.8,.2,1) both !important;
  animation-delay: calc(var(--ball-index, 0) * 34ms) !important;
}

.powerball-preview-card .powerball-logo-shell {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.preview-play-btn {
  text-decoration: none;
  background: linear-gradient(135deg, rgba(18,155,244,0.18), rgba(110,53,242,0.18));
}

.line-copy-btn,
.member-play-link,
.preview-refresh-btn {
  position: relative;
  overflow: hidden;
}

.line-copy-btn::after,
.member-play-link::after,
.preview-refresh-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.14) 45%, transparent 85%);
  transform: translateX(-120%);
  transition: transform 320ms ease;
}

.line-copy-btn:hover::after,
.member-play-link:hover::after,
.preview-refresh-btn:hover::after {
  transform: translateX(120%);
}

.line-copy-btn.is-copied {
  background: linear-gradient(135deg, rgba(52,211,153,0.20), rgba(16,185,129,0.14));
  border-color: rgba(74,222,128,0.40);
  color: #ecfdf5;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.10);
}

.line-copy-btn.is-error {
  background: linear-gradient(135deg, rgba(248,113,113,0.18), rgba(239,68,68,0.12));
  border-color: rgba(248,113,113,0.38);
  color: #fff1f2;
}

.member-filter-bar select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.7) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

@media (max-width: 767px) {
  .member-filter-bar {
    padding: 0.65rem;
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
  }

  .member-filter-bar input,
  .member-filter-bar select {
    min-height: 2.9rem;
    border-radius: 0.85rem;
    background-color: rgba(33, 18, 77, 0.96);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  }

  .member-filter-bar select {
    appearance: auto;
    -webkit-appearance: menulist;
    background-image: none;
    padding-right: 0.8rem;
  }
}

.theme-hot-main::before,
.theme-hot-extra::before,
.member-number-hot-main::before,
.member-number-hot-extra::before {
  background:
    radial-gradient(circle at 30% 16%, rgba(255,255,255,0.26), transparent 26%),
    linear-gradient(180deg, rgba(255,157,91,0.20), rgba(177,46,20,0.20));
  border-color: rgba(255,155,90,0.40);
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  background:
    radial-gradient(circle at 20% 82%, rgba(255,205,122,0.32) 0 9%, transparent 11%),
    radial-gradient(circle at 48% 72%, rgba(255,125,73,0.34) 0 12%, transparent 14%),
    radial-gradient(circle at 76% 84%, rgba(255,173,86,0.30) 0 8%, transparent 10%),
    conic-gradient(from 190deg at 50% 86%, transparent 0 10deg, rgba(255,129,67,0.26) 10deg 42deg, transparent 42deg 75deg, rgba(255,188,92,0.24) 75deg 102deg, transparent 102deg 1turn);
  filter: blur(0.35px);
}

.theme-cold-main::before,
.theme-cold-extra::before,
.member-number-cold-main::before,
.member-number-cold-extra::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(180deg, rgba(136,217,255,0.16), rgba(41,95,197,0.18));
  border-color: rgba(147,218,255,0.38);
}

.theme-cold-main::after,
.theme-cold-extra::after,
.member-number-cold-main::after,
.member-number-cold-extra::after {
  background:
    linear-gradient(135deg, transparent 24%, rgba(233,248,255,0.22) 25%, transparent 29%),
    linear-gradient(45deg, transparent 56%, rgba(211,241,255,0.20) 57%, transparent 61%),
    linear-gradient(90deg, transparent 43%, rgba(224,246,255,0.18) 44%, transparent 48%),
    radial-gradient(circle at 68% 28%, rgba(225,246,255,0.24) 0 10%, transparent 12%);
}

.theme-unique-main::before,
.theme-unique-extra::before,
.member-number-unique-main::before,
.member-number-unique-extra::before {
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(180deg, rgba(248,220,126,0.18), rgba(179,129,30,0.18));
  border-color: rgba(247,217,132,0.40);
}

.theme-unique-main::after,
.theme-unique-extra::after,
.member-number-unique-main::after,
.member-number-unique-extra::after {
  background:
    radial-gradient(circle at 20% 74%, rgba(255,228,147,0.28) 0 8%, transparent 10%),
    radial-gradient(circle at 56% 34%, rgba(255,219,124,0.28) 0 7%, transparent 9%),
    radial-gradient(circle at 78% 68%, rgba(255,236,181,0.24) 0 8%, transparent 10%),
    linear-gradient(135deg, transparent 0 42%, rgba(255,220,132,0.14) 42% 47%, transparent 47% 100%);
}

.ball-number {
  text-shadow: 0 1px 2px rgba(0,0,0,0.22), 0 0 2px rgba(0,0,0,0.18);
}

:root {
  --ios-select-bg: linear-gradient(180deg, rgba(42,26,95,0.96), rgba(31,18,75,0.98));
}

.powerball-preview-card {
  padding: 1.75rem !important;
}

.powerball-preview-card > .flex.items-start.justify-between {
  align-items: flex-start;
  gap: 1.1rem;
}

.powerball-preview-card h2 {
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.powerball-preview-card p.text-xs {
  margin-bottom: 0.25rem;
}

.powerball-preview-card p.text-sm {
  max-width: 30rem;
}

#public-powerball-preview {
  margin-top: 1.35rem;
  gap: 0.85rem !important;
}

#public-powerball-preview .signal-line-card {
  padding: 1rem !important;
  border-radius: 1.1rem;
}

.preview-refresh-btn {
  min-width: 10rem;
}

.member-filter-bar input,
.member-filter-bar select {
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.member-filter-bar select:focus,
.member-filter-bar input:focus {
  outline: none;
  border-color: rgba(147, 197, 253, 0.55);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.16);
}

@media (max-width: 767px) {
  .member-filter-bar {
    display: grid;
    gap: 0.7rem;
    padding: 0.72rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  }

  .member-filter-bar input,
  .member-filter-bar select {
    width: 100%;
    min-height: 3rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--ios-select-bg);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.05),
      0 1px 1px rgba(0,0,0,0.08);
  }

  .member-filter-bar select {
    -webkit-appearance: none;
    appearance: none;
    background-image:
      linear-gradient(180deg, transparent, transparent),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-size: auto, 18px 18px;
    background-position: center, calc(100% - 14px) center;
    padding-right: 2.5rem;
  }

  .powerball-preview-card {
    padding: 1.1rem !important;
  }

  .powerball-preview-card > .flex.items-start.justify-between {
    gap: 0.85rem;
  }

  .powerball-preview-card h2 {
    font-size: 1.75rem !important;
  }

  .powerball-preview-card p.text-sm {
    margin-top: 0.45rem;
    line-height: 1.55;
  }

  #public-powerball-preview .signal-line-card {
    padding: 0.88rem !important;
  }

  .preview-refresh-btn {
    width: 100%;
    min-width: 0;
  }
}

.ball-number {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  -webkit-text-stroke: 0.35px rgba(14, 10, 30, 0.26);
  text-shadow:
    0 1px 2px rgba(8, 6, 20, 0.32),
    0 0 1px rgba(255,255,255,0.08);
}

.number-ball.premium-ball,
.member-number-ball {
  width: 2.18rem;
  height: 2.18rem;
}

.theme-hot-main,
.theme-hot-extra,
.member-number-hot-main,
.member-number-hot-extra,
.theme-cold-main,
.theme-cold-extra,
.member-number-cold-main,
.member-number-cold-extra,
.theme-unique-main,
.theme-unique-extra,
.member-number-unique-main,
.member-number-unique-extra {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

.theme-hot-main::before,
.theme-hot-extra::before,
.member-number-hot-main::before,
.member-number-hot-extra::before {
  inset: -1px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,110,51,0.08), rgba(255,110,51,0.02) 60%, transparent 72%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.20), transparent 28%),
    linear-gradient(180deg, rgba(255,170,95,0.18), rgba(174,45,15,0.20));
  border-color: rgba(255,153,90,0.44);
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  inset: -3px;
  background:
    radial-gradient(ellipse 28% 34% at 22% 84%, rgba(255,213,118,0.42) 0 55%, transparent 58%),
    radial-gradient(ellipse 26% 40% at 48% 88%, rgba(255,119,66,0.46) 0 55%, transparent 58%),
    radial-gradient(ellipse 22% 30% at 78% 84%, rgba(255,171,88,0.40) 0 55%, transparent 58%),
    radial-gradient(circle at 50% 45%, rgba(255,105,58,0.14), transparent 52%);
  filter: blur(0.45px) saturate(1.1);
}

.theme-hot-main,
.theme-hot-extra,
.member-number-hot-main,
.member-number-hot-extra {
  box-shadow: 0 0 0 1px rgba(255,155,90,0.22), 0 0 18px rgba(255,110,51,0.16) !important;
}

.theme-cold-main::before,
.theme-cold-extra::before,
.member-number-cold-main::before,
.member-number-cold-extra::before {
  inset: -1px;
  background:
    radial-gradient(circle at 50% 50%, rgba(111,196,255,0.10), rgba(111,196,255,0.02) 62%, transparent 72%),
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(180deg, rgba(132,214,255,0.16), rgba(42,84,183,0.20));
  border-color: rgba(157,223,255,0.42);
}

.theme-cold-main::after,
.theme-cold-extra::after,
.member-number-cold-main::after,
.member-number-cold-extra::after {
  inset: -2px;
  background:
    linear-gradient(135deg, transparent 22%, rgba(225,247,255,0.24) 23%, transparent 28%),
    linear-gradient(45deg, transparent 52%, rgba(222,245,255,0.26) 53%, transparent 58%),
    linear-gradient(90deg, transparent 43%, rgba(220,243,255,0.20) 44%, transparent 48%),
    linear-gradient(0deg, transparent 34%, rgba(227,247,255,0.16) 35%, transparent 40%),
    radial-gradient(circle at 72% 28%, rgba(230,249,255,0.32) 0 10%, transparent 12%);
  filter: blur(0.2px);
}

.theme-cold-main,
.theme-cold-extra,
.member-number-cold-main,
.member-number-cold-extra {
  box-shadow: 0 0 0 1px rgba(157,223,255,0.22), 0 0 18px rgba(111,196,255,0.14) !important;
}

.theme-unique-main::before,
.theme-unique-extra::before,
.member-number-unique-main::before,
.member-number-unique-extra::before {
  inset: -1px;
  background:
    radial-gradient(circle at 50% 50%, rgba(243,197,76,0.08), rgba(243,197,76,0.02) 60%, transparent 72%),
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(180deg, rgba(246,214,118,0.16), rgba(178,130,30,0.20));
  border-color: rgba(247,217,132,0.48);
}

.theme-unique-main::after,
.theme-unique-extra::after,
.member-number-unique-main::after,
.member-number-unique-extra::after {
  inset: -2px;
  background:
    radial-gradient(circle at 18% 78%, rgba(255,228,142,0.40) 0 9%, transparent 11%),
    radial-gradient(circle at 46% 32%, rgba(255,218,120,0.42) 0 8%, transparent 10%),
    radial-gradient(circle at 74% 68%, rgba(255,235,180,0.38) 0 9%, transparent 11%),
    radial-gradient(circle at 78% 30%, rgba(250,214,118,0.34) 0 6%, transparent 8%),
    linear-gradient(135deg, transparent 0 40%, rgba(255,223,136,0.16) 40% 46%, transparent 46% 100%);
  filter: saturate(1.08);
}

.theme-unique-main,
.theme-unique-extra,
.member-number-unique-main,
.member-number-unique-extra {
  box-shadow: 0 0 0 1px rgba(247,217,132,0.22), 0 0 18px rgba(243,197,76,0.12) !important;
}

.theme-hot-main .ball-number,
.theme-hot-extra .ball-number,
.member-number-hot-main .ball-number,
.member-number-hot-extra .ball-number,
.theme-cold-main .ball-number,
.theme-cold-extra .ball-number,
.member-number-cold-main .ball-number,
.member-number-cold-extra .ball-number,
.theme-unique-main .ball-number,
.theme-unique-extra .ball-number,
.member-number-unique-main .ball-number,
.member-number-unique-extra .ball-number {
  color: #ffffff;
}

.member-hero {
  position: relative;
}

.member-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(171,110,255,0.14), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.member-hero .glass-panel {
  background: linear-gradient(180deg, rgba(81,49,134,0.50), rgba(48,32,88,0.42));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 48px rgba(8, 6, 30, 0.24), inset 0 1px 0 rgba(255,255,255,0.05);
}

.member-filter-bar {
  position: sticky;
  top: 84px;
  z-index: 12;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(37,24,74,0.82), rgba(33,21,69,0.76));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 44px rgba(9, 6, 30, 0.22), inset 0 1px 0 rgba(255,255,255,0.04);
}

#member-lottery-grid {
  gap: 1.4rem;
}

.member-lottery-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(145,94,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(70,45,123,0.94), rgba(52,38,101,0.94));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 22px 56px rgba(6, 5, 22, 0.30), inset 0 1px 0 rgba(255,255,255,0.05);
}

.member-lottery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 18%);
  pointer-events: none;
}

.member-lines {
  display: grid;
  gap: 1rem;
}

.member-line {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border-width: 1px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}

.member-main-balls,
.premium-set-wrap .flex.flex-wrap.gap-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.member-extra-group,
.premium-extra-group {
  margin-top: 0.85rem;
  align-items: center;
}

.member-extra-group > span,
.premium-extra-group > span {
  min-width: 5.2rem !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.number-ball.premium-ball,
.member-number-ball {
  overflow: visible !important;
  width: 2.24rem !important;
  height: 2.24rem !important;
  transform-origin: center;
}

.number-ball.premium-ball::before,
.member-number-ball::before {
  inset: 0 !important;
  border-radius: 999px !important;
}

.number-ball.premium-ball::after,
.member-number-ball::after {
  inset: auto !important;
  border-radius: 999px !important;
}

.ball-number {
  position: relative;
  z-index: 5;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  color: #ffffff !important;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.52),
    0 0 3px rgba(0,0,0,0.25),
    0 0 1px rgba(255,255,255,0.16) !important;
}

.theme-hot-main::before,
.theme-hot-extra::before,
.member-number-hot-main::before,
.member-number-hot-extra::before {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.24), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(255,132,67,0.22), rgba(255,91,45,0.11) 54%, transparent 72%),
    linear-gradient(180deg, rgba(255,171,98,0.22), rgba(189,44,16,0.24)) !important;
  border: 1px solid rgba(255,158,97,0.55) !important;
  box-shadow: 0 0 0 1px rgba(255,149,90,0.16), 0 0 18px rgba(255,104,51,0.18) !important;
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  content: "";
  left: -8%;
  bottom: -22%;
  width: 116%;
  height: 68%;
  background:
    radial-gradient(ellipse 22% 70% at 18% 84%, rgba(255,203,122,0.70) 0 35%, transparent 38%),
    radial-gradient(ellipse 22% 78% at 48% 90%, rgba(255,116,62,0.74) 0 38%, transparent 41%),
    radial-gradient(ellipse 18% 64% at 78% 84%, rgba(255,168,90,0.68) 0 34%, transparent 38%),
    radial-gradient(circle at 50% 60%, rgba(255,102,51,0.20), transparent 58%);
  filter: blur(0.65px) saturate(1.15);
  opacity: 0.95;
  z-index: 2;
  animation: lwFlame 1.5s ease-in-out infinite alternate;
}

.theme-cold-main::before,
.theme-cold-extra::before,
.member-number-cold-main::before,
.member-number-cold-extra::before {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.26), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(132,213,255,0.17), rgba(73,140,255,0.10) 56%, transparent 72%),
    linear-gradient(180deg, rgba(149,227,255,0.17), rgba(40,88,196,0.22)) !important;
  border: 1px solid rgba(171,231,255,0.52) !important;
  box-shadow: 0 0 0 1px rgba(165,228,255,0.15), 0 0 18px rgba(108,198,255,0.15) !important;
}

.theme-cold-main::after,
.theme-cold-extra::after,
.member-number-cold-main::after,
.member-number-cold-extra::after {
  content: "";
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  background:
    linear-gradient(135deg, transparent 18%, rgba(232,249,255,0.30) 19%, transparent 23%),
    linear-gradient(45deg, transparent 46%, rgba(226,247,255,0.26) 47%, transparent 51%),
    linear-gradient(90deg, transparent 42%, rgba(229,248,255,0.18) 43%, transparent 47%),
    radial-gradient(circle at 22% 24%, rgba(235,250,255,0.34) 0 8%, transparent 10%),
    radial-gradient(circle at 74% 30%, rgba(233,250,255,0.28) 0 9%, transparent 11%),
    radial-gradient(circle at 58% 72%, rgba(226,247,255,0.24) 0 10%, transparent 12%);
  opacity: 0.96;
  z-index: 2;
  animation: lwFrost 2.8s linear infinite;
}

.theme-unique-main::before,
.theme-unique-extra::before,
.member-number-unique-main::before,
.member-number-unique-extra::before {
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.22), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255,212,106,0.16), rgba(216,171,56,0.08) 56%, transparent 72%),
    linear-gradient(180deg, rgba(255,223,136,0.18), rgba(166,122,28,0.22)) !important;
  border: 1px solid rgba(249,220,140,0.55) !important;
  box-shadow: 0 0 0 1px rgba(249,220,140,0.15), 0 0 18px rgba(240,198,74,0.12) !important;
}

.theme-unique-main::after,
.theme-unique-extra::after,
.member-number-unique-main::after,
.member-number-unique-extra::after {
  content: "";
  left: -16%;
  top: -14%;
  width: 132%;
  height: 132%;
  background:
    radial-gradient(circle at 18% 82%, rgba(255,231,149,0.70) 0 4%, transparent 5%),
    radial-gradient(circle at 28% 18%, rgba(255,217,121,0.72) 0 3.5%, transparent 4.5%),
    radial-gradient(circle at 56% 34%, rgba(255,227,145,0.80) 0 4%, transparent 5%),
    radial-gradient(circle at 72% 22%, rgba(255,208,104,0.72) 0 3%, transparent 4%),
    radial-gradient(circle at 84% 70%, rgba(255,235,178,0.75) 0 4%, transparent 5%),
    radial-gradient(circle at 42% 78%, rgba(255,218,128,0.72) 0 3.5%, transparent 4.5%);
  opacity: 0.95;
  z-index: 2;
  animation: lwGold 2.2s linear infinite;
}

@keyframes lwFlame {
  0% {
    transform: translateY(2px) scaleY(0.96) scaleX(0.98);
    opacity: 0.88;
    filter: blur(0.7px) saturate(1.1);
  }
  50% {
    transform: translateY(-2px) scaleY(1.12) scaleX(1.02);
    opacity: 1;
    filter: blur(0.45px) saturate(1.22);
  }
  100% {
    transform: translateY(-1px) scaleY(1.04) scaleX(0.99);
    opacity: 0.94;
    filter: blur(0.55px) saturate(1.15);
  }
}

@keyframes lwFrost {
  0% {
    transform: translateX(-1px) translateY(0) rotate(0deg);
    opacity: 0.78;
  }
  50% {
    transform: translateX(1px) translateY(-1px) rotate(0.5deg);
    opacity: 1;
  }
  100% {
    transform: translateX(-1px) translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
}

@keyframes lwGold {
  0% {
    transform: translateY(-1px) rotate(0deg);
    opacity: 0.78;
  }
  50% {
    transform: translateY(1px) rotate(2deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-1px) rotate(0deg);
    opacity: 0.82;
  }
}

@media (max-width: 767px) {
  .member-filter-bar {
    top: 72px;
  }

  .member-lottery-card {
    border-radius: 1.7rem;
    padding: 1rem;
  }

  .member-main-balls,
  .premium-set-wrap .flex.flex-wrap.gap-2 {
    gap: 0.5rem;
  }

  .number-ball.premium-ball,
  .member-number-ball {
    width: 2.06rem !important;
    height: 2.06rem !important;
  }

  .ball-number {
    font-size: 0.76rem !important;
  }

  .member-extra-group > span,
  .premium-extra-group > span {
    min-width: 4.8rem !important;
  }
}

.member-page header {
  background: rgba(17, 10, 43, 0.62) !important;
  border-bottom-color: rgba(255,255,255,0.05) !important;
  backdrop-filter: blur(22px) saturate(1.2);
}

.member-page header > div {
  margin-top: 0.6rem;
  margin-bottom: 0.45rem;
  height: 64px !important;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(54,36,104,0.74), rgba(34,22,73,0.70));
  box-shadow: 0 16px 40px rgba(9,7,27,0.22), inset 0 1px 0 rgba(255,255,255,0.05);
}

.member-page header nav a,
.member-page .header-login-link,
.member-page .header-actions a:last-child {
  border-radius: 999px;
}

.member-page header nav a {
  padding: 0.5rem 0.82rem;
}

.member-page header nav a:hover {
  background: rgba(255,255,255,0.06);
}

.member-page .header-login-link {
  border-color: rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.05) !important;
}

.member-page .header-actions a:last-child {
  box-shadow: 0 10px 24px rgba(80,47,180,0.25);
}

.member-hero {
  padding-top: 1.25rem !important;
}

.member-hero > .grid:first-child {
  gap: 1rem;
  align-items: stretch;
}

.member-hero > .grid:first-child > div:first-child,
.member-hero > .grid:first-child > .glass-panel {
  border-radius: 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(73,49,128,0.32), rgba(48,32,88,0.24));
  box-shadow: 0 18px 44px rgba(8,6,30,0.22), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 1.35rem;
}

.member-hero > .grid:first-child > div:first-child {
  position: relative;
  overflow: hidden;
}

.member-hero > .grid:first-child > div:first-child::after {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(133,90,255,0.18), transparent 70%);
  filter: blur(14px);
}

.member-filter-bar {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) minmax(220px, 280px);
  align-items: center;
  gap: 0.8rem;
  border-radius: 1.4rem;
  padding: 0.85rem 0.9rem;
}

.member-filter-bar > div {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: max-content;
  padding: 0.8rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 800;
}

.member-filter-bar > div span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 1.8rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18,155,244,0.20), rgba(110,53,242,0.24));
  color: #fff;
}

#member-lottery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.35rem;
}

.member-lottery-card {
  border-radius: 2rem !important;
  padding: 1.15rem !important;
}

.member-card-head {
  align-items: center !important;
  margin-bottom: 1rem;
}

.member-lottery-brand {
  width: 4.3rem !important;
  height: 4.3rem !important;
  border-radius: 1.35rem !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08)) !important;
}

.member-card-head h3 {
  font-size: 1.8rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.member-play-link,
.line-copy-btn,
.member-refresh-btn,
.preview-refresh-btn {
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 6px 16px rgba(15,10,36,0.14);
}

.member-refresh-btn {
  min-height: 3.6rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.member-line,
.signal-line-card {
  overflow: visible;
  border-radius: 1.55rem !important;
}

.signal-line-card,
.member-line {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.number-ball.premium-ball,
.member-number-ball {
  width: 2.28rem !important;
  height: 2.28rem !important;
  isolation: isolate;
}

.number-ball.premium-ball::before,
.member-number-ball::before {
  content: "";
  position: absolute;
  inset: 0 !important;
  border-radius: 999px !important;
  z-index: 1;
}

.number-ball.premium-ball::after,
.member-number-ball::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.ball-number {
  z-index: 4 !important;
  font-size: 0.84rem !important;
}

.theme-hot-main::before,
.theme-hot-extra::before,
.member-number-hot-main::before,
.member-number-hot-extra::before {
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.24), transparent 24%),
    radial-gradient(circle at 50% 44%, rgba(255,145,81,0.35), rgba(255,94,49,0.16) 58%, transparent 74%),
    linear-gradient(180deg, rgba(255,190,116,0.26), rgba(209,63,23,0.28)) !important;
  border: 1px solid rgba(255,167,102,0.62) !important;
  box-shadow: 0 0 0 1px rgba(255,155,88,0.18), 0 0 20px rgba(255,112,56,0.20) !important;
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  left: -22%;
  bottom: -40%;
  width: 144%;
  height: 118%;
  border-radius: 52% 48% 56% 44% / 66% 66% 34% 34%;
  background:
    radial-gradient(ellipse 15% 42% at 18% 76%, rgba(255,231,145,0.96) 0 38%, transparent 42%),
    radial-gradient(ellipse 16% 56% at 31% 54%, rgba(255,177,91,0.88) 0 40%, transparent 44%),
    radial-gradient(ellipse 18% 66% at 50% 44%, rgba(255,115,54,0.94) 0 42%, transparent 46%),
    radial-gradient(ellipse 16% 52% at 68% 56%, rgba(255,149,72,0.90) 0 40%, transparent 44%),
    radial-gradient(ellipse 14% 42% at 82% 76%, rgba(255,206,122,0.88) 0 38%, transparent 42%),
    radial-gradient(circle at 50% 62%, rgba(255,112,54,0.22), transparent 60%);
  filter: blur(0.9px) saturate(1.18);
  opacity: 0.96;
  animation: lwRealFlame 1.6s ease-in-out infinite alternate;
}

.theme-cold-main::before,
.theme-cold-extra::before,
.member-number-cold-main::before,
.member-number-cold-extra::before {
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.28), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(157,228,255,0.22), rgba(93,149,255,0.12) 60%, transparent 76%),
    linear-gradient(180deg, rgba(169,232,255,0.20), rgba(56,99,204,0.24)) !important;
  border: 1px solid rgba(186,236,255,0.62) !important;
  box-shadow: 0 0 0 1px rgba(167,231,255,0.16), 0 0 20px rgba(111,197,255,0.18) !important;
}

.theme-cold-main::after,
.theme-cold-extra::after,
.member-number-cold-main::after,
.member-number-cold-extra::after {
  left: -18%;
  top: -18%;
  width: 136%;
  height: 136%;
  background:
    linear-gradient(135deg, transparent 12%, rgba(241,251,255,0.34) 13%, transparent 17%),
    linear-gradient(45deg, transparent 33%, rgba(234,249,255,0.28) 34%, transparent 38%),
    linear-gradient(90deg, transparent 44%, rgba(238,250,255,0.20) 45%, transparent 49%),
    linear-gradient(0deg, transparent 58%, rgba(239,251,255,0.20) 59%, transparent 63%),
    radial-gradient(circle at 18% 20%, rgba(242,252,255,0.32) 0 8%, transparent 10%),
    radial-gradient(circle at 72% 24%, rgba(238,251,255,0.30) 0 9%, transparent 11%),
    radial-gradient(circle at 56% 78%, rgba(236,250,255,0.26) 0 10%, transparent 12%);
  filter: blur(0.3px);
  opacity: 0.98;
  animation: lwRealFrost 3s linear infinite;
}

.theme-unique-main::before,
.theme-unique-extra::before,
.member-number-unique-main::before,
.member-number-unique-extra::before {
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.24), transparent 24%),
    radial-gradient(circle at 50% 48%, rgba(250,220,116,0.20), rgba(214,171,54,0.11) 60%, transparent 76%),
    linear-gradient(180deg, rgba(250,223,136,0.20), rgba(178,130,33,0.24)) !important;
  border: 1px solid rgba(249,223,141,0.62) !important;
  box-shadow: 0 0 0 1px rgba(249,223,141,0.16), 0 0 20px rgba(241,196,74,0.16) !important;
}

.theme-unique-main::after,
.theme-unique-extra::after,
.member-number-unique-main::after,
.member-number-unique-extra::after {
  left: -26%;
  top: -26%;
  width: 152%;
  height: 152%;
  background:
    radial-gradient(circle at 12% 78%, rgba(255,236,174,0.98) 0 3%, transparent 4%),
    radial-gradient(circle at 22% 18%, rgba(255,217,113,0.98) 0 2.6%, transparent 3.7%),
    radial-gradient(circle at 34% 70%, rgba(255,236,171,0.98) 0 2.7%, transparent 3.8%),
    radial-gradient(circle at 48% 30%, rgba(255,213,104,0.98) 0 3%, transparent 4.1%),
    radial-gradient(circle at 62% 16%, rgba(255,237,177,0.98) 0 2.8%, transparent 3.9%),
    radial-gradient(circle at 76% 34%, rgba(255,214,108,0.98) 0 2.6%, transparent 3.7%),
    radial-gradient(circle at 84% 72%, rgba(255,240,189,0.98) 0 3%, transparent 4.1%),
    radial-gradient(circle at 58% 82%, rgba(255,220,126,0.98) 0 2.7%, transparent 3.8%),
    radial-gradient(circle at 40% 52%, rgba(255,228,142,0.96) 0 2.4%, transparent 3.4%);
  filter: drop-shadow(0 0 2px rgba(255,213,104,0.28));
  opacity: 0.98;
  animation: lwRealGold 2.1s linear infinite;
}

@keyframes lwRealFlame {
  0% { transform: translateY(5%) scaleY(0.94) scaleX(0.97); opacity: 0.90; }
  50% { transform: translateY(-4%) scaleY(1.12) scaleX(1.03); opacity: 1; }
  100% { transform: translateY(-1%) scaleY(1.04) scaleX(1.00); opacity: 0.94; }
}

@keyframes lwRealFrost {
  0% { transform: rotate(0deg) translateX(0); opacity: 0.84; }
  50% { transform: rotate(0.6deg) translateX(1px); opacity: 1; }
  100% { transform: rotate(0deg) translateX(-1px); opacity: 0.86; }
}

@keyframes lwRealGold {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.82; }
  50% { transform: translateY(3%) rotate(2deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.86; }
}

@media (max-width: 767px) {
  .member-page header {
    background: rgba(17, 10, 43, 0.74) !important;
  }

  .member-page header > div {
    margin-top: 0.45rem;
    height: 58px !important;
    border-radius: 1rem;
  }

  .member-page header .header-actions a:last-child {
    display: none;
  }

  .member-hero {
    padding-top: 0.55rem !important;
  }

  .member-hero > .grid:first-child {
    grid-template-columns: 1fr !important;
  }

  .member-hero > .grid:first-child > div:first-child,
  .member-hero > .grid:first-child > .glass-panel {
    border-radius: 1.35rem;
    padding: 1rem;
  }

  .member-filter-bar {
    position: sticky;
    top: 66px;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    border-radius: 1.15rem;
    padding: 0.75rem;
  }

  .member-filter-bar > div,
  .member-filter-bar input,
  .member-filter-bar select {
    width: 100%;
  }

  #member-lottery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .member-lottery-card {
    padding: 0.95rem !important;
    border-radius: 1.55rem !important;
  }

  .member-card-head h3 {
    font-size: 1.45rem;
  }

  .member-lottery-brand {
    width: 3.85rem !important;
    height: 3.85rem !important;
  }

  .number-ball.premium-ball,
  .member-number-ball {
    width: 2.18rem !important;
    height: 2.18rem !important;
  }

  .member-play-link,
  .line-copy-btn,
  .member-refresh-btn,
  .preview-refresh-btn {
    min-height: 2.75rem;
  }
}

.number-ball.premium-ball,
.member-number-ball {
  overflow: visible !important;
}

.number-ball.premium-ball::before,
.member-number-ball::before {
  inset: 0 !important;
  border-radius: 999px !important;
  z-index: 2 !important;
}

.number-ball.premium-ball::after,
.member-number-ball::after {
  content: "";
  position: absolute;
  z-index: 1 !important;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.98;
}

.theme-hot-main::before,
.theme-hot-extra::before,
.member-number-hot-main::before,
.member-number-hot-extra::before {
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.28), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(255,161,87,0.30), rgba(255,95,48,0.14) 60%, transparent 76%),
    linear-gradient(180deg, rgba(255,188,116,0.22), rgba(199,59,21,0.26)) !important;
  border: 1px solid rgba(255,164,97,0.60) !important;
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  left: -46%;
  top: -38%;
  width: 192%;
  height: 205%;
  background-image: url('../images/assets/effects/flame-overlay.svg');
  filter: drop-shadow(0 0 6px rgba(255,117,49,0.26));
  animation: v17Flame 1.35s ease-in-out infinite alternate;
}

.theme-cold-main::before,
.theme-cold-extra::before,
.member-number-cold-main::before,
.member-number-cold-extra::before {
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.30), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(167,233,255,0.22), rgba(86,148,255,0.11) 60%, transparent 76%),
    linear-gradient(180deg, rgba(170,233,255,0.18), rgba(52,99,203,0.24)) !important;
  border: 1px solid rgba(187,238,255,0.58) !important;
}

.theme-cold-main::after,
.theme-cold-extra::after,
.member-number-cold-main::after,
.member-number-cold-extra::after {
  left: -34%;
  top: -34%;
  width: 168%;
  height: 168%;
  background-image: url('../images/assets/effects/frost-overlay.svg');
  filter: drop-shadow(0 0 5px rgba(167,233,255,0.22));
  animation: v17Frost 2.8s ease-in-out infinite;
}

.theme-unique-main::before,
.theme-unique-extra::before,
.member-number-unique-main::before,
.member-number-unique-extra::before {
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.24), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(250,221,127,0.18), rgba(212,167,51,0.10) 60%, transparent 76%),
    linear-gradient(180deg, rgba(251,224,139,0.18), rgba(176,130,34,0.24)) !important;
  border: 1px solid rgba(249,224,144,0.58) !important;
}

.theme-unique-main::after,
.theme-unique-extra::after,
.member-number-unique-main::after,
.member-number-unique-extra::after {
  left: -38%;
  top: -38%;
  width: 176%;
  height: 176%;
  background-image: url('../images/assets/effects/gold-overlay.svg');
  filter: drop-shadow(0 0 4px rgba(248,206,93,0.20));
  animation: v17Gold 2s ease-in-out infinite;
}

@keyframes v17Flame {
  0% { transform: translateY(4%) scale(0.96); opacity: 0.88; }
  50% { transform: translateY(-2%) scale(1.03); opacity: 1; }
  100% { transform: translateY(-5%) scale(1.08); opacity: 0.95; }
}

@keyframes v17Frost {
  0% { transform: rotate(0deg) scale(0.98); opacity: 0.82; }
  50% { transform: rotate(1.2deg) scale(1.02); opacity: 1; }
  100% { transform: rotate(0deg) scale(0.99); opacity: 0.86; }
}

@keyframes v17Gold {
  0% { transform: translateY(0) scale(0.99); opacity: 0.78; }
  35% { transform: translateY(-2%) scale(1.02); opacity: 1; }
  100% { transform: translateY(1%) scale(1.01); opacity: 0.82; }
}

.signal-line-card,
.member-line {
  overflow: visible !important;
}

.signal-line-card .line-head-row,
.member-line .member-line-head {
  margin-bottom: 0.95rem !important;
}

.member-page header {
  padding-top: env(safe-area-inset-top, 0px);
}

.member-page header > div {
  height: 62px !important;
  border-radius: 1.35rem !important;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  background: linear-gradient(180deg, rgba(57,38,110,0.82), rgba(33,22,73,0.78)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow:
    0 14px 30px rgba(8,7,26,0.22),
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(255,255,255,0.03) !important;
}

.member-page header nav a {
  font-size: 0.9rem;
  font-weight: 700;
}

.member-page .header-login-link,
.member-page .header-actions a:last-child {
  min-height: 2.55rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.member-filter-bar {
  border-radius: 1.3rem !important;
  background: linear-gradient(180deg, rgba(46,30,88,0.88), rgba(34,22,68,0.84)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

.member-filter-bar input,
.member-filter-bar select {
  min-height: 3.1rem !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: linear-gradient(180deg, rgba(31,20,64,0.98), rgba(24,17,54,0.98)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 1px 1px rgba(0,0,0,0.08) !important;
}

@media (max-width: 390px) {
  main.relative.z-10.pt-\[76px\] {
    padding-top: 68px !important;
  }

  .member-page header > div {
    height: 56px !important;
    border-radius: 1rem !important;
    margin-top: 0.35rem !important;
    margin-bottom: 0.3rem !important;
  }

  .member-page header .mx-auto {
    padding-left: 0.55rem !important;
    padding-right: 0.55rem !important;
  }

  .member-hero {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    padding-bottom: 0.8rem !important;
  }

  .member-hero > .grid:first-child > div:first-child,
  .member-hero > .grid:first-child > .glass-panel {
    padding: 0.85rem !important;
    border-radius: 1.2rem !important;
  }

  .member-filter-bar {
    top: 62px !important;
    padding: 0.65rem !important;
    gap: 0.58rem !important;
    border-radius: 1rem !important;
  }

  .member-filter-bar > div {
    padding: 0.68rem 0.8rem !important;
    border-radius: 0.88rem !important;
  }

  .member-filter-bar input,
  .member-filter-bar select {
    min-height: 2.9rem !important;
    font-size: 0.95rem !important;
  }

  #member-lottery-grid {
    gap: 0.85rem !important;
  }

  .member-lottery-card {
    padding: 0.82rem !important;
    border-radius: 1.35rem !important;
  }

  .member-card-head {
    gap: 0.68rem !important;
    margin-bottom: 0.78rem !important;
  }

  .member-lottery-brand {
    width: 3.45rem !important;
    height: 3.45rem !important;
    border-radius: 1rem !important;
  }

  .member-card-head h3 {
    font-size: 1.28rem !important;
  }

  .member-line,
  .signal-line-card {
    padding: 0.8rem !important;
    border-radius: 1.2rem !important;
  }

  .member-main-balls,
  .premium-set-wrap .flex.flex-wrap.gap-2 {
    gap: 0.45rem !important;
  }

  .number-ball.premium-ball,
  .member-number-ball {
    width: 2rem !important;
    height: 2rem !important;
  }

  .ball-number {
    font-size: 0.76rem !important;
  }

  .member-extra-group,
  .premium-extra-group {
    gap: 0.45rem !important;
    margin-top: 0.72rem !important;
  }

  .member-extra-group > span,
  .premium-extra-group > span {
    min-width: 4.45rem !important;
    font-size: 0.69rem !important;
  }

  .line-copy-btn,
  .member-play-link,
  .member-refresh-btn,
  .preview-refresh-btn {
    min-height: 2.55rem !important;
    padding: 0.45rem 0.68rem !important;
    font-size: 0.64rem !important;
  }
}

header.fixed.top-0.left-0.right-0.z-50 {
  background: rgba(17, 10, 43, 0.62) !important;
  border-bottom-color: rgba(255,255,255,0.05) !important;
  backdrop-filter: blur(22px) saturate(1.15);
}

header.fixed.top-0.left-0.right-0.z-50 > .mx-auto {
  margin-top: 0.6rem;
  margin-bottom: 0.45rem;
  height: 64px !important;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(54,36,104,0.74), rgba(34,22,73,0.70));
  box-shadow: 0 16px 40px rgba(9,7,27,0.22), inset 0 1px 0 rgba(255,255,255,0.05);
}

header.fixed.top-0.left-0.right-0.z-50 nav a,
header.fixed.top-0.left-0.right-0.z-50 .header-login-link,
header.fixed.top-0.left-0.right-0.z-50 .header-actions a:last-child {
  border-radius: 999px;
}

header.fixed.top-0.left-0.right-0.z-50 nav a {
  padding: 0.5rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 700;
}

header.fixed.top-0.left-0.right-0.z-50 nav a:hover {
  background: rgba(255,255,255,0.06);
}

header.fixed.top-0.left-0.right-0.z-50 .header-login-link {
  border-color: rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.05) !important;
}

header.fixed.top-0.left-0.right-0.z-50 .header-actions a:last-child {
  box-shadow: 0 10px 24px rgba(80,47,180,0.25);
}

#public-powerball-preview .signal-line-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)) !important;
  border-radius: 1.55rem !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 22px rgba(10, 8, 28, 0.12);
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  left: -24% !important;
  top: -18% !important;
  width: 148% !important;
  height: 156% !important;
  opacity: 0.34 !important;
  filter: drop-shadow(0 0 3px rgba(255,117,49,0.12)) !important;
  animation: v18Flame 2s ease-in-out infinite alternate !important;
}

.theme-cold-main::after,
.theme-cold-extra::after,
.member-number-cold-main::after,
.member-number-cold-extra::after {
  left: -18% !important;
  top: -18% !important;
  width: 136% !important;
  height: 136% !important;
  opacity: 0.34 !important;
  filter: drop-shadow(0 0 2px rgba(167,233,255,0.12)) !important;
  animation: v18Frost 4s ease-in-out infinite !important;
}

.theme-unique-main::after,
.theme-unique-extra::after,
.member-number-unique-main::after,
.member-number-unique-extra::after {
  left: -18% !important;
  top: -18% !important;
  width: 138% !important;
  height: 138% !important;
  opacity: 0.36 !important;
  filter: drop-shadow(0 0 2px rgba(248,206,93,0.10)) !important;
  animation: v18Gold 3s ease-in-out infinite !important;
}

.theme-hot-main::before,
.theme-hot-extra::before,
.member-number-hot-main::before,
.member-number-hot-extra::before,
.theme-cold-main::before,
.theme-cold-extra::before,
.member-number-cold-main::before,
.member-number-cold-extra::before,
.theme-unique-main::before,
.theme-unique-extra::before,
.member-number-unique-main::before,
.member-number-unique-extra::before {
  box-shadow: none !important;
}

@keyframes v18Flame {
  0% { transform: translateY(2%) scale(0.98); opacity: 0.28; }
  50% { transform: translateY(-1%) scale(1.01); opacity: 0.38; }
  100% { transform: translateY(-3%) scale(1.03); opacity: 0.32; }
}

@keyframes v18Frost {
  0% { transform: rotate(0deg) scale(0.985); opacity: 0.28; }
  50% { transform: rotate(0.7deg) scale(1.005); opacity: 0.38; }
  100% { transform: rotate(0deg) scale(0.99); opacity: 0.31; }
}

@keyframes v18Gold {
  0% { transform: translateY(0) scale(0.99); opacity: 0.30; }
  40% { transform: translateY(-1%) scale(1.02); opacity: 0.40; }
  100% { transform: translateY(1%) scale(1.00); opacity: 0.32; }
}

@media (max-width: 767px) {
  header.fixed.top-0.left-0.right-0.z-50 > .mx-auto {
    margin-top: 0.45rem !important;
    margin-bottom: 0.3rem !important;
    height: 58px !important;
    border-radius: 1rem !important;
  }
}

@media (max-width: 390px) {
  header.fixed.top-0.left-0.right-0.z-50 > .mx-auto {
    height: 56px !important;
    border-radius: 1rem !important;
    margin-top: 0.35rem !important;
    margin-bottom: 0.3rem !important;
  }
}

.number-ball.premium-ball,
.member-number-ball {
  width: 2.18rem !important;
  height: 2.18rem !important;
}

.number-ball.premium-ball::before,
.member-number-ball::before {
  content: "";
  position: absolute;
  inset: 0 !important;
  border-radius: 999px !important;
  z-index: 2 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -6px 12px rgba(0,0,0,0.12) !important;
}

.number-ball.premium-ball::after,
.member-number-ball::after {
  content: "";
  position: absolute;
  z-index: 1 !important;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ball-number {
  z-index: 4 !important;
  font-size: 0.82rem !important;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.38), 0 0 1px rgba(0,0,0,0.26) !important;
}

.theme-hot-main::before,
.theme-hot-extra::before,
.member-number-hot-main::before,
.member-number-hot-extra::before {
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.28), transparent 22%),
    radial-gradient(circle at 50% 42%, rgba(255,166,98,0.26), rgba(255,90,42,0.12) 60%, transparent 76%),
    linear-gradient(180deg, rgba(196,73,41,0.94), rgba(133,38,24,0.96)) !important;
  border: 1px solid rgba(235,142,90,0.44) !important;
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  left: -16% !important;
  top: 18% !important;
  width: 132% !important;
  height: 108% !important;
  background-image: url('../images/assets/effects/flame-soft.svg');
  opacity: 0.42 !important;
  filter: drop-shadow(0 0 3px rgba(255,117,49,0.14)) !important;
  animation: v19Flame 2.2s ease-in-out infinite alternate !important;
}

.theme-cold-main::before,
.theme-cold-extra::before,
.member-number-cold-main::before,
.member-number-cold-extra::before {
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.28), transparent 22%),
    radial-gradient(circle at 50% 42%, rgba(163,229,255,0.20), rgba(72,143,246,0.10) 60%, transparent 76%),
    linear-gradient(180deg, rgba(75,116,191,0.96), rgba(43,72,141,0.98)) !important;
  border: 1px solid rgba(143,205,255,0.42) !important;
}

.theme-cold-main::after,
.theme-cold-extra::after,
.member-number-cold-main::after,
.member-number-cold-extra::after {
  left: -11% !important;
  top: -10% !important;
  width: 122% !important;
  height: 122% !important;
  background-image: url('../images/assets/effects/frost-soft.svg');
  opacity: 0.48 !important;
  filter: drop-shadow(0 0 2px rgba(167,233,255,0.10)) !important;
  animation: v19Frost 5s ease-in-out infinite !important;
}

.theme-unique-main::before,
.theme-unique-extra::before,
.member-number-unique-main::before,
.member-number-unique-extra::before {
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.26), transparent 22%),
    radial-gradient(circle at 50% 42%, rgba(255,221,132,0.16), rgba(223,178,58,0.10) 60%, transparent 76%),
    linear-gradient(180deg, rgba(164,126,80,0.96), rgba(128,93,56,0.98)) !important;
  border: 1px solid rgba(223,186,114,0.40) !important;
}

.theme-unique-main::after,
.theme-unique-extra::after,
.member-number-unique-main::after,
.member-number-unique-extra::after {
  left: -12% !important;
  top: -12% !important;
  width: 124% !important;
  height: 124% !important;
  background-image: url('../images/assets/effects/gold-soft.svg');
  opacity: 0.44 !important;
  filter: drop-shadow(0 0 2px rgba(248,206,93,0.10)) !important;
  animation: v19Gold 4.2s ease-in-out infinite !important;
}

@keyframes v19Flame {
  0% { transform: translateY(1%) scale(0.99); opacity: 0.36; }
  50% { transform: translateY(-1.5%) scale(1.02); opacity: 0.46; }
  100% { transform: translateY(-3%) scale(1.03); opacity: 0.38; }
}

@keyframes v19Frost {
  0% { transform: rotate(0deg) scale(0.99); opacity: 0.42; }
  50% { transform: rotate(0.5deg) scale(1.01); opacity: 0.5; }
  100% { transform: rotate(0deg) scale(1); opacity: 0.44; }
}

@keyframes v19Gold {
  0% { transform: scale(0.99); opacity: 0.38; }
  50% { transform: scale(1.02); opacity: 0.48; }
  100% { transform: scale(1.00); opacity: 0.40; }
}

footer nav[aria-label="Footer navigation"] {
  justify-content: center;
}

@media (max-width: 767px) {
  .number-ball.premium-ball,
  .member-number-ball {
    width: 2.02rem !important;
    height: 2.02rem !important;
  }

  .ball-number {
    font-size: 0.76rem !important;
  }
}

.theme-hot-main::after,
.theme-hot-extra::after,
.member-number-hot-main::after,
.member-number-hot-extra::after {
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: url('../images/assets/effects/flame-soft.svg') !important;
  background-size: 88% 88% !important;
  background-position: center 58% !important;
  opacity: 0.26 !important;
  filter: none !important;
  animation: v20FlameCentered 2.6s ease-in-out infinite alternate !important;
}

@keyframes v20FlameCentered {
  0% { transform: translateY(1%) scale(0.985); opacity: 0.22; }
  50% { transform: translateY(-1%) scale(1.01); opacity: 0.30; }
  100% { transform: translateY(-2%) scale(1.02); opacity: 0.24; }
}

@media (max-width: 767px) {
  .member-filter-bar {
    position: relative !important;
    top: auto !important;
  }

  .member-filter-bar > div:first-child {
    transition: opacity 180ms ease, transform 180ms ease, max-height 180ms ease, padding 180ms ease, margin 180ms ease;
    max-height: 3.2rem;
    overflow: hidden;
  }

  .member-filter-bar.is-scrolled > div:first-child {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border-width: 0 !important;
  }
}

.hero-copy-stack {
  position: relative;
  z-index: 2;
}

.hero-headline {
  letter-spacing: -0.04em;
}

.hero-form-focus {
  position: relative;
  max-width: 34rem;
}

.hero-form-focus::before {
  content: "";
  position: absolute;
  inset: -0.6rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(18,155,244,0.24), transparent 42%),
    radial-gradient(circle at 82% 80%, rgba(212,18,247,0.24), transparent 44%),
    linear-gradient(135deg, rgba(18,155,244,0.14), rgba(110,53,242,0.20), rgba(212,18,247,0.16));
  filter: blur(14px);
  opacity: 0.95;
  z-index: 0;
  animation: heroLeadHalo 4.2s ease-in-out infinite;
}

.hero-form-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(89,49,176,0.44), rgba(76,35,157,0.34)),
    linear-gradient(140deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  box-shadow:
    0 26px 84px rgba(13, 6, 36, 0.60),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 42px rgba(110,53,242,0.18);
  animation: heroLeadFloat 3.8s ease-in-out infinite;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.14), transparent 22%, transparent 78%, rgba(255,255,255,0.08));
}

.hero-form-card:focus-within,
.hero-form-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 92px rgba(13, 6, 36, 0.68),
    0 0 0 1px rgba(255,255,255,0.07) inset,
    0 0 58px rgba(110,53,242,0.26);
  animation-play-state: paused;
}

.hero-form-label {
  display: inline-block;
  letter-spacing: -0.01em;
}

.hero-form-input {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-form-button {
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(110,53,242,0.30);
}

.hero-form-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.32) 48%, transparent 100%);
  transform: translateX(-180%) skewX(-18deg);
  animation: heroButtonSheen 3.4s ease-in-out infinite;
}

.hero-support-copy {
  max-width: 35rem;
  color: rgba(226,232,240,0.92);
}

@keyframes heroLeadFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes heroLeadHalo {
  0%, 100% { opacity: 0.88; transform: scale(0.985); }
  50% { opacity: 1; transform: scale(1.01); }
}

@keyframes heroButtonSheen {
  0%, 62% { transform: translateX(-180%) skewX(-18deg); }
  78% { transform: translateX(220%) skewX(-18deg); }
  100% { transform: translateX(220%) skewX(-18deg); }
}

@media (min-width: 640px) {
  .hero-form-card {
    padding: 1rem !important;
  }
}

@media (max-width: 767px) {
  .lw-hero {
    padding-top: 1rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-copy-stack {
    max-width: 100%;
  }

  .hero-headline {
    max-width: 9.6ch;
    margin-top: 0.95rem !important;
    font-size: clamp(2.5rem, 11.4vw, 3.7rem) !important;
    line-height: 0.96 !important;
  }

  .hero-form-focus {
    margin-top: 1.05rem !important;
    max-width: 100%;
  }

  .hero-form-focus::before {
    inset: -0.45rem;
    filter: blur(12px);
  }

  .hero-form-card {
    padding: 1rem !important;
    border-radius: 1.35rem !important;
    transform-origin: center center;
  }

  .hero-form-fields {
    gap: 0.8rem !important;
  }

  .hero-form-label {
    padding-left: 0.1rem !important;
    font-size: 0.9rem !important;
  }

  .hero-form-input,
  .hero-form-button {
    height: 3.35rem !important;
    border-radius: 0.95rem !important;
  }

  .hero-form-button {
    font-size: 1rem !important;
    font-weight: 800 !important;
  }

  .hero-support-copy {
    margin-top: 1rem !important;
    font-size: 1.02rem !important;
    line-height: 1.75 !important;
    max-width: 21rem;
  }

  .live-preview-module {
    margin-top: 0.35rem !important;
  }

  .powerball-preview-card {
    border-radius: 1.35rem !important;
    padding: 1.05rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-form-focus::before,
  .hero-form-card,
  .hero-form-button::after {
    animation: none !important;
  }
}

.lead-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  width: min(100%, 34rem);
  margin-left: auto;
  margin-right: auto;
  color: rgba(216, 209, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  text-shadow: 0 0 16px rgba(18, 155, 244, 0.42);
  pointer-events: none;
}

.lead-arrow span {
  display: inline-block;
  animation: leadArrowPulse 1.65s ease-in-out infinite;
}

.lead-arrow span:nth-child(2) {
  animation-delay: 0.12s;
}

.lead-arrow span:nth-child(3) {
  animation-delay: 0.24s;
}

.lead-arrow-down {
  margin-top: 0.75rem;
  margin-bottom: -0.15rem;
}

.lead-arrow-up {
  margin-top: 0.72rem;
  margin-bottom: -0.15rem;
}

@keyframes leadArrowPulse {
  0%, 100% { opacity: 0.38; transform: translateY(0); }
  50% { opacity: 0.95; transform: translateY(3px); }
}

.lead-arrow-up span {
  animation-name: leadArrowPulseUp;
}

@keyframes leadArrowPulseUp {
  0%, 100% { opacity: 0.34; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(-3px); }
}

.hero-form-card .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 768px) {
  .lead-arrow {
    justify-content: flex-start;
    margin-left: 0;
    opacity: 0.62;
  }

  .lead-arrow-down {
    margin-top: 0.9rem;
    margin-bottom: -0.25rem;
  }

  .lead-arrow-up {
    margin-top: 0.85rem;
    margin-bottom: -0.1rem;
  }
}

@media (max-width: 767px) {
  main.relative.z-10 {
    padding-top: 76px !important;
  }

  .lw-hero {
    min-height: auto !important;
    padding-top: 1.05rem !important;
    padding-bottom: 1.55rem !important;
  }

  .lw-hero > .mx-auto.grid {
    gap: 0.92rem !important;
  }

  .hero-kicker {
    padding: 0.52rem 0.72rem !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
  }

  .hero-headline {
    max-width: 9.8ch !important;
    margin-top: 0.88rem !important;
    font-size: clamp(2.55rem, 11vw, 3.45rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.052em !important;
  }

  .lead-arrow {
    font-size: 0.98rem;
    gap: 0.36rem;
  }

  .lead-arrow-down {
    margin-top: 0.5rem;
    margin-bottom: -0.25rem;
  }

  .lead-arrow-up {
    margin-top: 0.55rem;
    margin-bottom: -0.28rem;
  }

  .hero-form-focus {
    margin-top: 0.72rem !important;
  }

  .hero-form-card {
    padding: 0.9rem !important;
    border-radius: 1.28rem !important;
    animation-duration: 3.25s;
  }

  .hero-form-input,
  .hero-form-button {
    height: 3.28rem !important;
  }

  .hero-form-input {
    margin-top: 0 !important;
    font-size: 0.98rem !important;
  }

  .hero-form-button {
    font-size: 0.95rem !important;
  }

  .hero-support-copy {
    margin-top: 0.78rem !important;
    max-width: 20rem !important;
    font-size: 0.98rem !important;
    line-height: 1.62 !important;
  }

  .live-preview-module {
    margin-top: 0.15rem !important;
  }

  .powerball-preview-card {
    padding: 0.95rem !important;
    border-radius: 1.25rem !important;
    max-height: none;
  }

  .powerball-preview-card h2 {
    font-size: 1.45rem !important;
    line-height: 1.04 !important;
  }

  .powerball-preview-card p.text-xs {
    font-size: 0.62rem !important;
    letter-spacing: 0.18em !important;
  }

  #public-powerball-preview {
    margin-top: 0.82rem !important;
    gap: 0.62rem !important;
  }

  #public-powerball-preview .signal-line-card {
    padding: 0.72rem !important;
    border-radius: 0.95rem !important;
  }

  .hero-signal-card .number-ball,
  .powerball-preview-card .number-ball {
    width: 1.68rem !important;
    height: 1.68rem !important;
    font-size: 0.66rem !important;
  }

  .line-title {
    font-size: 0.64rem !important;
    letter-spacing: 0.12em !important;
  }

  .line-copy-btn {
    min-height: 1.7rem !important;
    padding: 0.35rem 0.48rem !important;
    font-size: 0.62rem !important;
  }

  .premium-extra-group span {
    font-size: 0.62rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-arrow span {
    animation: none !important;
  }
}

.lead-arrow {
  display: none !important;
}

@media (max-width: 767px) {
  .hero-headline {
    max-width: 12.8ch !important;
    font-size: clamp(2.55rem, 10.2vw, 3.25rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.052em !important;
  }

  .hero-form-focus {
    margin-top: 1.2rem !important;
  }

  .hero-form-focus::before {
    inset: -0.7rem !important;
    border-radius: 1.75rem !important;
    filter: blur(16px) !important;
  }

  .hero-form-card {
    padding: 1.15rem !important;
    border-radius: 1.45rem !important;
    max-width: 100% !important;
    box-shadow:
      0 30px 96px rgba(13, 6, 36, 0.72),
      0 0 0 1px rgba(255,255,255,0.08) inset,
      0 0 72px rgba(110,53,242,0.34) !important;
  }

  .hero-form-fields {
    gap: 0.95rem !important;
  }

  .hero-form-input,
  .hero-form-button {
    height: 3.75rem !important;
    border-radius: 1.05rem !important;
  }

  .hero-form-input {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    font-size: 1.08rem !important;
  }

  .hero-form-button {
    font-size: 1.05rem !important;
    font-weight: 900 !important;
  }

  .hero-support-copy {
    margin-top: 1.1rem !important;
    max-width: 23rem !important;
    font-size: 1.04rem !important;
    line-height: 1.65 !important;
  }

  .live-preview-module {
    margin-top: 0.75rem !important;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    max-width: 12.2ch !important;
    font-size: clamp(2.35rem, 10.8vw, 3rem) !important;
  }
}

@media (max-width: 767px) {
  .hero-form-focus {
    margin-top: 1.35rem !important;
  }

  .hero-form-focus::before {
    inset: -1.05rem !important;
    border-radius: 2.15rem !important;
    filter: blur(22px) !important;
    opacity: 1 !important;
    background:
      radial-gradient(circle at 16% 20%, rgba(18,155,244,0.42), transparent 46%),
      radial-gradient(circle at 84% 80%, rgba(212,18,247,0.45), transparent 48%),
      linear-gradient(135deg, rgba(18,155,244,0.22), rgba(110,53,242,0.32), rgba(212,18,247,0.25)) !important;
  }

  .hero-form-card {
    padding: 1.38rem !important;
    border-radius: 1.8rem !important;
    border-color: rgba(216, 209, 255, 0.24) !important;
    background:
      linear-gradient(180deg, rgba(98,54,195,0.56), rgba(78,35,166,0.42)),
      linear-gradient(140deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)) !important;
    box-shadow:
      0 36px 118px rgba(13, 6, 36, 0.78),
      0 0 0 1px rgba(255,255,255,0.10) inset,
      0 0 92px rgba(110,53,242,0.46),
      0 0 38px rgba(18,155,244,0.22) !important;
  }

  .hero-form-fields {
    gap: 1.08rem !important;
  }

  .hero-form-input,
  .hero-form-button {
    height: 4.15rem !important;
    border-radius: 1.28rem !important;
  }

  .hero-form-input {
    padding-left: 1.45rem !important;
    padding-right: 1.45rem !important;
    font-size: 1.16rem !important;
    font-weight: 650 !important;
    border-color: rgba(255,255,255,0.14) !important;
    background: rgba(24, 11, 61, 0.82) !important;
  }

  .hero-form-button {
    font-size: 1.12rem !important;
    font-weight: 950 !important;
    letter-spacing: -0.01em !important;
    box-shadow:
      0 24px 58px rgba(110,53,242,0.44),
      0 0 30px rgba(212,18,247,0.32),
      inset 0 1px 0 rgba(255,255,255,0.24) !important;
    transform: translateZ(0);
  }

  .hero-form-button:hover,
  .hero-form-button:focus-visible {
    transform: translateY(-1px) scale(1.015) !important;
    box-shadow:
      0 28px 70px rgba(110,53,242,0.52),
      0 0 38px rgba(212,18,247,0.42),
      inset 0 1px 0 rgba(255,255,255,0.28) !important;
  }
}

@media (max-width: 420px) {
  .hero-form-card {
    padding: 1.22rem !important;
    border-radius: 1.65rem !important;
  }

  .hero-form-input,
  .hero-form-button {
    height: 3.95rem !important;
    border-radius: 1.18rem !important;
  }

  .hero-form-input {
    font-size: 1.08rem !important;
  }

  .hero-form-button {
    font-size: 1.03rem !important;
  }
}

.promo-code-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 35rem);
  border: 1px solid rgba(216, 209, 255, 0.18);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(18,155,244,0.22), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(212,18,247,0.24), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  box-shadow:
    0 24px 76px rgba(13, 6, 36, 0.52),
    inset 0 1px 0 rgba(255,255,255,0.08);
  padding: 1.1rem;
  backdrop-filter: blur(22px);
}

.promo-code-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.14), transparent 24%, transparent 78%, rgba(255,255,255,0.06));
  opacity: 0.68;
}

.promo-code-card > * {
  position: relative;
  z-index: 1;
}

.promo-code-card__header,
.promo-code-meter__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.promo-code-card__eyebrow {
  color: rgba(216, 209, 255, 0.88);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-code-card__badge {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(248, 250, 252, 0.88);
  padding: 0.38rem 0.62rem;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.promo-code-card__title {
  margin: 0.78rem 0 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.promo-code-card__copy {
  margin: 0.55rem 0 0;
  max-width: 31rem;
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.94rem;
  line-height: 1.58;
}

.promo-code-meter {
  margin-top: 1rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1.1rem;
  background: rgba(24, 11, 61, 0.42);
  padding: 0.86rem;
}

.promo-code-meter__label {
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
}

.promo-code-meter__row strong {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.promo-code-meter__track {
  overflow: hidden;
  height: 0.68rem;
  margin-top: 0.62rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.24);
}

.promo-code-meter__bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #129BF4 0%, #6E35F2 50%, #D412F7 100%);
  box-shadow:
    0 0 18px rgba(110,53,242,0.52),
    0 0 12px rgba(18,155,244,0.30);
  transition: width 420ms ease;
}

.promo-code-meter__note {
  margin: 0.64rem 0 0;
  color: rgba(216, 209, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .promo-code-card {
    margin-top: 1.35rem !important;
  }
}

@media (max-width: 767px) {
  .promo-code-card {
    margin-top: 1.05rem !important;
    width: 100%;
    border-radius: 1.3rem;
    padding: 1rem;
  }

  .promo-code-card__header {
    align-items: flex-start;
  }

  .promo-code-card__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .promo-code-card__badge {
    padding: 0.34rem 0.52rem;
    font-size: 0.62rem;
  }

  .promo-code-card__title {
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .promo-code-card__copy {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .promo-code-meter {
    margin-top: 0.86rem;
    padding: 0.78rem;
    border-radius: 1rem;
  }

  .promo-code-meter__row {
    align-items: flex-start;
  }

  .promo-code-meter__row strong {
    font-size: 0.86rem;
  }

  .promo-code-meter__note {
    font-size: 0.68rem;
  }

  .live-preview-module {
    margin-top: 0.9rem !important;
  }
}

.promo-code-card {
  animation: promoCardPulse 4.8s ease-in-out infinite;
}

.promo-code-card__title span,
.promo-code-meter__row strong {
  color: #ffffff;
  text-shadow:
    0 0 18px rgba(212, 18, 247, 0.34),
    0 0 12px rgba(18, 155, 244, 0.24);
}

.promo-code-meter {
  position: relative;
  overflow: hidden;
  animation: promoMeterGlow 3.8s ease-in-out infinite;
}

.promo-code-meter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.10) 42%, transparent 70%);
  transform: translateX(-120%);
  animation: promoMeterSheen 4.2s ease-in-out infinite;
}

.promo-code-meter > * {
  position: relative;
  z-index: 1;
}

.promo-code-meter__bar {
  position: relative;
  overflow: hidden;
  animation: promoProgressPulse 2.8s ease-in-out infinite;
}

.promo-code-meter__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-130%);
  animation: promoProgressSheen 2.4s ease-in-out infinite;
}

@keyframes promoCardPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 24px 76px rgba(13, 6, 36, 0.52),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }
  50% {
    transform: translateY(-2px);
    box-shadow:
      0 30px 92px rgba(13, 6, 36, 0.60),
      0 0 42px rgba(110, 53, 242, 0.22),
      inset 0 1px 0 rgba(255,255,255,0.10);
  }
}

@keyframes promoMeterGlow {
  0%, 100% {
    border-color: rgba(255,255,255,0.10);
    box-shadow: 0 0 0 rgba(110,53,242,0);
  }
  50% {
    border-color: rgba(216,209,255,0.24);
    box-shadow: 0 0 30px rgba(110,53,242,0.16);
  }
}

@keyframes promoMeterSheen {
  0%, 58% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

@keyframes promoProgressPulse {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(110,53,242,0.52),
      0 0 12px rgba(18,155,244,0.30);
  }
  50% {
    box-shadow:
      0 0 30px rgba(212,18,247,0.48),
      0 0 24px rgba(18,155,244,0.40);
  }
}

@keyframes promoProgressSheen {
  0%, 45% { transform: translateX(-130%); }
  78%, 100% { transform: translateX(130%); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-code-card,
  .promo-code-meter,
  .promo-code-meter::before,
  .promo-code-meter__bar,
  .promo-code-meter__bar::after {
    animation: none !important;
  }
}

.hero-form-focus,
.promo-code-card {
  width: min(100%, 34rem) !important;
  max-width: 34rem !important;
}

.hero-form-card,
.promo-code-card {
  min-height: 12.15rem !important;
}

.promo-code-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.38rem !important;
  border-radius: 1.8rem !important;
  border-color: rgba(216, 209, 255, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(98,54,195,0.56), rgba(78,35,166,0.42)),
    linear-gradient(140deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06)) !important;
  box-shadow:
    0 36px 118px rgba(13, 6, 36, 0.78),
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 0 92px rgba(110,53,242,0.46),
    0 0 38px rgba(18,155,244,0.22) !important;
  animation: heroLeadFloat 3.8s ease-in-out infinite !important;
}

.promo-code-card::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.14), transparent 22%, transparent 78%, rgba(255,255,255,0.08)) !important;
}

.promo-code-card::after {
  content: "";
  position: absolute;
  inset: -1.05rem;
  z-index: -1;
  border-radius: 2.15rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 20%, rgba(18,155,244,0.42), transparent 46%),
    radial-gradient(circle at 84% 80%, rgba(212,18,247,0.45), transparent 48%),
    linear-gradient(135deg, rgba(18,155,244,0.22), rgba(110,53,242,0.32), rgba(212,18,247,0.25));
  filter: blur(22px);
  opacity: 1;
  animation: heroLeadHalo 4.2s ease-in-out infinite;
}

.promo-code-card__title {
  font-size: clamp(1.42rem, 2.5vw, 1.72rem) !important;
  line-height: 1.03 !important;
}

.promo-code-card__copy {
  margin-top: 0.72rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

.promo-code-meter {
  margin-top: 1.05rem !important;
  border-radius: 1.25rem !important;
  background: rgba(24, 11, 61, 0.58) !important;
}

.promo-code-meter__track {
  height: 0.9rem !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.10)) !important;
}

.promo-code-meter__bar {
  background:
    linear-gradient(90deg, #129BF4 0%, #6E35F2 38%, #D412F7 72%, #FF3B7A 100%) !important;
  box-shadow:
    0 0 28px rgba(212,18,247,0.58),
    0 0 24px rgba(18,155,244,0.42),
    0 0 14px rgba(255,59,122,0.42) !important;
  animation: promoEndingPulse 1.55s ease-in-out infinite !important;
}

.promo-code-meter__bar::before {
  content: "";
  position: absolute;
  top: -35%;
  right: 0;
  bottom: -35%;
  width: 18%;
  background: radial-gradient(circle, rgba(255,255,255,0.72), transparent 64%);
  opacity: 0.78;
  filter: blur(5px);
  animation: promoEdgeFlash 1.2s ease-in-out infinite;
}

@keyframes promoEndingPulse {
  0%, 100% {
    filter: saturate(1);
    transform: scaleX(1);
  }
  50% {
    filter: saturate(1.28) brightness(1.12);
    transform: scaleX(1.006);
  }
}

@keyframes promoEdgeFlash {
  0%, 100% { opacity: 0.35; transform: scaleX(0.78); }
  50% { opacity: 0.95; transform: scaleX(1.1); }
}

@media (max-width: 767px) {
  .hero-form-card,
  .promo-code-card {
    min-height: 12.15rem !important;
  }

  .promo-code-card {
    padding: 1.38rem !important;
    border-radius: 1.8rem !important;
  }

  .promo-code-card__title {
    font-size: 1.52rem !important;
  }

  .promo-code-card__copy {
    font-size: 0.98rem !important;
    line-height: 1.48 !important;
  }

  .promo-code-meter {
    padding: 0.9rem !important;
  }

  .promo-code-meter__track {
    height: 0.86rem !important;
  }
}

@media (max-width: 420px) {
  .hero-form-card,
  .promo-code-card {
    min-height: 11.7rem !important;
  }

  .promo-code-card {
    padding: 1.22rem !important;
    border-radius: 1.65rem !important;
  }

  .promo-code-card__title {
    font-size: 1.38rem !important;
  }

  .promo-code-card__copy {
    font-size: 0.92rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-code-card::after,
  .promo-code-meter__bar::before {
    animation: none !important;
  }
}

@media (max-width: 767px) {
  .hero-headline {
    font-size: clamp(2.52rem, 11.6vw, 3.18rem) !important;
  }

  .hero-form-card,
  .promo-code-card {
    min-height: 10.9rem !important;
    padding: 1rem !important;
  }

  .hero-form-fields {
    gap: 0.82rem !important;
  }

  .hero-form-input,
  .hero-form-button {
    height: 3.65rem !important;
  }

  .hero-support-copy {
    margin-top: 0.92rem !important;
  }

  .promo-code-card__title {
    font-size: 1.42rem !important;
  }

  .promo-code-card__copy {
    margin-top: 0.62rem !important;
    font-size: 0.95rem !important;
    line-height: 1.44 !important;
  }

  .promo-code-meter {
    margin-top: 0.82rem !important;
    padding: 0.78rem !important;
  }

  .social-proof-heading {
    text-align: left !important;
  }

  .social-proof-heading .mx-auto {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.social-proof-heading {
  text-align: center;
}

.social-proof-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-proof-card {
  border-left: 4px solid #22c55e;
  border-radius: 1.3rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045)),
    linear-gradient(135deg, rgba(110,53,242,0.12), rgba(18,155,244,0.06));
  box-shadow: 0 18px 60px rgba(16, 7, 43, 0.36);
  padding: 1.4rem;
}

.social-proof-card__stars {
  color: #facc15;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.social-proof-card__quote {
  margin: 1rem 0 1.3rem;
  color: #dbe3f1;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 7.2rem;
}

.social-proof-card__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-proof-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18,155,244,0.85), rgba(34,197,94,0.85));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
}

.social-proof-card__meta strong {
  display: block;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 850;
}

.social-proof-card__meta span {
  display: block;
  color: #a7b5cb;
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.social-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  border: 1px solid rgba(113, 255, 174, 0.18);
  border-radius: 1.7rem;
  background:
    linear-gradient(180deg, rgba(135, 255, 177, 0.14), rgba(135, 255, 177, 0.10)),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  padding: 1.6rem;
}

.social-proof-stat {
  text-align: center;
  padding: 1rem;
}

.social-proof-stat__value {
  color: #1ddb63;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.social-proof-stat__label {
  margin-top: 0.7rem;
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 1023px) {
  .social-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-proof-card__quote {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .social-proof-grid,
  .social-proof-stats {
    grid-template-columns: 1fr;
  }

  .social-proof-grid {
    gap: 1rem;
  }

  .social-proof-card {
    padding: 1.15rem;
    border-radius: 1.15rem;
  }

  .social-proof-card__quote {
    margin: 0.8rem 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .social-proof-card__meta strong {
    font-size: 1rem;
  }

  .social-proof-card__meta span {
    font-size: 0.86rem;
  }

  .social-proof-stats {
    gap: 0.7rem;
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .social-proof-stat {
    padding: 0.7rem 0.5rem;
  }

  .social-proof-stat__value {
    font-size: 2rem;
  }

  .social-proof-stat__label {
    margin-top: 0.45rem;
    font-size: 0.9rem;
  }
}

.social-proof-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.social-proof-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #129BF4 0%, #6E35F2 48%, #D412F7 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(110,53,242,0.28);
}

.social-proof-cta:hover {
  transform: translateY(-1px);
}

.social-proof-note {
  margin-top: 0.9rem;
  text-align: center;
  color: rgba(216, 209, 255, 0.68);
  font-size: 0.76rem;
}

.social-proof-card__avatar {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .social-proof-cta-wrap {
    justify-content: stretch;
  }

  .social-proof-cta {
    width: 100%;
  }

  .social-proof-note {
    text-align: left;
    font-size: 0.72rem;
  }
}

@media (max-width: 767px) {
  .hero-form-card {
    padding: 0.92rem !important;
  }

  .hero-form-fields {
    gap: 0.72rem !important;
  }

  .hero-form-input {
    height: 3.25rem !important;
  }

  .hero-form-button {
    height: 3.2rem !important;
    border-radius: 1.1rem !important;
    font-size: 0.98rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-shadow:
      0 18px 42px rgba(110,53,242,0.42),
      0 0 22px rgba(212,18,247,0.28),
      inset 0 1px 0 rgba(255,255,255,0.22) !important;
  }
}

.review-card {
  position: relative;
  border-left: 4px solid #22c55e;
}

.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 36%);
}

.social-proof-heading h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.social-proof-card__quote {
  font-style: italic;
}

.social-proof-card__meta {
  justify-content: space-between;
}

.social-proof-card__meta > div:nth-child(2) {
  flex: 1;
  margin-left: 0.2rem;
}

.social-proof-card__flag {
  font-size: 1.5rem;
  line-height: 1;
}

.social-proof-card__avatar {
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(18,155,244,0.95), rgba(212,18,247,0.82));
  box-shadow: 0 10px 26px rgba(110,53,242,0.26);
}

.social-proof-card__quote {
  min-height: 8.2rem;
}

.social-proof-cta {
  min-height: 3.15rem;
  border-radius: 1.05rem;
}

@media (max-width: 1023px) {
  .social-proof-card__quote {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .social-proof-heading {
    text-align: left !important;
  }

  .social-proof-heading h2,
  .social-proof-heading p {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
  }

  .social-proof-card__avatar {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.15rem;
  }

  .social-proof-card__flag {
    font-size: 1.35rem;
  }

  .social-proof-card__quote {
    font-size: 0.94rem;
    line-height: 1.58;
  }
}

.review-card,
.social-proof-card {
  border-left-color: rgba(110, 53, 242, 0.82) !important;
}

.social-proof-break {
  display: none;
}

@media (min-width: 1024px) {
  .social-proof-break {
    display: block;
  }

  .social-proof-heading h2 {
    max-width: 19ch !important;
  }
}

@media (max-width: 767px) {
  .hero-form-card {
    min-height: 0 !important;
    padding: 0.72rem !important;
    border-radius: 1.5rem !important;
  }

  .hero-form-fields {
    gap: 0.56rem !important;
  }

  .hero-form-input {
    height: 2.95rem !important;
    border-radius: 1rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    font-size: 0.95rem !important;
  }

  .hero-form-button {
    height: 2.95rem !important;
    border-radius: 1rem !important;
    font-size: 0.95rem !important;
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
  }

  .hero-form-focus::before {
    inset: -0.8rem !important;
  }
}

@media (max-width: 420px) {
  .hero-form-card {
    padding: 0.68rem !important;
  }

  .hero-form-input,
  .hero-form-button {
    height: 2.9rem !important;
    font-size: 0.92rem !important;
  }
}

main a[href="#top"],
main a[href="./index.html#top"],
main .preview-refresh-btn {
  font-size: 1.145rem !important;
  font-weight: 900 !important;
}

@media (min-width: 1024px) {

  main a[href="#top"],
  main a[href="./index.html#top"] {
    min-height: 4.75rem !important;
    padding: 1.35rem 2.35rem !important;
    border-radius: 1.25rem !important;
    font-size: 1.145rem !important;
  }

  main .preview-refresh-btn {
    min-height: 4.3rem !important;
    padding: 1.15rem 2rem !important;
    border-radius: 1.15rem !important;
    font-size: 1.12rem !important;
  }

  .social-proof-heading h2 {
    max-width: 21ch !important;
  }
}

@media (max-width: 767px) {

  .hero-headline {
    font-size: clamp(2.69rem, 12.2vw, 3.35rem) !important;
  }

  .hero-form-card {
    min-height: 0 !important;
    padding: 0.58rem !important;
    border-radius: 1.42rem !important;
  }

  .hero-form-fields {
    gap: 0.48rem !important;
  }

  .hero-form-input,
  .hero-form-button {
    height: 2.82rem !important;
  }

  .hero-form-input {
    border-radius: 0.92rem !important;
    font-size: 0.92rem !important;
    padding-left: 0.95rem !important;
    padding-right: 0.95rem !important;
  }

  .hero-form-button {
    border-radius: 0.92rem !important;
    font-size: 1.05rem !important;
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }

  main a[href="#top"],
  main a[href="./index.html#top"],
  main .preview-refresh-btn {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 3.55rem !important;
    padding: 1rem 1rem !important;
    border-radius: 1rem !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    font-size: 1.05rem !important;
    box-sizing: border-box !important;
  }

  .social-proof-cta-wrap {
    width: 100% !important;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    font-size: clamp(2.52rem, 11.9vw, 3.18rem) !important;
  }

  .hero-form-card {
    padding: 0.54rem !important;
  }

  .hero-form-input,
  .hero-form-button {
    height: 2.76rem !important;
  }
}

.social-proof-stat__value {
  background: linear-gradient(90deg, #129BF4 0%, #6E35F2 48%, #D412F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: none !important;
}

.social-proof-stat {
  border-radius: 1.2rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(18,155,244,0.08), rgba(110,53,242,0.14), rgba(212,18,247,0.10));
  border: 1px solid rgba(216, 209, 255, 0.12);
}

.social-proof-stats {
  border-color: rgba(216, 209, 255, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    linear-gradient(135deg, rgba(18,155,244,0.06), rgba(110,53,242,0.10), rgba(212,18,247,0.08)) !important;
}

.hero-form-button,
main a[href="#top"],
main a[href="./index.html#top"],
.social-proof-cta,
.preview-refresh-btn {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

.hero-form-button {
  display: flex !important;
}

.social-proof-card__meta {
  justify-content: flex-start !important;
  gap: 0.9rem !important;
}

.social-proof-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.96rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(18,155,244,0.95), rgba(212,18,247,0.82));
  box-shadow: 0 10px 26px rgba(110,53,242,0.26);
}

.social-proof-stat__value {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #ffffff !important;
  text-shadow: none !important;
}

.social-proof-stat__label {
  color: rgba(226, 232, 240, 0.94) !important;
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: clamp(4.95rem, 5.9vw, 6.65rem) !important;
  }
}

@media (max-width: 767px) {
  .hero-headline {
    font-size: clamp(2.86rem, 12.9vw, 3.52rem) !important;
  }

  .hero-form-button {
    font-size: 1.08rem !important;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    font-size: clamp(2.68rem, 12.4vw, 3.34rem) !important;
  }
}

.section-bottom-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, #129BF4 0%, #6E35F2 48%, #D412F7 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(110,53,242,0.28);
  text-align: center;
}

.section-bottom-cta:hover {
  transform: translateY(-1px);
}

#preview .mx-auto.max-w-7xl,
#how-it-works .mx-auto.max-w-7xl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  #preview .section-bottom-cta,
  #how-it-works .section-bottom-cta {
    min-height: 4.75rem !important;
    padding: 1.35rem 2.35rem !important;
    border-radius: 1.25rem !important;
    font-size: 1.145rem !important;
  }

  .hero-headline {
    font-size: clamp(4.8rem, 5.7vw, 6.45rem) !important;
  }
}

@media (max-width: 767px) {
  #preview .section-bottom-cta,
  #how-it-works .section-bottom-cta {
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 3.55rem !important;
    padding: 1rem 1rem !important;
    border-radius: 1rem !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    font-size: 1.05rem !important;
    box-sizing: border-box !important;
  }

  .hero-headline {
    font-size: clamp(2.69rem, 12.2vw, 3.35rem) !important;
  }
}

@media (max-width: 420px) {
  .hero-headline {
    font-size: clamp(2.52rem, 11.9vw, 3.18rem) !important;
  }
}

.lw-primary-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18rem !important;
  min-height: 3.2rem !important;
  padding: 0.85rem 1.15rem !important;
  border-radius: 1rem !important;
  background: linear-gradient(90deg, #129BF4 0%, #6E35F2 48%, #D412F7 100%) !important;
  color: #ffffff !important;
  font-size: 1.02rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  text-align: center !important;
  box-shadow:
    0 18px 42px rgba(110,53,242,0.36),
    0 0 24px rgba(212,18,247,0.16),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
  transition: transform 0.2s ease !important;
}

.lw-primary-cta:hover {
  transform: translateY(-1px);
}

.preview-layout,
.unlock-layout,
.how-layout {
  width: 100%;
}

.preview-heading {
  max-width: 100%;
}

.preview-body {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 20rem);
  gap: 2.25rem;
  align-items: start;
}

.preview-media-panel {
  min-height: 14rem;
}

.preview-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.preview-info-card {
  width: 100%;
}

.unlock-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: center;
}

.unlock-copy {
  max-width: 30rem;
}

.unlock-copy .lw-primary-cta {
  margin-top: 2rem;
}

.unlock-media-panel {
  min-height: 15rem;
}

.how-cards-grid {
  align-items: stretch;
}

.how-cards-grid > div {
  min-height: 100%;
}

.how-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

.social-proof-cta-wrap .lw-primary-cta {
  width: 18rem !important;
}

@media (min-width: 1024px) {
  .preview-layout {
    display: block;
  }

  .preview-side .lw-primary-cta {
    margin-top: 0.25rem;
  }
}

@media (max-width: 767px) {
  .lw-primary-cta {
    width: 100% !important;
    max-width: none !important;
    min-height: 3.2rem !important;
    padding: 0.85rem 1rem !important;
    font-size: 1.02rem !important;
    border-radius: 0.95rem !important;
  }

  .preview-body,
  .unlock-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .preview-side,
  .unlock-copy,
  .how-cta-wrap {
    align-items: stretch;
  }

  .how-cta-wrap {
    width: 100%;
  }

  .social-proof-cta-wrap {
    width: 100%;
  }
}

.how-cta-wrap {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.how-cta-wrap .lw-primary-cta {
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-form-button,
.lw-primary-cta,
.preview-refresh-btn,
.social-proof-cta,
header a[href*="login"],
header button,
header .header-login-btn {
  position: relative;
  overflow: hidden;
}

.hero-form-button::after,
.lw-primary-cta::after,
.preview-refresh-btn::after,
.social-proof-cta::after,
header a[href*="login"]::after,
header button::after,
header .header-login-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.32) 48%, transparent 100%);
  transform: translateX(-180%) skewX(-18deg);
  animation: heroButtonSheen 3.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-form-button,
.lw-primary-cta,
.preview-refresh-btn,
.social-proof-cta {
  box-shadow:
    0 18px 44px rgba(110,53,242,0.30),
    0 0 18px rgba(212,18,247,0.14),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.hero-form-button:hover,
.hero-form-button:focus-visible,
.lw-primary-cta:hover,
.lw-primary-cta:focus-visible,
.preview-refresh-btn:hover,
.preview-refresh-btn:focus-visible,
.social-proof-cta:hover,
.social-proof-cta:focus-visible,
header a[href*="login"]:hover,
header a[href*="login"]:focus-visible,
header button:hover,
header button:focus-visible,
header .header-login-btn:hover,
header .header-login-btn:focus-visible {
  transform: translateY(-1px) scale(1.015) !important;
  box-shadow:
    0 24px 58px rgba(110,53,242,0.42),
    0 0 28px rgba(212,18,247,0.24),
    inset 0 1px 0 rgba(255,255,255,0.22) !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-form-button::after,
  .lw-primary-cta::after,
  .preview-refresh-btn::after,
  .social-proof-cta::after,
  header a[href*="login"]::after,
  header button::after,
  header .header-login-btn::after {
    animation: none !important;
  }
}

.hero-desktop-break {
  display: none;
}

@media (min-width: 1024px) {
  .hero-desktop-break {
    display: block;
  }

  .hero-headline {
    max-width: 13.8ch !important;
    font-size: clamp(4.05rem, 4.75vw, 5.25rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.052em !important;
  }

  .preview-media-panel,
  .unlock-media-panel {
    height: clamp(16rem, 24vw, 21rem) !important;
    min-height: clamp(16rem, 24vw, 21rem) !important;
  }

  .preview-media-panel picture,
  .preview-media-panel img,
  .unlock-media-panel picture,
  .unlock-media-panel img {
    display: block;
    height: 100% !important;
    width: 100% !important;
  }

  .preview-body {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr) !important;
    align-items: start !important;
  }

  .unlock-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
    grid-template-areas:
      "copy media"
      "cta media" !important;
    align-items: center !important;
  }

  .unlock-copy {
    grid-area: copy;
  }

  .unlock-media-panel {
    grid-area: media;
  }

  .unlock-cta-wrap {
    grid-area: cta;
    display: flex;
    justify-content: flex-start;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {

  .preview-body {
    display: flex !important;
    flex-direction: column !important;
  }

  .preview-side {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .preview-side .lw-primary-cta {
    order: 99 !important;
    margin-top: 1rem !important;
  }

  .unlock-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .unlock-copy {
    order: 1 !important;
  }

  .unlock-media-panel {
    order: 2 !important;
  }

  .unlock-cta-wrap {
    order: 99 !important;
    display: flex !important;
    width: 100% !important;
    justify-content: stretch !important;
    margin-top: 1rem !important;
  }

  .how-layout {
    display: flex !important;
    flex-direction: column !important;
  }

  .how-cta-wrap {
    order: 99 !important;
    margin-top: 1rem !important;
  }

  .preview-media-panel,
  .unlock-media-panel {
    height: auto !important;
    min-height: 0 !important;
  }

  .preview-media-panel img,
  .unlock-media-panel img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
}

.hero-copy-stack {
  max-width: 40rem;
}

.hero-support-copy {
  max-width: 38rem !important;
  color: rgba(226, 232, 240, 0.94) !important;
}

.preview-heading,
.how-heading,
.social-proof-heading,
.unlock-copy {
  max-width: 44rem;
}

.preview-heading h2,
.unlock-copy h2,
.how-heading h2,
.social-proof-heading h2 {
  text-wrap: balance;
}

.preview-side .lw-primary-cta,
.unlock-cta-wrap .lw-primary-cta,
.how-cta-wrap .lw-primary-cta,
.social-proof-cta-wrap .lw-primary-cta {
  margin-top: 1.2rem;
}

.preview-info-card,
.social-proof-card,
.how-cards-grid > div,
.glass-panel {
  backdrop-filter: blur(18px);
}

.social-proof-heading {
  text-align: center;
}

.social-proof-heading p:last-child {
  margin-left: auto;
  margin-right: auto;
  max-width: 44rem;
}

.social-proof-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.lw-primary-cta {
  letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
  .hero-headline {
    max-width: 13.2ch !important;
    font-size: clamp(3.7rem, 4.5vw, 4.85rem) !important;
    line-height: 1.03 !important;
  }

  .hero-copy-stack {
    padding-right: 1rem;
  }

  .preview-layout,
  .unlock-layout,
  .how-layout {
    gap: 0;
  }

  .preview-heading h2,
  .unlock-copy h2,
  .how-heading h2,
  .social-proof-heading h2 {
    font-size: clamp(2.5rem, 3.2vw, 3.4rem) !important;
    line-height: 1.06 !important;
  }

  .preview-body {
    margin-top: 2.25rem !important;
    gap: 2.4rem !important;
  }

  .preview-side {
    align-items: stretch !important;
  }

  .unlock-copy {
    max-width: 32rem;
  }

  .unlock-cta-wrap {
    width: 100%;
    max-width: 32rem;
    justify-content: center;
  }

  .social-proof-heading h2 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  #preview,
  #unlock,
  #how-it-works,
  #social-proof {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .hero-headline {
    max-width: 10.5ch !important;
    font-size: clamp(2.45rem, 11vw, 3.05rem) !important;
    line-height: 1.02 !important;
  }

  .hero-support-copy {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  .promo-code-card {
    margin-top: 1rem !important;
  }

  .preview-heading h2,
  .unlock-copy h2,
  .how-heading h2,
  .social-proof-heading h2 {
    font-size: 2rem !important;
    line-height: 1.08 !important;
  }

  .preview-heading p.mt-5,
  .unlock-copy p.mt-5,
  .social-proof-heading p.mt-4 {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .how-cards-grid {
    gap: 0.9rem !important;
    margin-top: 1.15rem !important;
  }

  .how-cards-grid > div {
    padding: 1.05rem !important;
    border-radius: 1.2rem !important;
  }

  .preview-side .lw-primary-cta,
  .unlock-cta-wrap .lw-primary-cta,
  .how-cta-wrap .lw-primary-cta,
  .social-proof-cta-wrap .lw-primary-cta {
    margin-top: 0.95rem !important;
  }

  .social-proof-heading {
    text-align: left !important;
  }

  .social-proof-heading p:last-child,
  .social-proof-heading h2 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
  }
}

main {
  overflow-x: clip;
}

.hero-copy-stack {
  gap: 0;
}

.hero-headline {
  text-wrap: balance;
}

.hero-form-focus {
  margin-top: 1.45rem !important;
}

.hero-support-copy {
  margin-top: 1rem !important;
}

.promo-code-card {
  margin-top: 0.95rem !important;
}

.preview-heading p.mt-5,
.unlock-copy p.mt-5,
.social-proof-heading p.mt-4 {
  max-width: 40rem;
}

.social-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.15rem !important;
}

.social-proof-card__quote {
  min-height: 0 !important;
  margin: 0.8rem 0 1rem !important;
}

.social-proof-stats {
  margin-top: 1.6rem !important;
}

.social-proof-cta-wrap {
  margin-top: 1.45rem !important;
}

@media (min-width: 1024px) {
  .lw-hero {
    padding-top: 3.6rem !important;
    padding-bottom: 4rem !important;
  }

  .hero-copy-stack {
    max-width: 38rem !important;
  }

  .hero-headline {
    max-width: 12.4ch !important;
    font-size: clamp(3.5rem, 4.2vw, 4.45rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.055em !important;
  }

  .hero-support-copy {
    max-width: 34rem !important;
    font-size: 1.06rem !important;
    line-height: 1.6 !important;
  }

  #preview,
  #unlock,
  #how-it-works,
  #social-proof {
    padding-top: 3.8rem !important;
    padding-bottom: 3.8rem !important;
  }

  .preview-heading h2,
  .unlock-copy h2,
  .how-heading h2,
  .social-proof-heading h2 {
    font-size: clamp(2.25rem, 2.8vw, 3rem) !important;
  }

  .preview-heading p.mt-5,
  .unlock-copy p.mt-5,
  .social-proof-heading p.mt-4 {
    font-size: 1.03rem !important;
    line-height: 1.65 !important;
  }

  .how-cards-grid {
    margin-top: 1.5rem !important;
  }

  .how-cards-grid > div {
    padding: 1.25rem !important;
  }

  .social-proof-heading h2 {
    max-width: 13ch !important;
  }
}

@media (max-width: 767px) {
  .lw-hero {
    padding-top: 1.6rem !important;
    padding-bottom: 2.9rem !important;
  }

  .hero-headline {
    max-width: 11.1ch !important;
    font-size: clamp(2.32rem, 10vw, 2.9rem) !important;
    line-height: 1.03 !important;
  }

  .hero-form-focus {
    margin-top: 1rem !important;
  }

  .hero-support-copy {
    margin-top: 0.85rem !important;
    max-width: none !important;
    font-size: 0.98rem !important;
    line-height: 1.58 !important;
  }

  .promo-code-card__title {
    font-size: 1.24rem !important;
  }

  .promo-code-card__copy {
    font-size: 0.9rem !important;
    line-height: 1.48 !important;
  }

  #preview,
  #unlock,
  #how-it-works,
  #social-proof {
    padding-top: 2.8rem !important;
    padding-bottom: 2.8rem !important;
  }

  .preview-heading h2,
  .unlock-copy h2,
  .how-heading h2,
  .social-proof-heading h2 {
    font-size: 1.78rem !important;
    line-height: 1.1 !important;
  }

  .preview-heading p.mt-5,
  .unlock-copy p.mt-5,
  .social-proof-heading p.mt-4 {
    font-size: 0.96rem !important;
    line-height: 1.58 !important;
  }

  .social-proof-grid {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    margin-top: 1.15rem !important;
  }

  .social-proof-stats {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .how-cards-grid > div,
  .social-proof-card,
  .preview-info-card {
    padding: 1rem !important;
  }
}

.preview-side,
.unlock-cta-wrap {
  align-items: center !important;
}

.preview-side .lw-primary-cta,
.unlock-cta-wrap .lw-primary-cta {
  margin-left: auto !important;
  margin-right: auto !important;
}

.unlock-cta-wrap,
.social-proof-cta-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.9rem !important;
}

.promo-inline-counter {
  width: min(100%, 30rem);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(55, 30, 124, 0.92), rgba(41, 18, 100, 0.96)),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(216, 209, 255, 0.12);
  box-shadow:
    0 20px 52px rgba(13, 6, 36, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 1rem 1rem 0.95rem;
}

.promo-inline-counter__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.promo-inline-counter__label {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.promo-inline-counter__row strong {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 950;
  white-space: nowrap;
}

.promo-inline-counter__track {
  overflow: hidden;
  height: 1rem;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.24);
}

.promo-inline-counter__bar {
  position: relative;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fa2ff 0%, #6E35F2 38%, #D412F7 75%, #ff68a1 100%);
  box-shadow:
    0 0 18px rgba(212,18,247,0.34),
    0 0 12px rgba(18,155,244,0.22);
  animation: promoProgressPulse 1.55s ease-in-out infinite !important;
}

.promo-inline-counter__bar::after {
  content: "";
  position: absolute;
  top: -30%;
  right: 0;
  bottom: -30%;
  width: 14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.82), transparent 64%);
  filter: blur(5px);
  animation: promoEdgeFlash 1.2s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .preview-side {
    align-items: center !important;
  }

  .preview-side .lw-primary-cta,
  .unlock-cta-wrap .lw-primary-cta {
    align-self: center !important;
  }

  .unlock-cta-wrap {
    width: 100%;
    max-width: 32rem;
  }

  .promo-inline-counter {
    width: min(100%, 32rem);
  }
}

@media (max-width: 767px) {
  .preview-side,
  .unlock-cta-wrap,
  .social-proof-cta-wrap {
    width: 100% !important;
    align-items: center !important;
  }

  .promo-inline-counter {
    width: 100%;
    padding: 0.95rem 0.95rem 0.9rem;
    border-radius: 1.2rem;
  }

  .promo-inline-counter__label,
  .promo-inline-counter__row strong {
    font-size: 0.88rem;
  }

  .promo-inline-counter__track {
    height: 0.95rem;
    margin-top: 0.75rem;
  }
}

#preview .lw-primary-cta,
#unlock .lw-primary-cta,
#how-it-works .lw-primary-cta,
#social-proof .lw-primary-cta {
  width: min(100%, 30rem) !important;
}

@media (min-width: 1024px) {
  #preview .lw-primary-cta,
  #unlock .lw-primary-cta,
  #how-it-works .lw-primary-cta,
  #social-proof .lw-primary-cta {
    width: min(100%, 32rem) !important;
  }
}

@media (max-width: 767px) {
  #preview .lw-primary-cta,
  #unlock .lw-primary-cta,
  #how-it-works .lw-primary-cta,
  #social-proof .lw-primary-cta {
    width: 100% !important;
    max-width: 100% !important;
  }
}

main .hero-form-button,
main .lw-primary-cta {
  width: min(100%, 30rem) !important;
  min-height: 3.2rem !important;
  padding: 0.85rem 1.15rem !important;
  border-radius: 1rem !important;
  font-size: 1.02rem !important;
  font-weight: 900 !important;
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (min-width: 1024px) {
  main .hero-form-button,
  main .lw-primary-cta {
    width: min(100%, 32rem) !important;
    min-height: 3.2rem !important;
    padding: 0.85rem 1.15rem !important;
    border-radius: 1rem !important;
    font-size: 1.02rem !important;
  }
}

@media (max-width: 767px) {
  main .hero-form-button,
  main .lw-primary-cta {
    width: 100% !important;
    max-width: 100% !important;
  }
}

header .header-actions a,
header button,
header .mobile-menu-toggle,
header [aria-label*="menu" i],
header [aria-label*="Menu" i] {
  transform: none !important;
  animation: none !important;
  box-shadow: none !important;
}

header .header-actions a::after,
header button::after,
header .mobile-menu-toggle::after,
header [aria-label*="menu" i]::after,
header [aria-label*="Menu" i]::after {
  content: none !important;
  animation: none !important;
}

header .header-actions a:hover,
header .header-actions a:focus-visible,
header button:hover,
header button:focus-visible,
header .mobile-menu-toggle:hover,
header .mobile-menu-toggle:focus-visible,
header [aria-label*="menu" i]:hover,
header [aria-label*="menu" i]:focus-visible,
header [aria-label*="Menu" i]:hover,
header [aria-label*="Menu" i]:focus-visible {
  transform: none !important;
  box-shadow: none !important;
}

.hero-mobile-break {
  display: none;
}

.promo-code-card,
.promo-inline-counter {
  position: relative;
  overflow: hidden;
  animation: promoCounterCardPulse 1.9s ease-in-out infinite;
}

.promo-code-card::after,
.promo-inline-counter::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.06) 42%, transparent 66%);
  transform: translateX(-120%);
  animation: promoCounterCardSheen 2.8s ease-in-out infinite;
}

.promo-code-card__title span,
.promo-inline-counter__row strong,
.promo-code-meter__row strong {
  animation: promoCounterNumberPulse 1.15s ease-in-out infinite;
  text-shadow:
    0 0 18px rgba(255, 105, 180, 0.30),
    0 0 14px rgba(212, 18, 247, 0.28),
    0 0 8px rgba(18, 155, 244, 0.20);
}

.promo-inline-counter__track,
.promo-code-meter__track {
  position: relative;
  overflow: hidden;
}

.promo-inline-counter__track::before,
.promo-code-meter__track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: translateX(-120%);
  animation: promoTrackSweep 2.6s linear infinite;
}

.promo-inline-counter__bar,
.promo-code-meter__bar {
  background-size: 160% 100% !important;
  animation:
    promoProgressPulseStrong 0.95s ease-in-out infinite,
    promoBarShift 2.2s linear infinite !important;
  box-shadow:
    0 0 26px rgba(255, 97, 165, 0.38),
    0 0 20px rgba(212, 18, 247, 0.34),
    0 0 14px rgba(18, 155, 244, 0.22) !important;
}

.promo-inline-counter__bar::after,
.promo-code-meter__bar::after {
  width: 20% !important;
  background: radial-gradient(circle, rgba(255,255,255,0.98), rgba(255,160,210,0.72), transparent 66%) !important;
  filter: blur(7px) !important;
  animation: promoEdgeFlashStrong 0.8s ease-in-out infinite !important;
}

.promo-inline-counter__bar::before,
.promo-code-meter__bar::before {
  content: "";
  position: absolute;
  top: -20%;
  right: 3%;
  width: 8%;
  height: 140%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,107,170,0.28));
  box-shadow:
    0 0 12px rgba(255,255,255,0.45),
    0 0 22px rgba(255, 105, 180, 0.42);
  opacity: 0.92;
  animation: promoEndCapBlink 0.9s ease-in-out infinite;
}

@keyframes promoCounterCardPulse {
  0%, 100% {
    box-shadow:
      0 18px 44px rgba(13, 6, 36, 0.34),
      0 0 0 rgba(212,18,247,0);
  }
  50% {
    box-shadow:
      0 24px 60px rgba(13, 6, 36, 0.42),
      0 0 34px rgba(212,18,247,0.18),
      0 0 22px rgba(255,105,180,0.16);
  }
}

@keyframes promoCounterCardSheen {
  0%, 55% { transform: translateX(-120%); }
  85%, 100% { transform: translateX(120%); }
}

@keyframes promoCounterNumberPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.045); opacity: 1; }
}

@keyframes promoTrackSweep {
  0% { transform: translateX(-120%); opacity: 0; }
  12% { opacity: 0.65; }
  50% { opacity: 0.24; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes promoProgressPulseStrong {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
    filter: saturate(1) brightness(1);
  }
  50% {
    transform: scaleY(1.04) scaleX(1.008);
    filter: saturate(1.22) brightness(1.16);
  }
}

@keyframes promoBarShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 160% 50%; }
}

@keyframes promoEdgeFlashStrong {
  0%, 100% { opacity: 0.48; transform: scaleX(0.82); }
  50% { opacity: 1; transform: scaleX(1.18); }
}

@keyframes promoEndCapBlink {
  0%, 100% { opacity: 0.45; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (max-width: 767px) {
  .hero-mobile-break {
    display: block;
  }

  .hero-headline {
    max-width: none !important;
    font-size: clamp(1.98rem, 7.7vw, 2.38rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.05em !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-code-card,
  .promo-inline-counter,
  .promo-code-card::after,
  .promo-inline-counter::after,
  .promo-code-card__title span,
  .promo-inline-counter__row strong,
  .promo-code-meter__row strong,
  .promo-inline-counter__track::before,
  .promo-code-meter__track::before,
  .promo-inline-counter__bar,
  .promo-code-meter__bar,
  .promo-inline-counter__bar::after,
  .promo-code-meter__bar::after,
  .promo-inline-counter__bar::before,
  .promo-code-meter__bar::before {
    animation: none !important;
  }
}

.promo-code-card--secondary {
  width: min(100%, 32rem) !important;
  margin-top: 0.9rem !important;
  padding: 1.25rem 1.15rem 1.05rem !important;
  border-radius: 1.75rem !important;
}

.promo-code-card--secondary .promo-code-card__title {
  margin: 0 !important;
  font-size: clamp(1.1rem, 2vw, 1.75rem) !important;
  line-height: 1.15 !important;
}

.promo-code-card--secondary .promo-code-card__copy {
  margin-top: 0.7rem !important;
  margin-bottom: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.5 !important;
}

.promo-code-card--secondary .promo-code-meter {
  margin-top: 1rem !important;
}

.unlock-cta-wrap .promo-code-card,
.social-proof-cta-wrap .promo-code-card {
  align-self: center !important;
}

.unlock-cta-wrap,
.social-proof-cta-wrap {
  width: 100% !important;
}

.unlock-cta-wrap .lw-primary-cta,
.social-proof-cta-wrap .lw-primary-cta {
  width: min(100%, 32rem) !important;
}

@media (max-width: 767px) {
  .promo-code-card--secondary {
    width: 100% !important;
    padding: 1.05rem 0.95rem 0.95rem !important;
    border-radius: 1.45rem !important;
  }

  .promo-code-card--secondary .promo-code-card__title {
    font-size: 1.12rem !important;
    line-height: 1.18 !important;
  }

  .promo-code-card--secondary .promo-code-card__copy {
    font-size: 0.92rem !important;
    line-height: 1.48 !important;
  }

  .unlock-cta-wrap .lw-primary-cta,
  .social-proof-cta-wrap .lw-primary-cta {
    width: 100% !important;
  }
}

#how-it-works .how-heading,
#social-proof .social-proof-heading,
#unlock .unlock-copy,
#unlock .unlock-cta-wrap,
#social-proof .social-proof-cta-wrap,
#social-proof .social-proof-stats {
  text-align: center !important;
}

#how-it-works .how-heading,
#social-proof .social-proof-heading,
#unlock .unlock-copy {
  margin-left: auto !important;
  margin-right: auto !important;
}

#how-it-works .how-heading p,
#social-proof .social-proof-heading p,
#unlock .unlock-copy p,
#social-proof .social-proof-stat__label,
#social-proof .social-proof-card__meta span {
  color: rgba(244, 246, 255, 0.92) !important;
}

#how-it-works .how-heading h2,
#social-proof .social-proof-heading h2,
#unlock .unlock-copy h2,
#social-proof .social-proof-stat__value,
#social-proof .social-proof-card__meta strong {
  color: #ffffff !important;
  text-shadow: 0 0 22px rgba(255,255,255,0.06);
}

#social-proof .social-proof-heading {
  max-width: 48rem !important;
}

#social-proof .social-proof-heading p:last-child,
#unlock .unlock-copy p.mt-5,
#how-it-works .how-heading {
  max-width: 42rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#unlock .unlock-copy {
  max-width: 36rem !important;
  align-items: center !important;
}

#unlock .unlock-copy .text-sm,
#how-it-works .how-heading .text-sm,
#social-proof .social-proof-heading .text-sm {
  display: block !important;
  text-align: center !important;
  color: rgba(221, 210, 255, 0.88) !important;
}

#unlock .unlock-cta-wrap,
#social-proof .social-proof-cta-wrap {
  align-items: center !important;
  justify-content: center !important;
}

#social-proof .social-proof-stats {
  justify-items: center !important;
}

#social-proof .social-proof-stat {
  text-align: center !important;
}

#social-proof .social-proof-card {
  text-align: left !important;
}

@media (min-width: 1024px) {
  #unlock .unlock-layout {
    align-items: center !important;
  }

  #unlock .unlock-copy,
  #unlock .unlock-cta-wrap {
    justify-self: center !important;
  }

  #how-it-works .how-heading h2,
  #social-proof .social-proof-heading h2,
  #unlock .unlock-copy h2 {
    color: #ffffff !important;
  }
}

@media (max-width: 767px) {
  #how-it-works .how-heading,
  #social-proof .social-proof-heading,
  #unlock .unlock-copy {
    max-width: none !important;
  }

  #social-proof .social-proof-heading p:last-child,
  #unlock .unlock-copy p.mt-5,
  #how-it-works .how-heading {
    max-width: none !important;
  }

  #how-it-works .how-heading p,
  #social-proof .social-proof-heading p,
  #unlock .unlock-copy p,
  #social-proof .social-proof-stat__label {
    color: rgba(245, 247, 255, 0.94) !important;
  }
}

#how-it-works .how-heading p,
#how-it-works .how-heading h2,
#social-proof .social-proof-heading p,
#social-proof .social-proof-heading h2,
#social-proof .social-proof-stat__value,
#social-proof .social-proof-stat__label,
main > section.px-4.pb-20.pt-10 h2,
main > section.px-4.pb-20.pt-10 p {
  color: #ffffff !important;
}

#how-it-works .how-heading .text-sm,
#social-proof .social-proof-heading .text-sm {
  color: #ffffff !important;
}

main > section.px-4.pb-20.pt-10 .final-access-cta {
  margin-top: 2rem !important;
}


/* Aggressive marketing upgrade: early-access proof, value stack, and conversion cards */
.offer-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.offer-stack-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.45rem;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045));
  box-shadow: 0 20px 44px rgba(9, 3, 35, 0.26);
}
.offer-stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(212,18,247,0.22), transparent 40%), radial-gradient(circle at 90% 100%, rgba(18,155,244,0.16), transparent 42%);
  pointer-events: none;
}
.offer-stack-card > * { position: relative; }
.offer-stack-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #129BF4, #D412F7);
  color: #fff;
  font-weight: 950;
  font-size: 0.78rem;
  box-shadow: 0 0 22px rgba(212,18,247,0.3);
}
.offer-stack-card h3 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 950;
  margin: 0 0 0.45rem;
}
.offer-stack-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.aggressive-proof-section .social-proof-card__stars {
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 0 16px rgba(255,214,102,0.35), 0 0 22px rgba(212,18,247,0.2);
}
.hero-form-input::placeholder,
.inline-lead-form input::placeholder {
  color: rgba(255,255,255,0.58);
}
.promo-code-meter__note {
  color: rgba(255,255,255,0.74) !important;
  font-weight: 750 !important;
}
@media (max-width: 1023px) {
  .offer-stack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .offer-stack-grid { grid-template-columns: 1fr; }
  .offer-stack-card { padding: 1rem; }
}


/* 2026-05-07 update: gated members, progress LTR, selector contrast, dashboard gallery */
.promo-inline-counter__track,
.promo-code-meter__track {
  position: relative;
  overflow: hidden;
}

.promo-inline-counter__bar,
.promo-code-meter__bar {
  position: relative;
  transform-origin: left center !important;
  background-size: 100% 100% !important;
  animation: promoBarFillLTR 1.1s cubic-bezier(.22,.61,.36,1) 1 both, promoProgressPulseStrong 1.5s ease-in-out 1.1s infinite !important;
}

.promo-inline-counter__bar::before,
.promo-code-meter__bar::before {
  content: "";
  position: absolute;
  right: 0;
  top: -18%;
  width: 10%;
  height: 136%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,138,196,0.35));
  box-shadow: 0 0 14px rgba(255,255,255,0.5), 0 0 24px rgba(255,105,180,0.42);
  animation: promoEdgeFlashStrong 1.15s ease-in-out infinite !important;
}

.promo-inline-counter__bar::after,
.promo-code-meter__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto !important;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.28) 42%, transparent 72%);
  transform: translateX(-125%);
  animation: promoSheenLTR 2.2s ease-in-out 1.1s infinite !important;
}

@keyframes promoBarFillLTR {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes promoSheenLTR {
  0%, 38% { transform: translateX(-125%); }
  76%, 100% { transform: translateX(125%); }
}

.selector-toolbar select,
.selector-field select,
.inline-lead-form select,
.preview-period-select,
#public-preview-period,
#lottery-region,
#lottery-period,
#diagnostic-lottery,
#results-continent,
#results-lottery,
#results-period,
#alert-lottery,
#alert-threshold {
  color: #ffffff !important;
  background-color: rgba(24, 11, 61, 0.94) !important;
}

.selector-toolbar select option,
.selector-field select option,
.inline-lead-form select option,
.preview-period-select option,
select option {
  color: #ffffff !important;
  background: #180B3D !important;
}

.selector-toolbar select:focus,
.selector-field select:focus,
.inline-lead-form select:focus,
.preview-period-select:focus,
.selector-toolbar input:focus,
.selector-field input:focus {
  border-color: rgba(180, 160, 255, 0.9) !important;
  box-shadow: 0 0 0 4px rgba(110, 53, 242, 0.18) !important;
}

.dashboard-gallery-grid,
.blog-card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-gallery-card {
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.dashboard-gallery-card__image {
  width: 100%;
  height: 100%;
  min-height: 225px;
  max-height: 290px;
  object-fit: cover;
  display: block;
}

.dashboard-gallery-card__copy {
  padding: 1.15rem 1.2rem 1.3rem;
}

.dashboard-gallery-card__copy h3,
.blog-group__head h2 {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
}

.dashboard-gallery-card__copy p,
.blog-group__head p {
  color: #bfc3d8;
  margin-top: 0.6rem;
  line-height: 1.7;
}

.blog-group + .blog-group {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 3.4rem;
}

@media (max-width: 1023px) {
  .dashboard-gallery-grid,
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .dashboard-gallery-grid,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-gallery-card__image {
    min-height: 180px;
    max-height: 220px;
  }

  .dashboard-gallery-card__copy,
  .blog-group__head {
    text-align: left;
  }
}


/* 2026-05-08 homepage section refinements */
.preview-heading.text-center,
#inside-dashboard .preview-heading,
#preview .preview-heading,
#faq .text-center {
  text-align: center;
}

#preview .preview-heading p,
#inside-dashboard .preview-heading p,
#faq .text-center p {
  margin-left: auto;
  margin-right: auto;
}

.dashboard-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.dashboard-feature-card {
  padding: 1.6rem;
  border-radius: 1.75rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dashboard-feature-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(110, 53, 242, 0.16);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d8c8ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-feature-card h3 {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}

.dashboard-feature-card p {
  margin-top: 0.85rem;
  color: #c7cde0;
  line-height: 1.75;
}

.dashboard-feature-card ul {
  margin-top: 1rem;
  padding-left: 1.1rem;
  color: #f1f5f9;
  display: grid;
  gap: 0.7rem;
}

.dashboard-feature-card li::marker {
  color: #c946ff;
}

.section-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-cta-stack .promo-inline-counter {
  width: min(42rem, 100%);
}

.app-download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 2rem;
  align-items: center;
}

.app-download-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-download-visual {
  padding: 0.75rem;
  border-radius: 1.75rem;
  overflow: hidden;
}

.app-download-visual__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-card {
  border-radius: 1.5rem;
  padding: 1.15rem 1.25rem;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-right: 2rem;
}

.faq-card summary::-webkit-details-marker { display: none; }

.faq-card summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #d2b7ff;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-card[open] summary::after { content: '–'; }

.faq-card p {
  margin-top: 0.9rem;
  color: #c3c9dc;
  line-height: 1.8;
}

@media (max-width: 1023px) {
  .dashboard-feature-grid {
    grid-template-columns: 1fr;
  }
  .app-download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .dashboard-feature-card {
    padding: 1.25rem;
  }
  .dashboard-feature-card h3 {
    font-size: 1.3rem;
  }
  .app-download-visual {
    order: -1;
  }
}


/* 2026-05-08: number diagnostic instructions and bottom placement */
.diagnostic-instructions {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.055);
  color: #cfd6ee;
  line-height: 1.75;
}

.diagnostic-instructions strong {
  color: #ffffff;
}

.diagnostic-instructions code {
  display: inline-block;
  padding: 0.1rem 0.35rem;
  border-radius: 0.45rem;
  background: rgba(24, 11, 61, 0.88);
  color: #ffffff;
  font-weight: 800;
}

#number-diagnostic {
  scroll-margin-top: 96px;
}

@media (max-width: 767px) {
  .diagnostic-instructions {
    padding: 0.9rem;
    font-size: 0.92rem;
  }
}


/* 2026-05-08: diagnostic extra balls + play CTA */
.diagnostic-form-grid {
  grid-template-columns: minmax(170px, .45fr) minmax(0, .8fr) minmax(0, .62fr) auto !important;
}

.diagnostic-play {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.055);
}

.diagnostic-play[hidden] {
  display: none !important;
}

.diagnostic-play p {
  color: #cfd6ee;
  line-height: 1.55;
}

.diagnostic-play-btn {
  width: min(100%, 14rem) !important;
  text-align: center;
  flex-shrink: 0;
}

#diagnostic-format-note {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .diagnostic-form-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .diagnostic-run-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .diagnostic-form-grid {
    grid-template-columns: 1fr !important;
  }
  .diagnostic-play {
    flex-direction: column;
    align-items: stretch;
  }
  .diagnostic-play-btn {
    width: 100% !important;
  }
}


/* 2026-05-08: robust member dashboard autoload */
.member-lottery-card--fallback .member-data-empty {
  margin-top: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}
