:root {
  --ink: #17194d;
  --muted: #5f6397;
  --pink: #ff5ca8;
  --hot-pink: #ff3f91;
  --blue: #55c8ff;
  --purple: #8f6bff;
  --mint: #64dfc3;
  --yellow: #ffdc65;
  --cream: #fff8fb;
  --card: rgba(255, 255, 255, 0.76);
  --line: rgba(117, 91, 170, 0.18);
  --shadow: 0 24px 60px rgba(107, 85, 169, 0.18);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", system-ui, sans-serif;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 110, 185, 0.22), transparent 25%),
    radial-gradient(circle at 88% 10%, rgba(95, 202, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #ffe3f4 0%, #e7fbff 34%, #fff2c4 62%, #eadfff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.sparkle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 100, 174, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(112, 99, 255, 0.24) 0 2px, transparent 3px);
  background-size: 96px 96px, 142px 142px, 188px 188px;
  animation: drift 16s linear infinite;
}

@keyframes drift {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 96px 96px, -142px 142px, 188px -188px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.promo-ribbon {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  padding: 9px 16px;
  color: white;
  font-weight: 900;
  font-size: 0.9rem;
  background: linear-gradient(90deg, #f64fa0, #8d6dff, #55c8ff);
  box-shadow: 0 12px 30px rgba(102, 76, 176, 0.18);
}

.promo-ribbon span {
  white-space: nowrap;
}

.nav-shell {
  width: min(1180px, calc(100% - 28px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr minmax(230px, 360px) auto;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Baloo 2", cursive;
  line-height: 1;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--blue), var(--yellow));
  border: 3px solid white;
  box-shadow: 0 10px 20px rgba(255, 92, 168, 0.22);
}

.brand strong {
  display: block;
  font-size: 1.15rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: "Nunito", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-weight: 900;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #fff0f8;
  color: var(--hot-pink);
}

.search-bar input,
.newsletter input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 2px 8px rgba(114, 92, 168, 0.07);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(95, 99, 151, 0.12);
}

.cart-count {
  position: absolute;
  right: -2px;
  top: -5px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--hot-pink);
  font-size: 0.72rem;
}

.hero {
  position: relative;
  width: min(1280px, calc(100% - 28px));
  min-height: 650px;
  margin: 24px auto 0;
  padding: clamp(28px, 5vw, 68px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 42px;
  background: #ffdff0;
  box-shadow: var(--shadow);
}

.hero-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 248, 251, 0.74) 72%, rgba(255, 248, 251, 0.92)),
    url("assets/squishybar-rainbow-hero.png") center top / cover no-repeat;
  transform: scale(1.02);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.22);
}

.hero::before {
  width: 150px;
  height: 150px;
  left: 7%;
  bottom: 23%;
}

.hero::after {
  width: 96px;
  height: 96px;
  right: 9%;
  top: 34%;
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--hot-pink);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 6.6rem);
  color: #111653;
  text-shadow: 0 5px 0 rgba(255, 255, 255, 0.85);
}

.hero-copy {
  max-width: 680px;
  margin: 18px auto 0;
  color: #29306c;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.small-button,
.product-card button,
.newsletter button {
  border: 0;
  cursor: pointer;
  color: white;
  font-weight: 1000;
  border-radius: 999px;
  box-shadow: 0 13px 24px rgba(124, 94, 214, 0.22), inset 0 2px 0 rgba(255, 255, 255, 0.55);
}

.button {
  min-width: 190px;
  padding: 15px 24px;
}

.primary {
  background: linear-gradient(135deg, var(--hot-pink), #ff7ebe);
}

.secondary {
  background: linear-gradient(135deg, #33bdf4, var(--purple));
}

.hero-stats {
  width: min(760px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.86);
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
}

.hero-stats span {
  color: var(--muted);
  font-weight: 900;
}

.feature-row,
.section,
.site-footer {
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
}

.feature-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card,
.profile-card,
.milestone,
.book-page,
.games-section,
.about-section,
.newsletter,
.site-footer {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card h2 {
  font-size: 1.72rem;
  color: var(--hot-pink);
}

.feature-card p {
  color: var(--ink);
  font-weight: 800;
}

.feature-card a {
  display: inline-flex;
  margin-top: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  font-weight: 1000;
}

.floating-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 20px;
  background: white;
  font-size: 1.8rem;
  box-shadow: 0 12px 28px rgba(92, 84, 155, 0.16);
}

.section {
  margin-top: 54px;
}

.page-main {
  width: min(1180px, calc(100% - 28px));
  margin: 24px auto 54px;
}

.page-hero {
  position: relative;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 240, 249, 0.72)),
    url("assets/squishybar-rainbow-hero.png") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #29306c;
  font-size: 1.12rem;
  font-weight: 800;
}

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

.info-panel {
  padding: 24px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.info-panel h2,
.info-panel h3 {
  font-size: 1.9rem;
}

.info-panel p,
.info-panel li {
  color: var(--muted);
  font-weight: 800;
}

.info-panel ul {
  padding-left: 20px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.empty-cart {
  display: grid;
  place-items: center;
  min-height: 260px;
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading h2,
.games-copy h2,
.about-section h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section-heading p:not(.eyebrow),
.games-copy p,
.about-section p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
}

.book-shell {
  display: grid;
  gap: 12px;
}

.book-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.tab {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  font-weight: 1000;
  cursor: pointer;
}

.tab.active {
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.book {
  position: relative;
  padding-left: 24px;
  perspective: 1200px;
}

.book-spine {
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 36px;
  border-radius: 24px;
  background: linear-gradient(#ff8cc5, #9e79ff);
  box-shadow: inset -8px 0 12px rgba(69, 36, 124, 0.2);
}

.book-page {
  position: relative;
  min-height: 520px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 18px 32px 32px 18px;
  transform-origin: left center;
  transition: transform 0.36s ease, opacity 0.25s ease;
}

.book-page.turning {
  transform: rotateY(-5deg) translateX(8px);
  opacity: 0.82;
}

.page-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  align-items: baseline;
  margin-bottom: 22px;
}

.page-intro h3 {
  font-size: 2.3rem;
}

.page-intro p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.page-number {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--hot-pink);
  background: #fff0f8;
  font-weight: 1000;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(107, 85, 169, 0.14);
}

.product-image {
  min-height: 132px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.94) 0 14px, transparent 15px),
    linear-gradient(135deg, var(--toy-a), var(--toy-b));
  font-size: 3.6rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  padding: 5px 9px;
  border-radius: 999px;
  color: #7b2b72;
  background: #ffe6f5;
  font-size: 0.75rem;
  font-weight: 1000;
}

.product-card h4 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
}

.product-card p {
  min-height: 48px;
  margin: 0;
  color: #42487f;
  font-weight: 700;
}

.product-card button {
  width: 100%;
  margin-top: 4px;
  padding: 12px;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
}

.rewards-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.profile-card {
  padding: 26px;
  border-radius: var(--radius);
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 8px solid #ffc8ee;
  background: linear-gradient(135deg, #dff9ff, #fff2c9);
  font-size: 2.7rem;
}

.mini-label {
  margin: 0 0 4px;
  color: var(--hot-pink);
  font-weight: 1000;
}

.profile-top h3 {
  font-size: 2.5rem;
}

.profile-top p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.level-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.level-badge {
  min-height: 110px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: #ef348c;
  background: radial-gradient(circle, #fff7bc, #ffc7ee);
  border: 4px solid white;
  box-shadow: 0 13px 25px rgba(255, 92, 168, 0.2);
}

.level-badge span {
  align-self: end;
  font-weight: 1000;
}

.level-badge strong {
  align-self: start;
  font-family: "Baloo 2", cursive;
  font-size: 3rem;
}

.xp-label {
  display: flex;
  justify-content: space-between;
  color: var(--ink);
  font-weight: 1000;
}

.xp-bar {
  height: 28px;
  margin: 9px 0 8px;
  padding: 4px;
  border-radius: 999px;
  background: #f1e8ff;
  box-shadow: inset 0 2px 8px rgba(84, 61, 142, 0.12);
}

.xp-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hot-pink), #ff9fd1, var(--purple));
}

.xp-wrap p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.points-card {
  margin-top: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 14px;
  border-radius: 20px;
  background: #fff2fa;
  border: 1px solid var(--line);
}

.points-card span {
  color: var(--muted);
  font-weight: 900;
}

.points-card strong {
  font-family: "Baloo 2", cursive;
  font-size: 2.4rem;
  color: var(--purple);
}

.small-button {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 10px 15px;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
}

.milestone-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.milestone {
  min-height: 166px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.9) 0 18px, transparent 19px),
    rgba(255, 255, 255, 0.72);
}

.milestone span,
.milestone small {
  color: var(--purple);
  font-weight: 1000;
}

.milestone strong {
  display: block;
  margin: 18px 0 8px;
  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
}

.milestone.claimed {
  border-color: rgba(91, 210, 182, 0.55);
  background: linear-gradient(135deg, rgba(218, 255, 246, 0.86), rgba(255, 255, 255, 0.76));
}

.milestone.locked {
  opacity: 0.7;
}

.games-section,
.about-section,
.world-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
}

.world-section {
  grid-template-columns: 1fr 0.85fr;
}

.world-section img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 32px rgba(107, 85, 169, 0.14);
}

.world-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.world-section p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 800;
  font-size: 1.05rem;
}

.game-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.game-slots article {
  min-height: 180px;
  padding: 20px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 236, 247, 0.9), rgba(229, 250, 255, 0.9));
  border: 1px solid var(--line);
}

.game-slots span {
  font-size: 2.8rem;
}

.game-slots strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 1.28rem;
}

.game-slots small {
  color: var(--muted);
  font-weight: 900;
}

.about-section {
  margin-bottom: 54px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-strip span {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-weight: 1000;
}

.site-footer {
  margin-bottom: 20px;
  padding: 24px;
  border-radius: 34px 34px 0 0;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  align-items: center;
  gap: 24px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
}

.newsletter h2 {
  font-size: 2.1rem;
}

.newsletter p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter button {
  padding: 0 22px;
  background: linear-gradient(135deg, var(--hot-pink), #ff8ecb);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.footer-brand strong,
.footer-grid h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.26rem;
}

.footer-grid p,
.footer-grid a,
.legal {
  color: var(--muted);
  font-weight: 800;
}

.footer-grid a {
  display: block;
  margin-top: 8px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  padding: 14px 20px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  font-weight: 1000;
  box-shadow: var(--shadow);
  transform: translateY(90px);
  opacity: 0;
  transition: 0.24s ease;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .nav-links,
  .search-bar {
    grid-column: 1 / -1;
    order: 3;
  }

  .search-bar {
    order: 4;
  }

  .feature-row,
  .product-grid,
  .page-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rewards-layout,
  .games-section,
  .about-section,
  .world-section,
  .newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .promo-ribbon {
    justify-content: flex-start;
    overflow: hidden;
  }

  .nav-shell {
    width: calc(100% - 16px);
    margin-top: 8px;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    width: calc(100% - 16px);
    min-height: 620px;
    border-radius: 28px;
    padding: 28px 18px;
  }

  .hero-art {
    background-position: center top;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4.1rem);
  }

  .hero-stats,
  .feature-row,
  .product-grid,
  .page-grid,
  .milestone-board,
  .game-slots,
  .trust-strip,
  .footer-grid,
  .newsletter form {
    grid-template-columns: 1fr;
  }

  .book {
    padding-left: 12px;
  }

  .book-spine {
    width: 22px;
  }

  .page-intro {
    grid-template-columns: 1fr;
  }

  .page-intro p {
    grid-column: 1;
  }

  .level-row {
    grid-template-columns: 1fr;
  }

  .legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Homepage world inspired by the supplied pastel reference art. */
.home-page {
  background:
    radial-gradient(circle at 14% 9%, rgba(255, 91, 166, 0.34), transparent 19%),
    radial-gradient(circle at 86% 15%, rgba(127, 183, 255, 0.38), transparent 22%),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(132deg, #ffb3d9 0%, #ffc8e9 18%, #d8edff 38%, #fff0b8 55%, #bdf5dc 72%, #d9c6ff 100%);
}

.home-page::before,
.home-page::after {
  content: "";
  position: fixed;
  left: -4vw;
  right: -4vw;
  z-index: -1;
  pointer-events: none;
  opacity: 0.82;
}

.home-page::before {
  top: 210px;
  height: 260px;
  background:
    radial-gradient(circle at 6% 80%, rgba(255,255,255,0.72) 0 68px, transparent 70px),
    radial-gradient(circle at 17% 88%, rgba(255,255,255,0.64) 0 90px, transparent 92px),
    radial-gradient(circle at 33% 92%, rgba(255,255,255,0.58) 0 78px, transparent 80px),
    radial-gradient(circle at 53% 86%, rgba(255,255,255,0.64) 0 94px, transparent 96px),
    radial-gradient(circle at 75% 90%, rgba(255,255,255,0.58) 0 84px, transparent 86px),
    radial-gradient(circle at 92% 82%, rgba(255,255,255,0.72) 0 76px, transparent 78px);
}

.home-page::after {
  bottom: -34px;
  height: 210px;
  background:
    radial-gradient(circle at 8% 74%, rgba(255,255,255,0.62) 0 72px, transparent 74px),
    radial-gradient(circle at 23% 92%, rgba(255,255,255,0.58) 0 88px, transparent 90px),
    radial-gradient(circle at 45% 82%, rgba(255,255,255,0.58) 0 96px, transparent 98px),
    radial-gradient(circle at 66% 94%, rgba(255,255,255,0.58) 0 84px, transparent 86px),
    radial-gradient(circle at 88% 80%, rgba(255,255,255,0.66) 0 90px, transparent 92px);
}

.home-clouds {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(255,255,255,0.42) 0 32px, transparent 35px),
    radial-gradient(circle at 21% 18%, rgba(255,255,255,0.36) 0 18px, transparent 20px),
    radial-gradient(circle at 76% 9%, rgba(255,255,255,0.48) 0 24px, transparent 27px),
    radial-gradient(circle at 86% 31%, rgba(255,255,255,0.42) 0 30px, transparent 33px),
    radial-gradient(circle at 9% 58%, rgba(255,255,255,0.36) 0 22px, transparent 25px),
    radial-gradient(circle at 94% 64%, rgba(255,255,255,0.38) 0 30px, transparent 33px);
}

.home-header,
.home-main,
.home-footer {
  width: min(1520px, calc(100% - 54px));
  margin-inline: auto;
}

.home-header {
  padding-top: 24px;
}

.home-logo {
  width: min(650px, 78vw);
  height: 190px;
  display: block;
  margin: 0 auto 8px;
  filter: drop-shadow(0 14px 0 rgba(255, 255, 255, 0.68)) drop-shadow(0 24px 34px rgba(77, 45, 133, 0.18));
}

.home-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-nav {
  width: min(1020px, 100%);
  min-height: 68px;
  margin: 0 auto;
  padding: 9px 14px;
  display: grid;
  grid-template-columns: 50px auto auto auto auto minmax(240px, 1fr) 46px 46px;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(124, 88, 176, 0.18);
  backdrop-filter: blur(18px);
}

.home-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 999px;
  color: #12175a;
  font-weight: 1000;
}

.home-nav a span {
  color: var(--purple);
}

.home-nav a:hover,
.home-nav a:focus-visible {
  background: rgba(255,255,255,0.82);
  color: var(--hot-pink);
}

.round-home,
.nav-circle {
  width: 44px;
  padding: 0 !important;
  background: white;
  border: 1px solid rgba(117, 91, 170, 0.14);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.8), 0 8px 18px rgba(111, 83, 168, 0.12);
}

.round-home {
  color: white !important;
  background: linear-gradient(135deg, #ff5aa6, #ff8ecb);
}

.home-search input {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(105, 93, 161, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255,255,255,0.88);
  box-shadow: inset 0 2px 10px rgba(104, 89, 155, 0.08);
}

.home-main {
  padding-top: 28px;
}

.home-hero {
  position: relative;
  min-height: 315px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px 18px 26px;
}

.home-hero .eyebrow {
  margin: 0;
  color: #15165d;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1;
  font-family: "Baloo 2", cursive;
  text-transform: none;
  text-shadow: 0 4px 0 rgba(255,255,255,0.85);
}

.home-hero h1 {
  max-width: 880px;
  margin: 2px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  text-shadow: 0 4px 0 rgba(255,255,255,0.8);
}

.home-hero h1::first-line {
  color: var(--hot-pink);
}

.home-hero .hero-copy {
  max-width: 640px;
  margin-top: 12px;
  color: #14195a;
  font-weight: 900;
}

.home-hero .hero-actions {
  margin-top: 20px;
}

.home-hero .button {
  min-width: 220px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  border: 3px solid rgba(255,255,255,0.88);
}

.bubble,
.star-pop,
.kawaii-friend {
  position: absolute;
  pointer-events: none;
}

.bubble {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 25%, rgba(255,255,255,0.98) 0 10px, transparent 11px),
    radial-gradient(circle at 65% 70%, rgba(255,255,255,0.45), transparent 45%),
    linear-gradient(135deg, rgba(255,138,204,0.42), rgba(97,217,255,0.42), rgba(255,236,127,0.36));
  border: 4px solid rgba(255,255,255,0.74);
  box-shadow: inset -7px -8px 12px rgba(89, 107, 206, 0.14), 0 8px 18px rgba(99, 81, 154, 0.12);
  animation: floaty 5s ease-in-out infinite;
}

.bubble-one { left: 7%; top: 5%; }
.bubble-two { right: 14%; top: 16%; width: 72px; animation-delay: -1.5s; }
.bubble-three { right: 5%; bottom: 4%; width: 48px; animation-delay: -3s; }

.star-pop {
  color: white;
  font-size: 2.2rem;
  text-shadow: 0 2px 8px rgba(133, 90, 181, 0.18);
}

.star-one { left: 23%; top: 44%; }
.star-two { right: 28%; top: 38%; color: #ff6fac; }

.kawaii-friend {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 44% 50% 48% 46%;
  font-size: 2.2rem;
  color: #20205d;
  background: linear-gradient(135deg, #ff8fc7, #ffc4df);
  border: 4px solid rgba(255,255,255,0.78);
  box-shadow: 0 20px 34px rgba(119, 87, 170, 0.18);
}

.kawaii-friend::before {
  content: "•  •";
  position: absolute;
  top: 35px;
  font-size: 1.25rem;
}

.kawaii-friend.cat {
  left: 9%;
  top: -8px;
}

.kawaii-friend.cat::after {
  content: "";
  position: absolute;
  inset: -18px 20px auto;
  height: 36px;
  background:
    linear-gradient(135deg, transparent 49%, #ff8fc7 50%) left / 50% 100% no-repeat,
    linear-gradient(45deg, #ff8fc7 50%, transparent 51%) right / 50% 100% no-repeat;
}

.kawaii-friend.cloud {
  right: 9%;
  top: 18px;
  border-radius: 44px;
  background: linear-gradient(135deg, #ffffff, #d9f2ff);
}

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

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.art-feature-grid {
  gap: 18px;
}

.art-feature-card {
  position: relative;
  min-height: 244px;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.52);
  border: 3px solid rgba(255,255,255,0.74);
  box-shadow: 0 22px 46px rgba(124, 88, 176, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.art-feature-card:hover,
.art-feature-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(124, 88, 176, 0.22);
}

.art-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 244px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.art-feature-card span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff3f91, #ff7fbd);
  border: 2px solid rgba(255,255,255,0.78);
  font-weight: 1000;
  box-shadow: 0 12px 22px rgba(184, 66, 139, 0.22), inset 0 2px 0 rgba(255,255,255,0.45);
}

.home-feature-card {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 12px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.45);
  border: 2px solid rgba(255,255,255,0.58);
  box-shadow: 0 18px 42px rgba(124, 88, 176, 0.14);
  backdrop-filter: blur(14px);
}

.home-feature-card h2 {
  color: var(--hot-pink);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.club-card h2,
.booth-card h2 {
  color: #6643ef;
}

.home-feature-card p {
  color: #12175a;
  font-size: 0.9rem;
  font-weight: 900;
}

.home-feature-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--hot-pink);
  font-size: 0.86rem;
}

.home-feature-card a {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--hot-pink), #ff7ebe);
  font-size: 0.78rem;
  font-weight: 1000;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.5), 0 8px 18px rgba(184, 66, 139, 0.16);
}

.feature-illustration {
  min-height: 150px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 22px;
}

.feature-illustration span {
  position: relative;
  z-index: 1;
}

.gift-box {
  color: #7250d8;
  background: linear-gradient(135deg, #d9b8ff, #ffb8df);
  font-size: 4.2rem;
}

.gift-box small {
  position: absolute;
  bottom: 26px;
  color: white;
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.club-pass {
  transform: rotate(-8deg);
  color: white;
  background: linear-gradient(135deg, #8e62ff, #b78cff);
  border: 3px solid rgba(255,255,255,0.55);
  box-shadow: 0 16px 24px rgba(96, 63, 184, 0.2);
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 0.9;
}

.shop-booth {
  color: #1a1a5c;
  background:
    linear-gradient(90deg, #ff8abd 0 12%, #fff 12% 24%, #ff8abd 24% 36%, #fff 36% 48%, #ff8abd 48% 60%, #fff 60% 72%, #ff8abd 72% 84%, #fff 84%) top / 100% 35% no-repeat,
    linear-gradient(#ffd5e9, #d5ebff);
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
  line-height: 0.9;
  text-align: center;
}

.boba-news {
  grid-template-columns: 1fr 1fr;
  color: var(--hot-pink);
  background: linear-gradient(135deg, #ffd1e8, #fff2b8);
  font-size: 3.4rem;
}

.boba-news small {
  font-size: 3rem;
}

.home-signup {
  margin-top: 28px;
  min-height: 126px;
  display: grid;
  grid-template-columns: 150px 1fr minmax(360px, 520px) 120px;
  gap: 18px;
  align-items: center;
  padding: 18px 28px;
  border-radius: 34px;
  background: rgba(255,255,255,0.42);
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 18px 42px rgba(124, 88, 176, 0.12);
  backdrop-filter: blur(14px);
}

.home-signup h2 {
  font-size: 2.2rem;
}

.home-signup p {
  margin: 2px 0 0;
  color: #12175a;
  font-weight: 900;
}

.home-signup form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 999px;
  background: white;
  box-shadow: inset 0 2px 10px rgba(104, 89, 155, 0.08), 0 10px 22px rgba(124, 88, 176, 0.12);
}

.home-signup input {
  min-height: 58px;
  border: 0;
  padding: 0 18px;
}

.home-signup button {
  border: 0;
  padding: 0 24px;
  color: white;
  background: linear-gradient(135deg, #ff75b8, #ff4d9c);
  font-weight: 1000;
  cursor: pointer;
  border-radius: 999px;
}

.home-signup button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter-status {
  position: absolute;
  left: 20px;
  bottom: -28px;
  margin: 0;
  color: #4f527f;
  font-size: 0.86rem;
  font-weight: 900;
}

.newsletter-status[data-status="success"] {
  color: #087d74;
}

.newsletter-status[data-status="error"] {
  color: #ff3f9b;
}

.green-friend {
  justify-self: center;
  width: 118px;
  height: 86px;
  display: grid;
  place-items: center;
  color: #1b8a71;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(135deg, #b9ff7a, #4bd8bd, #7bdcff);
  border: 4px solid rgba(255,255,255,0.58);
  box-shadow: 0 18px 28px rgba(81, 119, 136, 0.14);
}

.green-friend::before {
  content: "•  •";
  color: #18205d;
  font-size: 1.25rem;
}

.mail-friend {
  justify-self: center;
  color: #ff5ca8;
  font-size: 4rem;
  transform: rotate(-14deg);
  text-shadow: 0 10px 18px rgba(124, 88, 176, 0.14);
}

.home-trust-row {
  width: min(1200px, 100%);
  margin: 28px auto 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  border-radius: 28px;
  background: rgba(255,255,255,0.48);
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 18px 42px rgba(124, 88, 176, 0.12);
  backdrop-filter: blur(14px);
}

.home-trust-row div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  align-items: center;
  min-height: 56px;
}

.home-trust-row span {
  grid-row: span 2;
  font-size: 2rem;
}

.home-trust-row strong {
  color: #12175a;
  font-weight: 1000;
}

.home-trust-row small {
  color: var(--muted);
  font-weight: 900;
}

.home-footer {
  position: relative;
  margin-top: 28px;
  margin-bottom: 18px;
  padding: 34px 42px 24px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.58), rgba(232,248,255,0.38), rgba(255,244,208,0.28));
  border: 3px solid rgba(255,255,255,0.62);
  box-shadow: 0 18px 42px rgba(124, 88, 176, 0.1);
  backdrop-filter: blur(12px);
}

.footer-logo {
  margin-bottom: 18px;
  color: #f8fbff;
  -webkit-text-stroke: 1.4px #17194d;
  text-shadow: 0 3px 0 #17194d, 0 14px 20px rgba(124, 88, 176, 0.16);
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.9;
}

.home-footer .footer-grid {
  width: min(720px, 100%);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
}

.home-footer .footer-grid h3 {
  color: #12175a;
}

.thanks-cloud {
  position: absolute;
  right: 42px;
  top: 52px;
  min-width: 300px;
  padding: 28px 30px;
  border-radius: 48px;
  color: #12175a;
  text-align: center;
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffe0f3, #d9f4ff, #d6fff0);
  border: 3px solid rgba(255,255,255,0.78);
  box-shadow: 0 18px 36px rgba(124, 88, 176, 0.14);
}

.home-footer .legal {
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .home-nav {
    grid-template-columns: 50px repeat(4, auto) 1fr 46px 46px;
  }

  .home-feature-grid,
  .art-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-signup,
  .home-trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .thanks-cloud {
    position: static;
    width: min(360px, 100%);
    margin-top: 22px;
  }
}

@media (max-width: 860px) {
  .home-header,
  .home-main,
  .home-footer {
    width: min(100% - 22px, 760px);
  }

  .home-logo {
    height: 140px;
  }

  .home-nav {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    border-radius: 30px;
  }

  .home-search {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-feature-grid,
  .art-feature-grid,
  .home-feature-card,
  .home-signup,
  .home-trust-row,
  .home-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .kawaii-friend {
    display: none;
  }

  .home-hero {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .home-logo {
    width: 94vw;
    height: 112px;
  }

  .home-nav {
    gap: 6px;
  }

  .home-nav a:not(.round-home):not(.nav-circle) {
    font-size: 0.86rem;
    padding-inline: 8px;
  }

  .home-hero .button {
    width: min(100%, 280px);
  }

  .home-feature-card,
  .home-signup,
  .home-footer {
    padding: 20px;
  }
}

/* Final homepage polish: cleaner logo crop, image-card sizing, teddy signup, and footer v2. */
.home-logo {
  width: min(360px, 58vw);
  height: 188px;
  margin-bottom: 0;
  filter: drop-shadow(0 16px 20px rgba(50, 54, 95, 0.18));
}

.home-logo img {
  object-fit: contain;
}

.home-nav {
  margin-top: -10px;
}

.art-feature-grid {
  gap: 18px;
}

.art-feature-card {
  aspect-ratio: 1.48;
  min-height: 0;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(103, 93, 160, 0.13);
}

.art-feature-card img {
  min-height: 0;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.art-feature-card span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 118px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff3f91, #ff72ba);
  border: 2px solid rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 1000;
  box-shadow: 0 12px 22px rgba(184, 66, 139, 0.22), inset 0 2px 0 rgba(255,255,255,0.48);
}

.home-signup {
  grid-template-columns: 150px 1fr minmax(360px, 520px) 96px;
  min-height: 132px;
  padding: 18px 34px;
  background: rgba(255, 255, 255, 0.54);
}

.teddy-friend {
  justify-self: center;
  width: 116px;
  height: 94px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2ddff, #e7f5ff);
  border: 4px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 30px rgba(112, 84, 174, 0.18);
}

.teddy-friend img {
  width: 150%;
  height: 150%;
  object-fit: cover;
  object-position: center 42%;
  transform: translate(-16%, -19%);
}

.green-friend,
.green-friend::before {
  display: none;
}

.home-trust-row {
  width: min(1200px, calc(100% - 170px));
  margin-top: 32px;
  padding: 22px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 246, 0.72);
  border: 3px solid rgba(255, 255, 255, 0.72);
}

.home-trust-row div {
  grid-template-columns: 58px 1fr;
  min-height: 72px;
  padding-inline: 8px;
}

.home-trust-row span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 240, 250, 0.78);
  font-size: 1.65rem;
}

.home-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.8fr);
  column-gap: 44px;
  row-gap: 20px;
  align-items: start;
  min-height: 0;
  padding: 58px 70px 34px;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 88%, rgba(223, 204, 255, 0.76) 0 80px, transparent 84px),
    radial-gradient(circle at 91% 88%, rgba(255, 215, 238, 0.66) 0 94px, transparent 98px),
    linear-gradient(135deg, rgba(255, 252, 238, 0.82), rgba(220, 252, 244, 0.66), rgba(232, 224, 255, 0.74));
  border: 3px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 58px rgba(108, 91, 168, 0.16);
}

.footer-brand-block {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
}

.footer-brand-block img {
  width: min(280px, 100%);
  height: 112px;
  object-fit: contain;
  object-position: left center;
  margin-left: -18px;
}

.footer-brand-block p {
  max-width: 250px;
  margin: 14px 0 0;
  color: #4f527f;
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 800;
}

.home-footer .footer-grid {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.home-footer .footer-grid > div {
  padding-left: 28px;
  border-left: 1px dashed rgba(255, 120, 184, 0.34);
}

.home-footer .footer-grid h3 {
  margin: 0 0 14px;
  color: #7a4ce7;
  font-size: 1.55rem;
}

.home-footer .footer-grid a {
  position: relative;
  margin-top: 12px;
  padding: 0 0 9px 28px;
  border-bottom: 1px dashed rgba(255, 120, 184, 0.26);
  color: #4f527f;
  font-size: 1.03rem;
}

.home-footer .footer-grid a::before {
  content: "\2661";
  position: absolute;
  left: 0;
  color: #ff8fc7;
}

.footer-mascot {
  display: none;
}

.copyright-pill {
  grid-column: 2 / 3;
  justify-self: center;
  width: min(100%, 360px);
  min-width: 0;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #4f527f;
  text-align: center;
  background: rgba(255, 255, 255, 0.54);
  border: 2px dashed rgba(255, 120, 184, 0.34);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-logo,
.thanks-cloud,
.home-footer .legal {
  display: none;
}

@media (max-width: 1180px) {
  .art-feature-card {
    aspect-ratio: 1.52;
  }

  .home-trust-row {
    width: 100%;
  }

  .home-footer {
    grid-template-columns: 1fr;
    padding: 42px 34px 34px;
  }

  .footer-brand-block,
  .home-footer .footer-grid {
    grid-column: 1;
  }

  .footer-brand-block {
    grid-row: 1;
  }

  .home-footer .footer-grid {
    grid-row: 2;
  }

  .copyright-pill {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (max-width: 860px) {
  .home-logo {
    width: min(330px, 76vw);
    height: 160px;
  }

  .home-signup {
    grid-template-columns: 120px 1fr;
  }

  .home-signup form {
    grid-column: 1 / -1;
  }

  .mail-friend {
    display: none;
  }

  .home-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .copyright-pill {
    min-width: 0;
    width: 100%;
  }

}

@media (max-width: 560px) {
  .home-logo {
    height: 130px;
  }

  .art-feature-card {
    padding: 12px;
  }

  .home-signup {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .teddy-friend {
    margin: 0 auto;
  }

  .footer-mascot {
    display: none;
  }

  .copyright-pill {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

/* Clean asset pass: use the transparent logo/teddy and match the latest card/footer sizing. */
.home-logo {
  width: min(340px, 56vw);
  height: 150px;
}

.home-nav {
  margin-top: -6px;
}

.art-feature-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.art-feature-card {
  aspect-ratio: 1.48;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
}

.art-feature-card img {
  border-radius: 18px;
  object-fit: cover;
}

.home-signup {
  width: min(1500px, calc(100% - 22px));
  grid-template-columns: 134px 1fr minmax(360px, 520px) 94px;
}

.teddy-friend {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.98), rgba(239,229,255,0.82));
}

.teddy-friend img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
  transform: translate(4%, 8%);
}

.footer-brand-block img {
  width: min(250px, 100%);
  height: 108px;
  margin-left: -8px;
}

.footer-mascot {
  width: 104px;
  height: 104px;
  object-fit: contain;
  padding: 8px;
}

@media (max-width: 860px) {
  .home-logo {
    width: min(310px, 75vw);
    height: 132px;
  }

  .art-feature-grid {
    width: min(560px, 100%);
    grid-template-columns: 1fr;
  }

  .home-signup {
    width: min(100%, 760px);
  }
}

@media (max-width: 560px) {
  .home-logo {
    height: 118px;
  }

  .art-feature-card {
    padding: 14px;
  }
}

/* Make the homepage artwork cards feel larger and less swallowed by white space. */
.art-feature-grid {
  width: min(1320px, 100%);
  gap: 20px;
}

.art-feature-card {
  aspect-ratio: 1.68;
  padding: 6px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.art-feature-card img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1180px) {
  .art-feature-grid {
    width: min(1040px, 100%);
  }
}

@media (max-width: 860px) {
  .art-feature-grid {
    width: min(620px, 100%);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .art-feature-card {
    padding: 5px;
    aspect-ratio: 1.5;
  }
}

/* Fill the entire card box with the supplied artwork. */
.art-feature-card {
  aspect-ratio: 1.92;
  padding: 0;
  background: transparent;
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 24px;
}

.art-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.find-us-card img {
  object-fit: cover;
  object-position: center;
  transform: none;
  background: transparent;
}

@media (max-width: 560px) {
  .art-feature-card {
    padding: 0;
    aspect-ratio: 1.75;
  }
}

/* Menu page v2: category shop grid with Shopify-ready product cards. */
.menu-page .home-nav a[aria-current="page"] {
  color: #ff3f9b;
}

.menu-main {
  display: grid;
  gap: 24px;
}

.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: clamp(26px, 5vw, 52px);
  border-radius: 34px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 134, 196, 0.24), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(126, 242, 218, 0.26), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,241,250,0.48), rgba(235,255,247,0.54));
  box-shadow: 0 22px 56px rgba(85, 70, 145, 0.12);
  backdrop-filter: blur(12px);
}

.menu-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.menu-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: #34396f;
  font-size: 1.12rem;
  font-weight: 850;
}

.menu-hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,0.8);
  background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(224,246,255,0.52));
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.8), 0 18px 34px rgba(104, 86, 169, 0.12);
  overflow: hidden;
}

.menu-hero-card img {
  width: min(190px, 78%);
  filter: drop-shadow(0 16px 20px rgba(85, 70, 145, 0.16));
}

.menu-hero-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ff4aa0;
  color: white;
  font-weight: 1000;
  box-shadow: 0 12px 22px rgba(255, 63, 155, 0.22);
}

.shop-catalog {
  padding: clamp(22px, 4vw, 42px);
  border-radius: 34px;
  border: 3px solid rgba(255,255,255,0.68);
  background:
    radial-gradient(circle at 8% 96%, rgba(223,204,255,0.52) 0 96px, transparent 100px),
    radial-gradient(circle at 98% 4%, rgba(255,215,239,0.5) 0 120px, transparent 124px),
    linear-gradient(135deg, rgba(255,255,255,0.7), rgba(238,252,255,0.52), rgba(255,250,225,0.4));
  box-shadow: 0 22px 56px rgba(85, 70, 145, 0.1);
  backdrop-filter: blur(12px);
}

.catalog-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 20px;
  align-items: end;
}

.catalog-topline h2 {
  margin: 0;
  color: #7a4ce7;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.catalog-topline p:not(.eyebrow) {
  max-width: 720px;
  margin: 4px 0 0;
  color: #4f527f;
  font-weight: 850;
}

.shopify-note {
  padding: 18px 20px;
  border-radius: 24px;
  border: 2px dashed rgba(255, 120, 184, 0.42);
  background: rgba(255,255,255,0.64);
  color: #4f527f;
}

.shopify-note strong,
.shopify-note span {
  display: block;
}

.shopify-note strong {
  color: #13175e;
  font-size: 1.05rem;
}

.shopify-note span {
  margin-top: 4px;
  font-weight: 800;
  line-height: 1.35;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 24px;
}

.category-tabs .tab {
  border: 0;
  cursor: pointer;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: #161b61;
  font-family: "Baloo 2", cursive;
  font-size: 1rem;
  font-weight: 1000;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.76), 0 12px 24px rgba(110, 91, 166, 0.1);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.category-tabs .tab:hover {
  transform: translateY(-2px);
}

.category-tabs .tab.active {
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  color: white;
}

.shop-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.shop-product-grid.is-switching {
  opacity: 0.35;
  transform: translateY(4px);
}

.shop-product-card {
  position: relative;
  grid-template-rows: auto 1fr auto;
  min-height: 430px;
  padding: 14px;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 38px rgba(103, 93, 160, 0.13);
}

.shop-product-card .product-image {
  position: relative;
  min-height: 188px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 20%, rgba(255,255,255,0.82) 0 18px, transparent 20px),
    radial-gradient(circle at 74% 22%, rgba(255,255,255,0.62) 0 30px, transparent 32px),
    linear-gradient(135deg, var(--toy-a), var(--toy-b));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.62);
}

.shop-product-card .product-image::before,
.shop-product-card .product-image::after {
  content: "";
  position: absolute;
  border-radius: 999px 999px 0 0;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.44);
}

.shop-product-card .product-image::before {
  width: 120px;
  height: 64px;
  left: -18px;
  bottom: -2px;
}

.shop-product-card .product-image::after {
  width: 150px;
  height: 80px;
  right: -30px;
  bottom: -8px;
}

.toy-symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 32px;
  background: rgba(255,255,255,0.56);
  color: #7a4ce7;
  font-family: "Baloo 2", cursive;
  font-size: 2.35rem;
  font-weight: 1000;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.74), 0 15px 26px rgba(92, 73, 150, 0.14);
}

.shop-product-card .product-image small {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: #14185c;
  font-weight: 1000;
}

.shop-product-card .product-image.has-photo img,
.product-gallery-main.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-product-card .product-image.has-photo small {
  display: none;
}

.product-gallery-main.has-photo img {
  position: static;
  display: block;
}

.wishlist-button {
  position: static;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,0.82);
  color: #ff4aa0;
  font-size: 1.18rem;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(104, 86, 169, 0.14), inset 0 2px 0 rgba(255,255,255,0.8);
}

.wishlist-button.active {
  background: linear-gradient(135deg, #ff4aa0, #ff8fc7);
  color: white;
}

.product-info {
  display: grid;
  gap: 8px;
  padding: 4px 4px 0;
}

.shop-product-card h3 {
  margin: 0;
  color: #13175e;
  font-size: 1.45rem;
  line-height: 1;
  display: -webkit-box;
  min-height: 2.02em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shop-product-card .product-meta {
  align-items: center;
  color: #616599;
}

.shop-product-card .product-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(234, 226, 255, 0.72);
  color: #7a4ce7;
  font-weight: 1000;
}

.shop-product-card .product-meta strong {
  color: #ff3f9b;
  font-size: 1.24rem;
}

.shop-product-card p {
  min-height: 0;
  color: #444979;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.add-cart-button {
  flex: 1 1 auto;
  width: auto;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  color: white;
  font-family: "Baloo 2", cursive;
  font-size: 1.04rem;
  font-weight: 1000;
  box-shadow: 0 14px 26px rgba(124, 94, 214, 0.22), inset 0 2px 0 rgba(255,255,255,0.5);
}

.add-cart-button:disabled,
.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  filter: grayscale(0.25);
}

.shop-product-card .product-actions .add-cart-button {
  width: auto;
  margin-top: 0;
  padding: 12px 18px;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
}

.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #7a4ce7;
  background: rgba(240, 230, 255, 0.86);
  font-family: "Baloo 2", cursive;
  font-weight: 1000;
}

.shop-product-card .product-actions .wishlist-button {
  width: 46px;
  height: 46px;
  min-height: 46px;
  margin-top: 0;
  padding: 0;
  background: rgba(255,255,255,0.86);
  color: #ff4aa0;
}

.shop-product-card .product-actions .wishlist-button.active {
  background: linear-gradient(135deg, #ff4aa0, #ff8fc7);
  color: white;
}

@media (max-width: 1240px) {
  .shop-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-hero,
  .catalog-topline {
    grid-template-columns: 1fr;
  }

  .menu-hero-card {
    min-height: 180px;
  }

  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .menu-hero,
  .shop-catalog {
    border-radius: 26px;
  }

  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .category-tabs .tab {
    flex: 0 0 auto;
  }
}

/* Homepage cleanup: keep sparkles, remove the oversized transparent cloud circles. */
.home-page::before,
.home-page::after {
  display: none;
}

.home-page .home-clouds {
  display: none;
}

.sparkle-field {
  opacity: 0.88;
  background-image:
    radial-gradient(circle at 2% 9%, rgba(255,255,255,0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 4% 32%, rgba(255,255,255,0.72) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 8% 41%, rgba(255,255,255,0.86) 0 2px, transparent 3px),
    radial-gradient(circle at 11% 72%, rgba(255,120,184,0.3) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 14% 17%, rgba(255,255,255,0.74) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 63%, rgba(255,120,184,0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 44%, rgba(255,255,255,0.72) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 23% 28%, rgba(135,120,255,0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 8%, rgba(255,255,255,0.7) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 31% 74%, rgba(255,255,255,0.82) 0 2px, transparent 3px),
    radial-gradient(circle at 36% 10%, rgba(255,120,184,0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 39% 39%, rgba(255,255,255,0.68) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 43% 52%, rgba(255,255,255,0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 49% 19%, rgba(135,120,255,0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 52% 77%, rgba(255,255,255,0.72) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 57% 67%, rgba(255,120,184,0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 7%, rgba(255,255,255,0.7) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 63% 34%, rgba(255,255,255,0.92) 0 2px, transparent 3px),
    radial-gradient(circle at 71% 12%, rgba(255,255,255,0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 73% 49%, rgba(255,255,255,0.68) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 76% 58%, rgba(135,120,255,0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 83%, rgba(255,120,184,0.28) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 84% 26%, rgba(255,120,184,0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 7%, rgba(255,255,255,0.72) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 91% 70%, rgba(255,255,255,0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 94% 54%, rgba(135,120,255,0.2) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 98% 42%, rgba(255,255,255,0.76) 0 2px, transparent 3px),
    radial-gradient(circle at 6% 84%, rgba(255,255,255,0.66) 0 1px, transparent 2px),
    radial-gradient(circle at 16% 6%, rgba(255,120,184,0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 26% 55%, rgba(255,255,255,0.64) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 22%, rgba(135,120,255,0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 46% 86%, rgba(255,120,184,0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 44%, rgba(255,255,255,0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 78%, rgba(255,255,255,0.64) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 39%, rgba(255,255,255,0.62) 0 1px, transparent 2px),
    radial-gradient(circle at 96% 14%, rgba(255,120,184,0.24) 0 1px, transparent 2px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: scatteredSparkles 18s ease-in-out infinite alternate;
}

@keyframes scatteredSparkles {
  from { transform: translate3d(0, 0, 0); opacity: 0.72; }
  to { transform: translate3d(10px, -8px, 0); opacity: 0.92; }
}

[hidden],
.account-page.is-account-signed-in [data-account-logged-out],
.account-page.is-account-signed-out [data-account-logged-in] {
  display: none !important;
}

.star-one {
  left: 16%;
  top: 64%;
}

/* Account dashboard page inspired by the Squish Club profile reference. */
.account-page .home-nav .nav-circle[aria-current="page"] {
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  color: white;
}

.account-main {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.account-hero,
.account-panel {
  border: 3px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  border-radius: 34px;
}

.account-profile {
  display: flex;
  align-items: center;
  gap: 22px;
}

.account-avatar {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 156px;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  border: 10px solid #ffb9e6;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.82) 0 16px, transparent 18px),
    linear-gradient(135deg, #bfeeff, #ffe3f3);
  box-shadow: 0 18px 34px rgba(124, 88, 176, 0.15);
}

.account-avatar span {
  font-size: 4.5rem;
}

.account-avatar button {
  position: absolute;
  right: 2px;
  bottom: 6px;
  width: 42px;
  height: 42px;
  border: 3px solid white;
  border-radius: 50%;
  background: #f5f8ff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(96, 83, 150, 0.16);
}

.account-profile h1 {
  margin: 0;
  color: #13175e;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.9;
}

.account-profile p:not(.eyebrow) {
  margin: 6px 0 12px;
  color: #252b6c;
  font-weight: 850;
}

.account-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-badges span,
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #6739d7;
  background: #eadfff;
  font-weight: 1000;
}

.account-badges span:nth-child(2) {
  color: #087d74;
  background: #c6fbf2;
}

.account-badges span.locked {
  color: #9a9daa;
  background: #eeeeef;
  filter: grayscale(0.25);
  opacity: 0.86;
}

.account-badges .locked {
  color: #9699a7;
  background: #eeeeef;
}

.is-account-signed-in [data-account-saves-panel] {
  display: none;
}

.account-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.account-auth-actions .account-button {
  border: 0;
}

.account-button.soft {
  color: #7a4ce7;
  background: rgba(255,255,255,0.76);
  border: 2px solid rgba(138,101,255,0.18);
  cursor: pointer;
}

.account-dashboard-hero {
  position: relative;
  background:
    radial-gradient(circle at 86% 20%, rgba(198,251,242,0.72), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,239,249,0.58));
}

.account-signout-corner {
  position: absolute;
  right: 26px;
  bottom: 12px;
}

.account-callback-card {
  grid-template-columns: 1fr;
  min-height: 360px;
}

.account-level-card {
  display: grid;
  grid-template-columns: 142px 1fr 118px;
  gap: 18px;
  align-items: center;
  min-height: 156px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,244,252,0.72));
  border: 2px solid rgba(255,255,255,0.82);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.8);
}

.level-medal {
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border-radius: 42% 46% 48% 44%;
  color: #ff3f9b;
  background:
    radial-gradient(circle at 50% 42%, #fff4a6 0 42px, transparent 43px),
    linear-gradient(135deg, #fff1a6, #ff86c1);
  border: 5px solid rgba(255,255,255,0.86);
  box-shadow: 0 18px 30px rgba(255, 79, 153, 0.18);
}

.level-medal span {
  align-self: end;
  margin-bottom: -18px;
  font-weight: 1000;
}

.level-medal strong {
  font-family: "Baloo 2", cursive;
  font-size: 4rem;
  line-height: 0.82;
}

.level-progress {
  display: grid;
  gap: 10px;
}

.level-progress div:first-child {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.level-progress strong {
  color: #5e45f3;
  font-family: "Baloo 2", cursive;
  font-size: 2.4rem;
  line-height: 1;
}

.level-progress span,
.level-progress p {
  color: #252b6c;
  font-weight: 900;
}

.level-progress p {
  margin: 0;
  text-align: center;
}

.level-progress p b {
  color: #5e45f3;
}

.account-level-card .xp-bar {
  height: 26px;
  padding: 3px;
  border-radius: 999px;
  background: #f1e6ff;
  box-shadow: inset 0 2px 8px rgba(84, 61, 142, 0.12);
}

.account-level-card .xp-bar span {
  height: 100%;
  border-radius: inherit;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 18px, transparent 18px 36px),
    linear-gradient(90deg, #ff3f9b, #ff8fc7, #8a65ff);
}

.account-level-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 999px;
  background: #f5e7ff;
}

.account-preview-card .level-progress strong {
  color: #13175e;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.account-preview-card .xp-bar span {
  min-width: 0;
}

.account-panel {
  border-radius: 28px;
  padding: 18px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-heading h2 {
  margin: 0;
  color: #13175e;
  font-size: 1.45rem;
  line-height: 1.05;
}

.panel-heading a {
  color: #7a4ce7;
  font-size: 0.9rem;
  font-weight: 1000;
}

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

.account-save-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.account-save-grid article {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  border-radius: 24px;
  text-align: center;
  color: #4f527f;
  background: rgba(255,255,255,0.68);
  border: 2px solid rgba(255,255,255,0.84);
}

.account-save-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff3a9, #ffd2ec);
  font-size: 1.6rem;
}

.account-save-grid strong {
  color: #13175e;
  font-size: 1.05rem;
}

.account-save-grid small {
  font-weight: 850;
}

.reward-tile {
  position: relative;
  min-height: 170px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border-radius: 22px;
  border: 2px solid rgba(223, 216, 239, 0.78);
  background: rgba(255,255,255,0.66);
  text-align: center;
}

.reward-tile.claimed {
  border-color: rgba(86, 210, 185, 0.52);
  background: linear-gradient(135deg, rgba(220,255,249,0.74), rgba(255,255,255,0.68));
}

.reward-tile.locked::after {
  content: "\1F512";
  position: absolute;
  top: 12px;
  right: 12px;
}

.reward-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #fff, #f1e6ff);
}

.reward-icon.green { background: linear-gradient(135deg, #bff9e4, #dffeff); }
.reward-icon.peach { background: linear-gradient(135deg, #ffe8bd, #ffd3ed); }
.reward-icon.purple { background: linear-gradient(135deg, #d5c0ff, #ffe0f1); }
.reward-icon.pink { background: linear-gradient(135deg, #ffd9eb, #fff); }
.reward-icon.blue { background: linear-gradient(135deg, #c7efff, #e2d1ff); }

.reward-tile span,
.reward-tile small {
  color: #7a4ce7;
  font-weight: 1000;
}

.reward-tile strong {
  color: #252b6c;
}

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

.mini-card {
  min-height: 250px;
  display: grid;
  align-content: start;
}

.order-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(132, 123, 171, 0.15);
  color: #252b6c;
  font-size: 0.92rem;
  font-weight: 850;
}

.status {
  min-height: 24px;
  padding: 3px 9px;
  font-size: 0.72rem;
}

.status.delivered {
  color: #06916f;
  background: #c6fbdf;
}

.status.shipped {
  color: #2873d9;
  background: #d9ebff;
}

.tracking-path {
  display: grid;
  grid-template-columns: 42px 1fr 42px 1fr 42px;
  align-items: center;
  gap: 8px;
  margin: 22px 0 12px;
}

.tracking-path span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: #f0e6ff;
  font-size: 1.35rem;
}

.tracking-path i {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8a65ff, rgba(138,101,255,0.2));
}

.tracking-card p,
.points-card-v2 p {
  color: #4f527f;
  text-align: center;
  font-weight: 850;
}

.points-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #7a4ce7;
}

.points-number span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff4b7, #ffd7f0);
  border: 4px solid white;
  font-size: 2rem;
}

.points-number strong {
  color: #7a4ce7;
  font-family: "Baloo 2", cursive;
  font-size: 3.2rem;
  line-height: 1;
}

.wishlist-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0 18px;
}

.wish {
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: 18px;
  font-size: 2.4rem;
  background: #ffe4f2;
}

.wish.tan { background: #ffe9c9; }
.wish.mint { background: #d9fff3; }

.account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 999px;
  color: white;
  font-weight: 1000;
  text-align: center;
  box-shadow: 0 13px 24px rgba(124, 94, 214, 0.18);
}

.account-button.pink { background: linear-gradient(135deg, #ff3f9b, #ff72ba); }
.account-button.purple { background: linear-gradient(135deg, #8a65ff, #6c49e8); }
.account-button.teal { background: linear-gradient(135deg, #19c6b9, #13a7b5); }

.membership-card,
.settings-card {
  min-height: 330px;
}

.membership-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,214,238,0.54), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(202,255,242,0.72), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,250,232,0.62));
}

.member-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 16px;
  border-radius: 24px;
  border: 2px solid rgba(58, 210, 190, 0.34);
  background:
    linear-gradient(135deg, rgba(211,255,248,0.9), rgba(255,255,255,0.78)),
    radial-gradient(circle at 90% 12%, rgba(255,214,238,0.56), transparent 36%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.42), 0 12px 28px rgba(124,94,214,0.12);
}

.member-box strong {
  color: #087d74;
  font-size: 1.08rem;
}

.member-box p {
  margin: 6px 0 0;
  color: #4f527f;
  font-weight: 850;
}

.member-box img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 8px;
  border-radius: 26px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 12px 24px rgba(124,94,214,0.14);
}

.membership-card .account-button.teal {
  width: 100%;
  margin-top: 12px;
}

.vip-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.7);
  background: linear-gradient(135deg, rgba(240,230,255,0.92), rgba(255,214,238,0.62));
  color: #6c49e8;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(124,94,214,0.12);
}

.vip-line a {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  color: white;
  background: #8a65ff;
}

.settings-card a:not(.account-button) {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(132, 123, 171, 0.16);
  color: #4f527f;
  font-weight: 900;
}

.help-card {
  grid-column: span 2;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 82%, rgba(223, 204, 255, 0.7) 0 110px, transparent 114px),
    linear-gradient(135deg, rgba(246,237,255,0.72), rgba(230,250,255,0.56));
}

.help-card h2 {
  margin: 0;
  color: #6c49e8;
  font-size: clamp(2rem, 4vw, 3rem);
}

.help-card p:not(.eyebrow) {
  color: #4f527f;
  font-weight: 850;
}

.help-card img {
  width: 250px;
  justify-self: end;
  filter: drop-shadow(0 18px 24px rgba(108, 91, 168, 0.18));
}

@media (max-width: 1180px) {
  .account-hero,
  .account-level-card,
  .help-card {
    grid-template-columns: 1fr;
  }

  .account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reward-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-save-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-level-card img,
  .help-card img {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .account-hero,
  .account-panel {
    border-radius: 24px;
    padding: 16px;
  }

  .account-profile {
    flex-direction: column;
    text-align: center;
  }

  .account-badges {
    justify-content: center;
  }

  .account-grid,
  .reward-track,
  .account-save-grid {
    grid-template-columns: 1fr;
  }

  .help-card {
    grid-column: auto;
  }
}

/* Rewards battle-pass page. */
.rewards-pass-main {
  display: grid;
  gap: 20px;
  margin-top: 18px;
}

.pass-hero,
.tier-summary article,
.reward-pass-board,
.plaque-showcase {
  border: 3px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.66);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.pass-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 120, 184, 0.22), transparent 28%),
    radial-gradient(circle at 88% 32%, rgba(138, 101, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,238,249,0.56), rgba(234,255,248,0.5));
}

.pass-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.95;
}

.pass-hero p:not(.eyebrow) {
  max-width: 920px;
  color: #4f527f;
  font-size: 1.12rem;
  font-weight: 850;
}

.pass-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pass-preview-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 26px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(245,232,255,0.7));
  border: 2px solid rgba(255,255,255,0.86);
}

.pass-medal {
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  border-radius: 38% 46% 42% 50%;
  color: #ff3f9b;
  font-family: "Baloo 2", cursive;
  font-size: 4rem;
  font-weight: 1000;
  background:
    radial-gradient(circle at 50% 42%, #fff5ad 0 42px, transparent 43px),
    linear-gradient(135deg, #ffe58d, #ff8fc7);
  border: 5px solid white;
  box-shadow: 0 18px 30px rgba(255, 79, 153, 0.18);
}

.mini-xp {
  width: 100%;
  height: 18px;
  padding: 3px;
  border-radius: 999px;
  background: #f0e6ff;
}

.mini-xp span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff3f9b, #ff8fc7, #8a65ff);
}

.pass-preview-card strong,
.pass-preview-card small {
  color: #252b6c;
  font-weight: 1000;
}

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

.tier-summary article {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 22px;
  border-radius: 28px;
}

.tier-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: #fff4c4;
  font-size: 2rem;
}

.tier-icon.club { background: #cdfbef; }
.tier-icon.vip { background: #eadfff; }

.tier-summary h2 {
  margin: 0;
  color: #13175e;
  font-size: 1.8rem;
}

.tier-summary p,
.pass-board-header p,
.plaque-copy p {
  margin: 0;
  color: #4f527f;
  font-weight: 850;
}

.reward-pass-board {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 34px;
  overflow: hidden;
}

.pass-board-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.pass-board-header h2,
.plaque-copy h2 {
  margin: 0;
  color: #7a4ce7;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.coin-economy-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 20px;
  padding: 14px 18px;
  border-radius: 22px;
  color: #4f527f;
  background: linear-gradient(135deg, rgba(255, 247, 190, 0.72), rgba(255, 232, 247, 0.64));
  border: 2px dashed rgba(255, 120, 184, 0.34);
  font-weight: 850;
}

.coin-economy-note strong {
  flex: 0 0 auto;
  color: #13175e;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
}

.reward-lane {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 16px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,0.52);
  border: 2px solid rgba(255,255,255,0.74);
}

.lane-label {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  color: #13175e;
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(245,232,255,0.52));
}

.lane-label span {
  font-size: 2rem;
}

.lane-label h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
}

.lane-label p {
  margin: 0;
  color: #4f527f;
  font-weight: 850;
}

.lane-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pass-node {
  position: relative;
  min-height: 154px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 16px;
  border-radius: 24px;
  text-align: center;
  color: #252b6c;
  background: rgba(255,255,255,0.74);
  border: 2px solid rgba(226, 218, 244, 0.78);
  box-shadow: 0 12px 24px rgba(103, 93, 160, 0.08);
}

.pass-node::before {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  margin-bottom: 2px;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #fff, #f3eaff);
}

.pass-node.coins::before { content: "\2605"; color: #f0a800; background: linear-gradient(135deg, #fff7b8, #ffd7f0); }
.pass-node.shipping::before { content: "\1F69A"; background: linear-gradient(135deg, #dff8ff, #e6ddff); }
.pass-node.item::before { content: "\1F381"; background: linear-gradient(135deg, #ffe5f2, #fff2b9); }
.pass-node.big::before { content: "\2728"; color: #8a65ff; background: linear-gradient(135deg, #f0e5ff, #dff8ff); }
.pass-node.vip-big::before { content: "\1F451"; color: #8a65ff; background: linear-gradient(135deg, #eadfff, #ffe5f5); }
.pass-node.plaque::before { content: "\2605"; }

.pass-node small {
  color: #7a4ce7;
  font-weight: 1000;
}

.pass-node strong {
  color: #13175e;
  font-size: 1.05rem;
}

.pass-node span {
  color: #5a5e8d;
  font-size: 0.88rem;
  font-weight: 850;
}

.member-lane .lane-label { background: linear-gradient(135deg, #fff7c7, #fff); }
.club-lane .lane-label { background: linear-gradient(135deg, #cefff3, #fff); }
.vip-lane .lane-label { background: linear-gradient(135deg, #eadfff, #fff0fa); }
.shared-lane .lane-label { background: linear-gradient(135deg, #cefff3, #fff0fa); }

.pass-node.shared {
  border-color: rgba(122, 76, 231, 0.22);
}

.pass-node.club-reward {
  border-color: rgba(25, 198, 185, 0.5);
  background: linear-gradient(145deg, rgba(216,255,247,0.9), rgba(255,255,255,0.76));
}

.pass-node.club-reward::after,
.pass-node.vip-locked::after {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 1000;
}

.pass-node.club-reward::after {
  content: "Club";
  color: #087d74;
  background: #c6fbf2;
}

.pass-node.vip-locked {
  border-color: rgba(138, 101, 255, 0.52);
  box-shadow: 0 14px 28px rgba(138, 101, 255, 0.13);
}

.pass-node.vip-locked::after {
  content: "VIP";
  color: white;
  background: linear-gradient(135deg, #8a65ff, #ff72ba);
}

.pass-node.rare,
.pass-node.big,
.pass-node.vip-big {
  border-color: rgba(255, 120, 184, 0.42);
}

.pass-node.plaque {
  min-width: 178px;
  border-width: 3px;
}

.pass-node.plaque.silver {
  background: linear-gradient(145deg, #ffffff, #d8d8df);
  border-color: rgba(160, 164, 178, 0.72);
}

.pass-node.plaque.gold {
  background: linear-gradient(145deg, #fff4b8, #e5a735);
  border-color: rgba(225, 161, 39, 0.72);
}

.pass-node.plaque.diamond {
  background: linear-gradient(145deg, #ffffff, #dff7ff, #d9d5ff);
  border-color: rgba(142, 215, 255, 0.76);
}

.plaque-showcase {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 84%, rgba(255, 203, 230, 0.44), transparent 28%),
    radial-gradient(circle at 93% 20%, rgba(214, 246, 255, 0.5), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,238,248,0.56));
}

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

.plaque-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  border-radius: 30px;
  text-align: center;
  background: rgba(255,255,255,0.72);
  border: 2px solid rgba(255,255,255,0.78);
}

.plaque-face {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 220px);
  aspect-ratio: 0.76;
  border-radius: 26px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.75), 0 18px 36px rgba(91, 78, 130, 0.16);
}

.plaque-face span {
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border-radius: 32px;
  font-size: 3.5rem;
  background: rgba(255,255,255,0.38);
  box-shadow: inset 0 4px 8px rgba(255,255,255,0.38);
}

.plaque-face small {
  position: absolute;
  bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  color: #4f527f;
  font-weight: 1000;
}

.plaque-card.silver .plaque-face {
  background: linear-gradient(145deg, #ffffff, #d3d4da, #f9f9fb);
}

.plaque-card.gold .plaque-face {
  background: linear-gradient(145deg, #fff2a9, #e5a735, #ffd878);
}

.plaque-card.diamond .plaque-face {
  background: linear-gradient(145deg, #ffffff, #dff8ff, #c9d1ff, #ffffff);
}

.plaque-card h3 {
  margin: 0;
  color: #7a4ce7;
  font-size: 2rem;
}

.plaque-card p {
  margin: 0;
  color: #4f527f;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .pass-hero,
  .plaque-showcase {
    grid-template-columns: 1fr;
  }

  .tier-summary,
  .plaque-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .pass-board-header {
    display: grid;
  }

  .lane-track {
    grid-auto-columns: minmax(140px, 78%);
  }
}

/* Rewards page final layout: view-all rewards grid instead of a horizontal ladder. */
.rewards-pass-main {
  margin-top: 18px;
}

.reward-pass-board {
  overflow: visible;
}

.reward-pass-board .pass-board-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
}

.reward-pass-board .pass-board-header h1 {
  max-width: 820px;
  margin: 0;
  color: #7a4ce7;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.9;
}

.reward-pass-board .coin-economy-note {
  margin-bottom: 24px;
}

.join-rewards-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: 24px;
  color: #252b6c;
  background: linear-gradient(135deg, rgba(214,255,247,0.82), rgba(255,232,247,0.72));
  border: 2px solid rgba(255,255,255,0.82);
  box-shadow: 0 14px 28px rgba(103, 93, 160, 0.09);
}

.join-rewards-note strong,
.join-rewards-note span {
  display: block;
}

.join-rewards-note strong {
  color: #13175e;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  line-height: 1;
}

.join-rewards-note span {
  margin-top: 4px;
  color: #4f527f;
  font-weight: 850;
}

.join-rewards-note a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  font-family: "Baloo 2", cursive;
  font-weight: 1000;
  box-shadow: 0 14px 26px rgba(124, 94, 214, 0.2);
}

.reward-lane.shared-lane {
  display: block;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.reward-lane.shared-lane .lane-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: initial;
  gap: 14px;
  overflow-x: visible;
  padding-bottom: 0;
}

.reward-lane.shared-lane .pass-node {
  min-width: 0;
  min-height: 168px;
}

.reward-lane.shared-lane .pass-node.plaque {
  min-width: 0;
}

@media (max-width: 1180px) {
  .reward-pass-board .pass-board-header {
    grid-template-columns: 1fr;
  }

  .reward-lane.shared-lane .lane-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .reward-lane.shared-lane .lane-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .join-rewards-note {
    display: grid;
  }

  .join-rewards-note a {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .reward-lane.shared-lane .lane-track {
    grid-template-columns: 1fr;
  }
}

/* Squish Club membership info page. */
.squish-club-page .home-nav a[aria-current="page"] {
  color: #ff3f9b;
}

.club-info-main {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.club-info-hero,
.club-tier-card,
.club-card-note,
.club-use-panel,
.club-steps article {
  border: 3px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.club-info-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 93, 168, 0.24), transparent 30%),
    radial-gradient(circle at 92% 24%, rgba(87, 205, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,239,248,0.58), rgba(226,255,249,0.52));
}

.club-info-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.6rem, 5.4vw, 5.5rem);
  line-height: 0.9;
}

.club-info-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #4f527f;
  font-size: 1.12rem;
  font-weight: 850;
}

.club-hero-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(245,232,255,0.68));
  border: 2px solid rgba(255,255,255,0.88);
  box-shadow: 0 22px 44px rgba(124, 94, 214, 0.14);
}

.club-hero-card img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.club-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.club-mini-stats span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 18px;
  color: #4f527f;
  background: rgba(255,255,255,0.74);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.club-mini-stats strong {
  display: block;
  color: #7a4ce7;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  line-height: 1;
}

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

.club-tier-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 32px;
}

.club-free {
  background:
    radial-gradient(circle at 86% 16%, rgba(118, 242, 213, 0.28), transparent 28%),
    rgba(255,255,255,0.68);
}

.club-vip {
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 206, 107, 0.3), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(138, 101, 255, 0.2), transparent 28%),
    rgba(255,255,255,0.68);
}

.tier-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7a4ce7;
  font-weight: 1000;
}

.tier-topline span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  font-size: 1.8rem;
}

.tier-topline small {
  text-transform: uppercase;
  letter-spacing: 0;
}

.club-tier-card h2,
.club-use-panel h2 {
  margin: 0;
  color: #13175e;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.club-tier-card p,
.club-tier-card li,
.club-use-panel p,
.club-use-grid p,
.club-steps p {
  color: #4f527f;
  font-weight: 850;
}

.club-tier-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.club-tier-card li {
  position: relative;
  padding-left: 30px;
}

.club-tier-card li::before {
  content: "\2665";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5ca8;
}

.club-tier-card .button {
  justify-self: start;
  margin-top: 8px;
}

.club-card-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: clamp(20px, 4vw, 30px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 244, 183, 0.34), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(202, 255, 242, 0.38), transparent 30%),
    rgba(255,255,255,0.68);
}

.club-card-note div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.club-card-note span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffe7f3, #e6ddff);
  font-size: 2rem;
}

.club-card-note h2 {
  margin: 0;
  color: #13175e;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.95;
}

.club-card-note p {
  margin: 0;
  color: #4f527f;
  font-weight: 850;
}

.club-use-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 6% 12%, rgba(255, 230, 133, 0.24), transparent 30%),
    radial-gradient(circle at 90% 88%, rgba(128, 226, 255, 0.22), transparent 30%),
    rgba(255,255,255,0.68);
}

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

.club-use-grid article {
  min-height: 172px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 2px solid rgba(255,255,255,0.78);
}

.club-use-grid span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff4b7, #ffd7f0);
  font-size: 1.7rem;
}

.club-use-grid h3,
.club-steps h3 {
  margin: 12px 0 6px;
  color: #13175e;
  font-size: 1.35rem;
}

.club-use-grid p,
.club-steps p {
  margin: 0;
}

.club-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.club-steps article {
  min-height: 190px;
  padding: 20px;
  border-radius: 28px;
}

.club-steps strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  color: #ff3f9b;
  background: linear-gradient(135deg, #fff4b7, #ffe2f2);
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
}

@media (max-width: 980px) {
  .club-info-hero,
  .club-use-panel,
  .club-tier-grid,
  .club-card-note,
  .club-steps {
    grid-template-columns: 1fr;
  }

  .club-hero-card {
    max-width: 560px;
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .club-info-hero,
  .club-tier-card,
  .club-card-note,
  .club-use-panel {
    border-radius: 24px;
  }

  .club-mini-stats,
  .club-use-grid {
    grid-template-columns: 1fr;
  }
}

/* Find Us / Events calendar page. */
.events-main {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.events-hero,
.events-calendar-shell,
.event-card {
  border: 3px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.events-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 93, 168, 0.22), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(87, 205, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,239,248,0.58), rgba(226,255,249,0.52));
}

.events-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  line-height: 0.9;
}

.events-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #4f527f;
  font-size: 1.12rem;
  font-weight: 850;
}

.events-hero img {
  width: 100%;
  display: block;
  border-radius: 30px;
  border: 12px solid rgba(255,255,255,0.68);
  box-shadow: 0 22px 42px rgba(124, 94, 214, 0.14);
}

.events-calendar-shell {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 244, 183, 0.28), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(202, 255, 242, 0.34), transparent 32%),
    rgba(255,255,255,0.66);
}

.calendar-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.5fr);
  gap: 18px;
  align-items: end;
}

.calendar-heading h2 {
  margin: 0;
  color: #7a4ce7;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.92;
}

.calendar-heading p {
  margin: 0;
  color: #4f527f;
  font-weight: 850;
}

.event-month-card {
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.72);
  border: 2px solid rgba(255,255,255,0.82);
}

.event-month-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.event-month-header span {
  color: #13175e;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  font-weight: 1000;
}

.event-month-header strong {
  padding: 8px 14px;
  border-radius: 999px;
  color: #087d74;
  background: #d4fff5;
  font-weight: 1000;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.mini-calendar > span {
  padding: 8px 4px;
  color: #7a4ce7;
  text-align: center;
  font-weight: 1000;
}

.mini-calendar button {
  position: relative;
  min-height: 92px;
  padding: 10px;
  border: 0;
  border-radius: 20px;
  color: #252b6c;
  background: linear-gradient(145deg, rgba(255,255,255,0.76), rgba(246, 239, 255, 0.62));
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
  font-weight: 1000;
  box-shadow: inset 0 0 0 2px rgba(226, 218, 244, 0.5);
}

.mini-calendar button.muted {
  opacity: 0.42;
}

.mini-calendar button.has-event {
  color: white;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  box-shadow: 0 12px 24px rgba(124, 94, 214, 0.18);
}

.mini-calendar button.vip-event {
  background: linear-gradient(135deg, #ffb94f, #ff4aa0, #8a65ff);
}

.mini-calendar button.special-event {
  background: linear-gradient(135deg, #ffb94f, #ff4aa0);
}

.mini-calendar button small {
  display: block;
  margin-bottom: 4px;
  color: inherit;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 28px;
}

.event-card.featured {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 244, 183, 0.3), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,232,247,0.62));
}

.event-date-badge {
  display: grid;
  place-items: center;
  width: 86px;
  height: 96px;
  border-radius: 26px;
  color: white;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  box-shadow: 0 14px 26px rgba(124, 94, 214, 0.18);
}

.event-date-badge small {
  font-weight: 1000;
  text-transform: uppercase;
}

.event-date-badge strong {
  font-family: "Baloo 2", cursive;
  font-size: 2.8rem;
  line-height: 0.8;
}

.event-date-badge.recurring strong {
  font-size: 1.75rem;
}

.event-type {
  margin: 0 0 4px;
  color: #ff3f9b;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.event-card h3 {
  margin: 0;
  color: #13175e;
  font-size: 1.7rem;
}

.event-card p:not(.event-type) {
  margin: 4px 0 0;
  color: #4f527f;
  font-weight: 850;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.event-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #4f527f;
  background: rgba(240, 230, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
}

.event-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  font-family: "Baloo 2", cursive;
  font-weight: 1000;
  white-space: nowrap;
}

.event-link.disabled {
  color: #7a4ce7;
  background: rgba(240, 230, 255, 0.86);
}

@media (max-width: 980px) {
  .events-hero,
  .calendar-heading,
  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card {
    align-items: start;
  }

  .events-hero img {
    max-width: 620px;
    justify-self: center;
  }

  .event-link {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .events-hero,
  .events-calendar-shell {
    border-radius: 24px;
  }

  .event-month-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-calendar {
    gap: 5px;
  }

  .mini-calendar button {
    min-height: 62px;
    padding: 6px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .mini-calendar button small {
    font-size: 0.6rem;
  }
}

/* Cart page with saved-for-later and wishlist sections. */
.cart-page .home-nav .cart-button[aria-current="page"] {
  color: #ff3f9b;
}

.cart-main {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.cart-hero,
.cart-panel,
.cart-summary-panel {
  border: 3px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.cart-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 5vw, 50px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 93, 168, 0.22), transparent 30%),
    radial-gradient(circle at 92% 76%, rgba(87, 205, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,239,248,0.58), rgba(226,255,249,0.52));
}

.cart-hero h1 {
  max-width: 800px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.cart-hero p:not(.eyebrow),
.cart-mini-note p {
  color: #4f527f;
  font-weight: 850;
}

.cart-mini-note {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  border: 2px solid rgba(255,255,255,0.86);
}

.cart-mini-note span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff4b7, #ffd7f0);
  font-size: 1.8rem;
}

.cart-mini-note strong {
  color: #13175e;
  font-size: 1.2rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 18px;
  align-items: start;
}

.cart-panel,
.cart-summary-panel {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 32px;
}

.cart-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.cart-panel-heading.compact {
  align-items: start;
}

.cart-panel-heading h2,
.cart-summary-panel h2 {
  margin: 0;
  color: #13175e;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.cart-panel-heading a {
  color: #7a4ce7;
  font-weight: 1000;
}

.cart-pill {
  padding: 9px 14px;
  border-radius: 999px;
  color: #087d74;
  background: #d4fff5;
  font-weight: 1000;
  white-space: nowrap;
}

.cart-item-list,
.mini-cart-list {
  display: grid;
  gap: 12px;
}

.cart-empty-state,
.mini-empty-state {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 24px;
  color: #4f527f;
  background: rgba(255,255,255,0.72);
  border: 2px dashed rgba(255, 120, 184, 0.32);
  font-weight: 900;
}

.cart-empty-state strong {
  color: #13175e;
  font-size: 1.35rem;
}

.cart-empty-state p,
.mini-empty-state {
  margin: 0;
}

.cart-line-item,
.mini-cart-item {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 2px solid rgba(255,255,255,0.82);
}

.cart-line-item {
  grid-template-columns: 92px minmax(0, 1fr) auto auto;
}

.mini-cart-item {
  grid-template-columns: 76px minmax(0, 1fr) auto;
}

.mini-cart-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cart-product-art {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 24px;
  color: #13175e;
  font-family: "Baloo 2", cursive;
  font-size: 1.3rem;
  font-weight: 1000;
  background: linear-gradient(135deg, #ffd6ee, #d7c7ff);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.55);
}

.cart-product-art.pink { background: linear-gradient(135deg, #ffd6ee, #b7f4ff); }
.cart-product-art.purple { background: linear-gradient(135deg, #e2d1ff, #fff1b8); }
.cart-product-art.mint { background: linear-gradient(135deg, #c8fff2, #d7c7ff); }
.cart-product-art.yellow { background: linear-gradient(135deg, #fff1a8, #ffc8e8); }
.cart-product-art.lavender { background: linear-gradient(135deg, #e2d1ff, #ffc9e8); }
.cart-product-art.blue { background: linear-gradient(135deg, #c8efff, #fff1c7); }

.cart-product-art.has-photo {
  overflow: hidden;
  background: rgba(255,255,255,0.72);
}

.cart-product-art.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line-item h3,
.mini-cart-item h3 {
  margin: 0;
  color: #13175e;
  font-size: 1.25rem;
}

.cart-line-item p,
.mini-cart-item p {
  margin: 2px 0 0;
  color: #4f527f;
  font-weight: 850;
}

.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.cart-line-actions button,
.mini-cart-item button,
.checkout-button {
  border: 0;
  cursor: pointer;
  font-weight: 1000;
}

.cart-line-actions button {
  padding: 7px 10px;
  border-radius: 999px;
  color: #7a4ce7;
  background: rgba(240, 230, 255, 0.82);
}

.cart-qty {
  display: grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  border-radius: 999px;
  background: rgba(240, 230, 255, 0.7);
}

.cart-qty button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #7a4ce7;
  background: white;
  cursor: pointer;
  font-weight: 1000;
}

.cart-qty span {
  color: #13175e;
  text-align: center;
  font-weight: 1000;
}

.cart-line-item > strong {
  color: #ff3f9b;
  font-size: 1.35rem;
}

.cart-summary-panel {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 120, 184, 0.3);
  color: #4f527f;
  font-weight: 900;
}

.summary-total {
  color: #13175e;
  font-size: 1.2rem;
}

.checkout-button,
.mini-cart-item button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  font-family: "Baloo 2", cursive;
}

.checkout-button {
  width: 100%;
}

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

@media (max-width: 1080px) {
  .cart-hero,
  .cart-layout,
  .cart-secondary-grid {
    grid-template-columns: 1fr;
  }

  .cart-summary-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .cart-hero,
  .cart-panel,
  .cart-summary-panel {
    border-radius: 24px;
  }

  .cart-line-item,
  .mini-cart-item {
    grid-template-columns: 1fr;
  }

  .cart-product-art {
    width: 88px;
  }

  .cart-qty,
  .mini-cart-item button {
    width: 100%;
  }
}

/* Wishlist, subscription coming soon, and custom 404 pages. */
.wishlist-main,
.subscription-main,
.not-found-main {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.soft-page-hero,
.soft-note-panel,
.coming-soon-grid article,
.not-found-card,
.wishlist-empty {
  border: 3px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.soft-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 5vw, 50px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 93, 168, 0.22), transparent 30%),
    radial-gradient(circle at 92% 76%, rgba(87, 205, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,239,248,0.58), rgba(226,255,249,0.52));
}

.soft-page-hero h1,
.not-found-card h1 {
  max-width: 820px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.9;
}

.soft-page-hero p:not(.eyebrow),
.soft-note-panel p,
.coming-soon-grid p,
.not-found-card p:not(.eyebrow) {
  color: #4f527f;
  font-weight: 850;
}

.soft-hero-card,
.subscription-preview {
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.86);
  background: linear-gradient(145deg, rgba(255,255,255,0.74), rgba(235,246,255,0.54));
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.84), 0 18px 34px rgba(104, 86, 169, 0.12);
}

.soft-hero-card {
  position: relative;
}

.soft-hero-card img {
  width: min(210px, 78%);
  filter: drop-shadow(0 18px 22px rgba(85, 70, 145, 0.18));
}

.soft-hero-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
  font-weight: 1000;
}

.subscription-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.coming-soon-grid article,
.soft-note-panel,
.wishlist-empty {
  padding: clamp(22px, 4vw, 34px);
  border-radius: 30px;
}

.coming-soon-grid span,
.wishlist-empty span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff4b7, #ffd7f0);
  font-size: 2rem;
}

.coming-soon-grid h2,
.soft-note-panel h2,
.wishlist-empty h2 {
  margin: 12px 0 8px;
  color: #13175e;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.coming-soon-grid strong {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #ff4aa0, #8a65ff);
}

.wishlist-empty {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-top: 18px;
}

.wishlist-empty[hidden],
.shop-product-grid[hidden] {
  display: none;
}

.not-found-main {
  min-height: 52vh;
  place-items: center;
}

.not-found-card {
  position: relative;
  width: min(900px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 93, 168, 0.22), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(126, 242, 218, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,239,248,0.62), rgba(226,255,249,0.54));
}

.not-found-number {
  position: absolute;
  top: 18px;
  right: 28px;
  color: rgba(122, 76, 231, 0.12);
  font-family: "Baloo 2", cursive;
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 1000;
  line-height: 0.8;
}

.not-found-card img {
  width: min(190px, 45vw);
  margin-bottom: 12px;
  filter: drop-shadow(0 18px 22px rgba(85, 70, 145, 0.18));
}

@media (max-width: 900px) {
  .soft-page-hero,
  .coming-soon-grid {
    grid-template-columns: 1fr;
  }
}

/* Product detail template for Shopify product pages later. */
.product-detail-main {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.product-detail-shell,
.product-extra-grid article {
  border: 3px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: stretch;
  padding: clamp(20px, 4vw, 44px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 93, 168, 0.2), transparent 30%),
    radial-gradient(circle at 92% 76%, rgba(87, 205, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,239,248,0.58), rgba(226,255,249,0.52));
}

.product-gallery {
  display: grid;
  gap: 14px;
  align-content: start;
}

.product-gallery-main {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.82) 0 32px, transparent 35px),
    radial-gradient(circle at 78% 20%, rgba(255,255,255,0.58) 0 48px, transparent 51px),
    radial-gradient(circle at 22% 92%, rgba(255,255,255,0.32) 0 110px, transparent 114px),
    radial-gradient(circle at 84% 92%, rgba(255,255,255,0.28) 0 132px, transparent 136px),
    linear-gradient(135deg, var(--toy-a, #ffd5ec), var(--toy-b, #b7f4ff));
  border: 3px solid rgba(255,255,255,0.86);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.72), 0 20px 42px rgba(97, 82, 150, 0.14);
}

.product-gallery-main .toy-symbol {
  width: min(210px, 42vw);
  height: min(210px, 42vw);
  border-radius: 58px;
  font-size: clamp(4rem, 10vw, 7rem);
}

.product-gallery-main small {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #13175e;
  background: rgba(255,255,255,0.76);
  font-size: 1.05rem;
  font-weight: 1000;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-thumbs button {
  min-height: 72px;
  border: 2px solid rgba(255,255,255,0.84);
  border-radius: 20px;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.74) 0 18px, transparent 20px),
    linear-gradient(135deg, rgba(255,214,238,0.84), rgba(215,199,255,0.84));
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.7);
}

.product-thumbs button.active {
  outline: 3px solid rgba(255, 74, 160, 0.42);
}

.product-detail-info {
  display: grid;
  align-content: start;
  gap: 14px;
}

.back-link {
  width: fit-content;
  color: #7a4ce7;
  font-weight: 1000;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #7a4ce7;
  background: rgba(240, 230, 255, 0.82);
  font-weight: 1000;
}

.product-detail-info h1 {
  margin: 0;
  color: #13175e;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.86;
}

.product-detail-price {
  color: #ff3f9b;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.product-detail-copy {
  max-width: 700px;
  margin: 0;
  color: #444979;
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1.45;
}

.product-detail-notes {
  display: grid;
  gap: 10px;
  margin: 6px 0;
}

.product-detail-notes div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  border: 2px solid rgba(255,255,255,0.74);
}

.product-detail-notes span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff4b7, #ffd7f0);
  font-size: 1.4rem;
}

.product-detail-notes strong {
  color: #13175e;
}

.product-detail-notes small {
  color: #4f527f;
  font-weight: 850;
}

.product-buy-box {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  border: 2px solid rgba(255,255,255,0.86);
}

.product-buy-box label {
  color: #13175e;
  font-weight: 1000;
}

.product-quantity {
  width: min(100%, 210px);
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(240, 230, 255, 0.86);
}

.product-quantity button,
.product-quantity input {
  min-height: 52px;
  border: 0;
  color: #13175e;
  text-align: center;
  background: transparent;
  font-weight: 1000;
}

.product-quantity button {
  cursor: pointer;
  background: white;
  color: #7a4ce7;
  font-size: 1.2rem;
}

.product-detail-actions {
  display: flex;
  gap: 10px;
}

.product-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-extra-grid article {
  padding: 24px;
  border-radius: 28px;
}

.product-extra-grid h2 {
  margin: 0 0 8px;
  color: #13175e;
  font-size: 1.55rem;
}

.product-extra-grid p {
  margin: 0;
  color: #4f527f;
  font-weight: 850;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .product-detail-shell,
  .product-extra-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-detail-shell {
    border-radius: 28px;
  }

  .product-gallery-main {
    min-height: 330px;
    border-radius: 26px;
  }

  .product-detail-actions {
    flex-wrap: wrap;
  }

  .product-detail-actions .add-cart-button {
    flex-basis: calc(100% - 56px);
  }
}

/* About page mission/story layout. */
.about-page .home-nav a[aria-current="page"] {
  color: #ff3f9b;
}

.about-main {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.about-hero,
.about-story-card,
.about-values-grid article,
.about-mission-panel,
.about-promise {
  border: 3px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 93, 168, 0.22), transparent 30%),
    radial-gradient(circle at 92% 76%, rgba(87, 205, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,239,248,0.58), rgba(226,255,249,0.52));
}

.about-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  line-height: 0.9;
}

.about-hero p:not(.eyebrow),
.about-story-card p,
.about-mission-panel p,
.about-promise p,
.about-values-grid p,
.about-goal-list li {
  color: #4f527f;
  font-weight: 850;
}

.about-hero-art {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(245,232,255,0.68));
  border: 2px solid rgba(255,255,255,0.88);
}

.about-hero-art img {
  width: min(260px, 80%);
  filter: drop-shadow(0 18px 24px rgba(108, 91, 168, 0.18));
}

.about-hero-art span {
  padding: 10px 16px;
  border-radius: 999px;
  color: #7a4ce7;
  background: rgba(255,255,255,0.78);
  font-weight: 1000;
}

.about-story-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
}

.about-story-card h2,
.about-mission-panel h2,
.about-promise h2 {
  max-width: 980px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.about-story-card p {
  max-width: 1000px;
  font-size: 1.08rem;
}

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

.about-values-grid article {
  min-height: 250px;
  padding: 24px;
  border-radius: 30px;
}

.about-values-grid span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff4b7, #ffd7f0);
  font-size: 2rem;
}

.about-values-grid h3,
.about-goal-list h3 {
  margin: 14px 0 8px;
  color: #13175e;
  font-size: 1.6rem;
}

.about-mission-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(22px, 4vw, 38px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 244, 183, 0.3), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(202, 255, 242, 0.34), transparent 32%),
    rgba(255,255,255,0.66);
}

.brand-note {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(240, 230, 255, 0.74);
  border: 2px dashed rgba(138, 101, 255, 0.24);
}

.about-goal-list {
  align-self: start;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  border: 2px solid rgba(255,255,255,0.82);
}

.about-goal-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-goal-list li {
  position: relative;
  padding-left: 30px;
}

.about-goal-list li::before {
  content: "\2665";
  position: absolute;
  left: 0;
  color: #ff5ca8;
}

.about-promise {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
}

.about-promise img {
  width: 100%;
  display: block;
  border-radius: 28px;
  border: 10px solid rgba(255,255,255,0.68);
  box-shadow: 0 18px 36px rgba(124, 94, 214, 0.13);
}

@media (max-width: 980px) {
  .about-hero,
  .about-mission-panel,
  .about-promise,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-art {
    max-width: 460px;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .about-hero,
  .about-story-card,
  .about-values-grid article,
  .about-mission-panel,
  .about-promise {
    border-radius: 24px;
  }
}

/* Games coming-soon page. */
.games-page .home-nav a[aria-current="page"] {
  color: #ff3f9b;
}

.games-main {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.games-hero,
.game-concept-card,
.game-code-panel,
.games-reward-panel {
  border: 3px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.games-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 93, 168, 0.22), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255, 221, 101, 0.26), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(87, 205, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,239,248,0.58), rgba(226,255,249,0.52));
}

.games-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  line-height: 0.9;
}

.games-hero p:not(.eyebrow),
.game-concept-card p,
.game-code-panel p,
.games-reward-panel p,
.code-flow p {
  color: #4f527f;
  font-weight: 850;
}

.games-hero-card {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.9) 0 92px, rgba(245,232,255,0.66) 94px, transparent 160px),
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(245,232,255,0.68));
  border: 2px solid rgba(255,255,255,0.88);
  overflow: hidden;
}

.games-hero-card img {
  width: min(230px, 62%);
  filter: drop-shadow(0 18px 24px rgba(108, 91, 168, 0.18));
}

.game-orbit {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 86px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 22px;
  color: #7a4ce7;
  background: rgba(255,255,255,0.82);
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(124, 94, 214, 0.12);
}

.game-orbit.one { top: 28px; left: 32px; }
.game-orbit.two { top: 68px; right: 24px; color: #ff3f9b; }
.game-orbit.three { bottom: 34px; left: 50%; transform: translateX(-50%); color: #087d74; }

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

.game-concept-card {
  min-height: 310px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: 30px;
}

.game-concept-card.featured {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 221, 101, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.76), rgba(255,232,247,0.62));
}

.game-concept-card > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff4b7, #ffd7f0);
  font-size: 2rem;
}

.game-concept-card h2,
.game-code-panel h2,
.games-reward-panel h2 {
  margin: 0;
  color: #13175e;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.game-concept-card small {
  align-self: end;
  justify-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  color: #7a4ce7;
  background: rgba(240, 230, 255, 0.82);
  font-weight: 1000;
}

.game-code-panel,
.games-reward-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
}

.game-code-panel {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 244, 183, 0.3), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(202, 255, 242, 0.34), transparent 32%),
    rgba(255,255,255,0.66);
}

.code-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.code-flow article {
  min-height: 190px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 2px solid rgba(255,255,255,0.82);
}

.code-flow strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  color: #ff3f9b;
  background: linear-gradient(135deg, #fff4b7, #ffe2f2);
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
}

.code-flow h3 {
  margin: 12px 0 6px;
  color: #13175e;
}

.games-reward-panel {
  background:
    radial-gradient(circle at 12% 78%, rgba(255, 93, 168, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(226,255,249,0.52));
}

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

.game-reward-list span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 12px;
  border-radius: 22px;
  color: #7a4ce7;
  background: rgba(255,255,255,0.78);
  border: 2px solid rgba(255,255,255,0.82);
  font-weight: 1000;
  text-align: center;
}

@media (max-width: 1080px) {
  .games-hero,
  .game-concept-grid,
  .game-code-panel,
  .games-reward-panel {
    grid-template-columns: 1fr;
  }

  .games-hero-card {
    max-width: 560px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .code-flow,
  .game-reward-list {
    grid-template-columns: 1fr;
  }

  .games-hero,
  .game-concept-card,
  .game-code-panel,
  .games-reward-panel {
    border-radius: 24px;
  }
}

/* Policy and agreement pages. */
.policy-main {
  display: grid;
  gap: 20px;
  margin-top: 18px;
}

.policy-hero,
.policy-content article {
  border: 3px solid rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 22px 54px rgba(98, 82, 150, 0.12);
  backdrop-filter: blur(14px);
}

.policy-hero {
  padding: clamp(26px, 5vw, 54px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 93, 168, 0.2), transparent 30%),
    radial-gradient(circle at 92% 76%, rgba(87, 205, 255, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,239,248,0.58), rgba(226,255,249,0.52));
}

.policy-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #13175e;
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  line-height: 0.9;
}

.policy-hero p:not(.eyebrow) {
  max-width: 900px;
  color: #4f527f;
  font-weight: 850;
}

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

.policy-content article {
  min-height: 220px;
  padding: 24px;
  border-radius: 30px;
}

.policy-content h2 {
  margin: 0 0 10px;
  color: #13175e;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  line-height: 0.98;
}

.policy-content p {
  margin: 0;
  color: #4f527f;
  font-weight: 850;
}

@media (max-width: 820px) {
  .policy-content {
    grid-template-columns: 1fr;
  }

  .policy-hero,
  .policy-content article {
    border-radius: 24px;
  }
}

/* Squish Club account auth. */
.squish-auth-form {
  display: grid;
  gap: 12px;
  max-width: 480px;
  margin-top: 18px;
}

.auth-mode-tabs {
  display: inline-flex;
  width: max-content;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 26px rgba(126, 91, 255, 0.12);
}

.auth-mode-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  color: #18175f;
  background: transparent;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.auth-mode-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #ff3f9b, #8a65ff);
}

.squish-auth-form label {
  display: grid;
  gap: 6px;
  color: #18175f;
  font-weight: 1000;
}

.squish-auth-form input {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 13px 16px;
  color: #18175f;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 26px rgba(126, 91, 255, 0.1);
  font: inherit;
  font-weight: 850;
}

.squish-auth-form input:focus {
  outline: 3px solid rgba(255, 63, 155, 0.28);
}

.squish-auth-form [hidden] {
  display: none !important;
}

.auth-status {
  min-height: 1.4em;
  margin: 0;
  color: #6c49e8;
  font-weight: 1000;
}

.auth-status[data-status="error"] {
  color: #ff3f9b;
}

.auth-status[data-status="success"] {
  color: #009b8b;
}

.auth-status[data-status="loading"] {
  color: #6c49e8;
}

.account-badges span.is-active {
  opacity: 1;
  filter: none;
}

.account-badges span[aria-disabled="true"] {
  cursor: default;
}
