:root {
  --bg: #0a0d18;
  --panel: rgba(15, 20, 38, 0.78);
  --panel-strong: #11182c;
  --text: #f7f4ea;
  --muted: #b4b8c6;
  --accent: #ff5f45;
  --accent-alt: #f4c95d;
  --accent-cool: #6ad5ff;
  --coin-neon: #ff7a00;
  --coin-hot: #ff3d00;
  --coin-glow: rgba(255, 122, 0, 0.42);
  --success: #7cff8f;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 95, 69, 0.25), transparent 30%),
    radial-gradient(circle at top right, rgba(106, 213, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #0b1020 0%, #070910 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 60px;
}

.hero {
  padding: 18px 0 32px;
}

.topbar,
.hero-grid,
.social-proof,
.dashboard-grid,
.builder-grid,
.community-grid,
.social-comments-grid,
.top-progress-grid {
  display: grid;
  gap: 20px;
}

.topbar {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  margin-bottom: 36px;
}

.brand-lockup,
.topbar-actions,
.panel-heading,
.hero-card-header,
.feed-item,
.challenge-summary,
.hero-card-metrics,
.hero-stats,
.streak-avatars,
.progress-copy,
.today-proof {
  display: flex;
}

.brand-lockup,
.topbar-actions,
.hero-card-header,
.panel-heading,
.feed-item,
.progress-copy,
.today-proof {
  align-items: center;
}

.brand-lockup,
.topbar-actions,
.hero-card-header,
.panel-heading,
.challenge-summary,
.hero-card-metrics,
.hero-stats,
.streak-avatars,
.feed-item {
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #ff8a53);
  color: #120f0c;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
}

.brand-logo-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(255, 95, 69, 0.22));
}

.coin-hud {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 5px 6px 5px 10px;
  border: 1px solid rgba(255, 122, 0, 0.38);
  border-radius: 999px;
  color: #fff8de;
  background:
    radial-gradient(circle at 68% 50%, rgba(255, 122, 0, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(12, 15, 27, 0.95), rgba(47, 26, 7, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 28px rgba(255, 122, 0, 0.2);
  white-space: nowrap;
}

.coin-hud-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 26%, #fff8b8 0 12%, transparent 13%),
    radial-gradient(circle at 62% 62%, #ff9b1a 0 38%, transparent 39%),
    linear-gradient(135deg, #ffd35a 0%, var(--coin-neon) 58%, var(--coin-hot) 100%);
  border: 2px solid rgba(255, 231, 128, 0.78);
  box-shadow:
    inset -4px -6px 10px rgba(116, 35, 0, 0.28),
    0 0 18px rgba(255, 122, 0, 0.65);
}

.coin-hud strong {
  min-width: 54px;
  text-align: right;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.55),
    0 0 12px rgba(255, 122, 0, 0.45);
}

.coin-hud-add {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #04220c;
  font-size: 1.4rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  background: linear-gradient(135deg, #c9ff8d, #39e86f 48%, #08a83d);
  border: 1px solid rgba(220, 255, 195, 0.72);
  box-shadow:
    inset 0 -4px 8px rgba(0, 85, 23, 0.24),
    0 0 18px rgba(57, 232, 111, 0.42);
  transition: transform 160ms ease, filter 160ms ease;
}

.coin-hud-add:hover {
  transform: translateY(-1px) scale(1.04);
  filter: brightness(1.08);
}

.brand-name,
.brand-tag,
.eyebrow,
.card-label,
.metric-label,
.feed-item p,
.hero-text,
.proof-card p,
.hero-card-copy,
.today-proof p {
  margin: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-link {
  text-decoration: none;
  color: inherit;
}

.brand-tag,
.hero-text,
.proof-card p,
.hero-card-copy,
.feed-item p,
.today-proof p,
label,
input,
select,
textarea {
  color: var(--muted);
}

.inline-select {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow,
.card-label,
.metric-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.topbar-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.solid-button,
.ghost-button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.solid-button {
  background: linear-gradient(135deg, var(--accent), #ff8a53);
  color: #120f0c;
  box-shadow: 0 10px 30px rgba(255, 95, 69, 0.28);
}

.top-login-button {
  box-shadow:
    0 12px 30px rgba(255, 95, 69, 0.34),
    0 0 22px rgba(255, 149, 102, 0.42);
}

.ghost-button {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.solid-button:hover,
.ghost-button:hover,
button:hover {
  transform: translateY(-1px);
}

.saved-pulse {
  box-shadow: 0 0 0 2px rgba(95, 255, 165, 0.28), 0 0 24px rgba(95, 255, 165, 0.36);
  transition: box-shadow 180ms ease;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  align-items: center;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
}

h3 {
  margin: 10px 0 0;
  font-size: 1.1rem;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 7.2rem);
  letter-spacing: 0.02em;
  max-width: 10ch;
}

.welcome-heading {
  margin: 0;
  color: var(--accent-alt);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.top-progress-card {
  margin-bottom: 24px;
}

.top-progress-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 320px);
  align-items: start;
}

.top-progress-summary,
.quick-proof-card {
  display: grid;
  gap: 16px;
}

.quick-proof-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(106, 213, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(106, 213, 255, 0.08), rgba(255, 95, 69, 0.06)),
    rgba(255, 255, 255, 0.03);
}

.hero-stats li,
.challenge-summary > div,
.hero-card-metrics > div {
  min-width: 120px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.seo-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.seo-chip-cloud span {
  border: 1px solid rgba(255, 112, 16, 0.22);
  border-radius: 999px;
  background: rgba(255, 112, 16, 0.08);
  box-shadow: 0 10px 28px rgba(255, 112, 16, 0.08);
  color: rgba(255, 246, 235, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 12px;
}

.hero-stats strong,
.challenge-summary strong,
.hero-card-metrics strong,
.progress-copy strong,
.today-proof strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 1.2rem;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 95, 69, 0.16), transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}

.hero-card,
.dashboard-panel,
.proof-card,
.calendar-section,
.builder-grid .card {
  padding: 24px;
}

.hero-card {
  display: grid;
  gap: 18px;
  transform: rotate(2deg);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(106, 213, 255, 0.04)),
    var(--panel);
}

.hero-card-visual {
  animation: floatCard 5s ease-in-out infinite;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(124, 255, 143, 0.12);
  color: var(--success);
  border: 1px solid rgba(124, 255, 143, 0.2);
  font-size: 0.82rem;
}

.status-pill.live {
  color: #120f0c;
  background: linear-gradient(135deg, var(--accent-alt), #ffd98d);
  border-color: transparent;
}

.status-pill.alt {
  color: var(--accent-cool);
  background: rgba(106, 213, 255, 0.1);
  border-color: rgba(106, 213, 255, 0.2);
}

.streak-avatars span,
.feed-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

.social-proof,
.dashboard-grid,
.builder-grid,
.community-grid,
.social-comments-grid,
.quick-links-grid,
.quick-start-grid,
.setup-grid,
.group-grid,
.shop-grid,
.bank-grid {
  margin-top: 26px;
}

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

.dashboard-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 28px;
}

.builder-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.single-column-builder {
  grid-template-columns: 1fr;
}

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

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

.quick-start-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

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

.shop-grid {
  display: grid;
  gap: 20px;
}

.proof-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.login-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  justify-content: center;
}

.auth-layout {
  grid-template-columns: minmax(0, 520px) minmax(0, 360px);
  align-items: start;
}

.login-panel {
  width: min(100%, 520px);
  padding: 24px;
}

.auth-visual-panel {
  width: min(100%, 360px);
}

.auth-hero {
  padding: 18px 0 8px;
}

.auth-hero .setup-title {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
}

.auth-card-primary {
  position: relative;
  overflow: hidden;
}

.auth-card-primary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt), var(--accent-cool));
}

.terms-inline-card {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(244, 201, 93, 0.26);
  background: rgba(244, 201, 93, 0.08);
}

.terms-inline-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.divider-text {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gauntlet-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.devil-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.shop-toolbar {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-top: 18px;
}

.shop-search-field {
  display: grid;
  gap: 8px;
}

.warning-text {
  color: #ffb199 !important;
}

.warning-card {
  border-color: rgba(255, 122, 0, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(255, 61, 0, 0.06)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.08);
}

.warning-card strong::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  color: #1d0d00;
  background: linear-gradient(135deg, #ffd35a, var(--coin-neon));
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.35);
}

.goal-choice-grid,
.goal-paths,
.pro-lock-card {
  display: grid;
  gap: 14px;
}

.goal-choice-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  align-items: stretch;
}

.goal-path-heading,
.pro-lock-card,
.toggle-row {
  align-items: center;
}

.goal-path-heading,
.pro-lock-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.goal-path-heading h3 {
  margin: 4px 0 0;
}

.custom-goal-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.custom-goal-label {
  display: grid;
  gap: 9px;
}

.suggested-goal-grid,
.pro-feature-grid,
.pricing-grid,
.weekday-selector {
  display: grid;
  gap: 12px;
}

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

.suggested-goal-card,
.pricing-card {
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.16), transparent 35%),
    rgba(255, 255, 255, 0.045);
  color: var(--text);
  border-radius: 22px;
  padding: 18px;
}

.suggested-goal-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.suggested-goal-card::after {
  content: "";
  position: absolute;
  inset: auto -22px -34px auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  filter: blur(2px);
}

.suggested-goal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 16px 34px rgba(255, 122, 0, 0.12);
}

.suggested-goal-card span,
.pro-badge {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #150d03;
  background: linear-gradient(135deg, #ffd35a, var(--coin-neon));
  font-size: 0.78rem;
  font-weight: 800;
}

.suggested-goal-card strong {
  font-size: 1.1rem;
}

.suggested-goal-card small {
  color: var(--muted);
}

.suggested-goal-card.selected {
  border-color: rgba(255, 122, 0, 0.8);
  box-shadow:
    0 16px 34px rgba(255, 122, 0, 0.18),
    inset 0 0 0 1px rgba(255, 122, 0, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.2), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
}

.pro-lock-card {
  display: grid;
  align-items: stretch;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.pro-lock-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.pro-lock-card.locked {
  opacity: 0.84;
  cursor: pointer;
}

.pro-lock-card.locked:hover {
  border-color: rgba(255, 122, 0, 0.48);
  box-shadow:
    0 16px 34px rgba(255, 122, 0, 0.12),
    inset 0 0 0 1px rgba(255, 122, 0, 0.08);
}

.weekday-selector {
  display: grid;
  grid-template-columns: repeat(7, 42px);
  gap: 10px;
  margin-top: 14px;
  padding: 10px;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.24);
}

.weekday-selector button {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.weekday-selector button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.65);
}

.weekday-selector button.selected {
  color: #150d03;
  background: linear-gradient(135deg, #ffd35a, var(--coin-neon));
  border-color: rgba(255, 209, 90, 0.95);
  box-shadow: 0 0 22px rgba(255, 122, 0, 0.35);
  transform: translateY(-2px) scale(1.04);
}

.weekday-summary {
  margin: 12px 0 0;
  color: #ffd35a;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 280px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.toggle-row input {
  width: 42px;
  height: 22px;
  accent-color: var(--coin-neon);
}

.pro-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.pro-feature-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.pricing-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.pricing-card {
  display: grid;
  gap: 8px;
}

.pricing-card strong {
  font-size: clamp(2rem, 5vw, 3rem);
}

.pricing-card.featured {
  border-color: rgba(255, 122, 0, 0.75);
  box-shadow: 0 18px 44px rgba(255, 122, 0, 0.16);
}

.pro-upgrade-modal-card {
  width: min(100%, 780px);
}

.proof-card,
.feed-list,
.challenge-form,
.log-form,
.calendar-grid,
.friend-cards,
.comment-list,
.comment-form,
.goal-chips {
  display: grid;
}

.proof-card,
.challenge-form,
.log-form,
.friend-cards,
.comment-list,
.goal-chips,
.quick-signup-row,
.quick-deposit-row {
  gap: 14px;
}

.comment-form {
  gap: 12px;
}

.panel-heading {
  justify-content: space-between;
  margin-bottom: 20px;
}

.feed-panel .panel-heading {
  align-items: flex-start;
}

.feed-panel .panel-heading > div {
  max-width: 320px;
}

.panel-title-compact {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
  max-width: 12ch;
}

.challenge-summary,
.hero-card-metrics {
  flex-wrap: wrap;
}

.progress-block {
  margin-top: 20px;
}

.progress-copy {
  justify-content: space-between;
  margin-bottom: 12px;
}

.progress-track {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
}

.feed-list {
  gap: 14px;
}

.feed-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-item:last-child {
  border-bottom: 0;
}

.feed-avatar.coral {
  background: rgba(255, 95, 69, 0.18);
}

.feed-avatar.gold {
  background: rgba(244, 201, 93, 0.18);
}

.feed-avatar.sky {
  background: rgba(106, 213, 255, 0.18);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.upload-field input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-field {
  position: relative;
}

.upload-label {
  color: var(--muted);
}

.upload-dropzone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(106, 213, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(106, 213, 255, 0.08), rgba(255, 95, 69, 0.08)),
    rgba(255, 255, 255, 0.03);
  min-height: 92px;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(106, 213, 255, 0.12);
  color: var(--accent-cool);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.upload-copy {
  display: grid;
  gap: 4px;
}

.upload-copy strong {
  color: var(--text);
  font-size: 1rem;
}

.upload-copy span {
  color: var(--muted);
  line-height: 1.5;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type="file"] {
  padding: 12px;
}

.full-width {
  width: 100%;
}

.logger-card {
  background:
    radial-gradient(circle at top right, rgba(244, 201, 93, 0.12), transparent 25%),
    var(--panel-strong);
}

.today-proof {
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.supporting-copy {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.strong-copy {
  color: var(--text);
}

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

.quick-signup-row,
.quick-deposit-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-deposit-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chip-button {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
}

.chip-button.active {
  background: linear-gradient(135deg, rgba(255, 95, 69, 0.24), rgba(255, 201, 93, 0.24));
  border-color: rgba(255, 95, 69, 0.45);
}

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

.community-panel {
  padding: 24px;
}

.friend-cards {
  gap: 12px;
}

.friend-card,
.comment-item,
.media-placeholder {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.friend-card {
  display: flex;
  gap: 14px;
  align-items: center;
}

.friend-card.selectable {
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.friend-card.selectable.active-follow {
  border-color: rgba(255, 95, 69, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 95, 69, 0.3);
}

.dashboard-goals-list {
  display: grid;
  gap: 16px;
}

.dashboard-goal-card {
  display: grid;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.dashboard-goal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dashboard-goal-open {
  width: 100%;
}

.compact-hero .topbar {
  margin-bottom: 28px;
}

.compact-hero .topbar-actions {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dashboard-panel {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
}

.dashboard-fun-grid {
  position: relative;
}

.dashboard-fun-grid::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 122, 0, 0.24), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(255, 209, 90, 0.14), transparent 26%),
    radial-gradient(circle at 80% 80%, rgba(106, 213, 255, 0.12), transparent 28%);
  animation: dashboardGlowShift 9s ease-in-out infinite alternate;
}

.dashboard-hero-panel {
  grid-column: span 2;
  border-color: rgba(255, 122, 0, 0.36);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 122, 0, 0.34), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(255, 209, 90, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), 0 0 48px rgba(255, 122, 0, 0.13);
  overflow: hidden;
}

.dashboard-hero-panel h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.dashboard-hero-panel .progress-track {
  height: 18px;
  border-color: rgba(255, 122, 0, 0.22);
  background: rgba(0, 0, 0, 0.34);
}

.dashboard-hero-panel .progress-fill {
  background: linear-gradient(90deg, #ff3d00, var(--coin-neon), #fff06d);
  box-shadow: 0 0 28px rgba(255, 122, 0, 0.46);
}

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

.dashboard-quick-actions .solid-button,
.dashboard-quick-actions .ghost-button {
  justify-content: center;
  min-height: 52px;
}

.dashboard-panel .panel-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.dashboard-panel .panel-heading > div {
  display: grid;
  gap: 4px;
}

.dashboard-panel .challenge-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-panel .challenge-summary > div,
.dashboard-stats-widget > div {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
}

.dashboard-panel .metric-label {
  line-height: 1.35;
}

.dashboard-panel .challenge-summary strong,
.dashboard-stats-widget strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.dashboard-panel .comment-item {
  padding: 18px 20px;
  border-radius: 20px;
}

.dashboard-stats-widget {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.reward-callout-panel {
  align-content: start;
}

.dashboard-reward-strip {
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-reward-image {
  margin-top: 4px;
}

.social-post {
  padding: 24px;
}

.quick-link-card,
.setup-panel,
.setup-hero {
  padding: 24px;
}

.advanced-links {
  padding: 24px;
  margin-top: 26px;
}

.start-steps {
  display: grid;
  gap: 14px;
}

.start-step {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.start-step:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 95, 69, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.start-step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.quick-primary-links {
  display: grid;
  gap: 12px;
}

.visual-card {
  gap: 16px;
}

.image-proof-grid {
  margin-top: 20px;
}

.feature-image {
  width: 100%;
  border-radius: 22px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.mini-visual-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.mini-visual-card {
  display: grid;
  gap: 12px;
}

.mini-feature-image {
  width: 100%;
  border-radius: 18px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-feature-image,
.dashboard-reward-image {
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.26));
}

.visual-card:hover .feature-image,
.mini-visual-card:hover .mini-feature-image,
.hero-card:hover .hero-feature-image,
.reward-callout-panel:hover .dashboard-reward-image {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 18px 34px rgba(255, 95, 69, 0.2));
}

.reward-preview-grid {
  margin-top: 24px;
}

.reward-preview-card,
.reward-callout-panel {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 95, 69, 0.06)),
    rgba(15, 20, 38, 0.82);
}

.reward-preview-strip,
.dashboard-reward-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.reward-pill {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #120f0c;
  background:
    radial-gradient(circle at 28% 25%, #fff6ba 0 12%, transparent 13%),
    linear-gradient(135deg, #ffd35a 0%, var(--coin-neon) 52%, var(--coin-hot) 100%);
  box-shadow:
    0 10px 24px rgba(255, 122, 0, 0.22),
    0 0 28px var(--coin-glow);
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.reward-pill:nth-child(2n) {
  background:
    radial-gradient(circle at 28% 25%, #fff6ba 0 12%, transparent 13%),
    linear-gradient(135deg, #ffbd42 0%, #ff7a00 55%, #ff3d00 100%);
}

.reward-pill:nth-child(3n) {
  background:
    radial-gradient(circle at 28% 25%, #fff6ba 0 12%, transparent 13%),
    linear-gradient(135deg, #ffe071 0%, #ff861f 55%, #ff4b14 100%);
}

[id*="coins"],
.coin-value,
.coins-value {
  color: #ffd35a;
  text-shadow:
    0 0 12px rgba(255, 122, 0, 0.45),
    0 0 24px rgba(255, 61, 0, 0.22);
}

.status-pill.live,
.coin-pill,
.coins-pill {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.7) 0 9%, transparent 10%),
    linear-gradient(135deg, #ffd35a 0%, var(--coin-neon) 56%, var(--coin-hot) 100%);
  box-shadow:
    0 12px 30px rgba(255, 122, 0, 0.24),
    0 0 22px rgba(255, 94, 0, 0.34);
}

.reward-callout-panel {
  display: grid;
  gap: 18px;
}

.compact-hero {
  padding-bottom: 10px;
}

.setup-title {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 5.8rem);
}

.preview-panel {
  display: grid;
  gap: 18px;
}

.bank-hero-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
}

.bank-hero-copy,
.bank-hero-visuals,
.bank-form-card,
.bank-preview-card,
.bank-support-card {
  position: relative;
  z-index: 1;
}

.bank-hype-row,
.bank-mini-grid,
.bank-bonus-grid {
  display: grid;
  gap: 14px;
}

.bank-hype-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.bank-hype-pill {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 106, 61, 0.14), rgba(106, 213, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.bank-hype-pill strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

.bank-feature-image {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.bank-form-card {
  background:
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.12), transparent 26%),
    var(--panel-strong);
}

.bank-preview-card {
  background:
    radial-gradient(circle at top left, rgba(106, 213, 255, 0.14), transparent 26%),
    var(--panel);
}

.bank-support-card {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(255, 106, 61, 0.08), rgba(106, 213, 255, 0.06)),
    var(--panel);
}

.bank-callout {
  background:
    linear-gradient(135deg, rgba(255, 106, 61, 0.14), rgba(255, 106, 61, 0.06)),
    rgba(255, 255, 255, 0.03);
}

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

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

.bank-bonus-grid > div {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.bank-bonus-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
}

.group-preview-panel {
  grid-column: 1 / -1;
}

.devil-history-panel {
  grid-column: 1 / -1;
}

.bank-proof-panel {
  grid-column: 1 / -1;
}

.proof-helper {
  margin-top: 4px;
}

.shop-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 122, 0, 0.26), transparent 34%),
    linear-gradient(150deg, rgba(255, 106, 61, 0.14), rgba(106, 213, 255, 0.07)),
    var(--panel);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.shop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.1) 50%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 0.22s ease, transform 0.45s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 0, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 34px rgba(255, 122, 0, 0.16);
}

.shop-card:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.shop-category-heading,
.shop-tier-heading {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 122, 0, 0.2);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 122, 0, 0.34), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(255, 209, 90, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(0, 0, 0, 0.18);
}

.shop-category-heading span,
.shop-tier-heading span {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #180b00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff06d, var(--coin-neon), #ff3d00);
  box-shadow: 0 0 28px rgba(255, 122, 0, 0.42);
}

.shop-category-heading h2,
.shop-tier-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
}

.shop-category-heading p,
.shop-tier-heading p {
  margin: 0;
  color: var(--muted);
}

.shop-category-heading.tracking {
  border-color: rgba(106, 213, 255, 0.3);
  background:
    radial-gradient(circle at 10% 20%, rgba(106, 213, 255, 0.24), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 0, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.shop-category-heading.strength,
.shop-category-heading.cardio {
  border-color: rgba(255, 61, 0, 0.34);
}

.shop-category-heading.hydration {
  border-color: rgba(64, 199, 255, 0.34);
  background:
    radial-gradient(circle at 10% 20%, rgba(64, 199, 255, 0.26), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 0, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
}

.category-tracking,
.category-hydration {
  background:
    radial-gradient(circle at 10% 5%, rgba(64, 199, 255, 0.2), transparent 34%),
    linear-gradient(150deg, rgba(255, 106, 61, 0.09), rgba(106, 213, 255, 0.12)),
    var(--panel);
}

.category-strength,
.category-cardio {
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 61, 0, 0.22), transparent 34%),
    linear-gradient(150deg, rgba(255, 106, 61, 0.16), rgba(255, 209, 90, 0.08)),
    var(--panel);
}

.pet-shop-panel,
.pet-shop-section {
  display: grid;
  gap: 18px;
}

.pet-shop-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pet-shop-section .shop-tier-heading {
  margin-top: 4px;
}

.pet-shop-page .shop-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pet-shop-hero {
  border-color: rgba(255, 122, 0, 0.35);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 122, 0, 0.2), transparent 30%),
    radial-gradient(circle at 84% 30%, rgba(255, 209, 90, 0.14), transparent 32%),
    var(--panel);
}

.pet-preview-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.pet-preview-card img,
.pet-shop-image {
  width: 132px;
  height: 104px;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 209, 90, 0.2), transparent 58%),
    linear-gradient(145deg, rgba(255, 122, 0, 0.12), rgba(0, 0, 0, 0.24));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 28px rgba(255, 122, 0, 0.13);
}

.pet-preview-card img {
  width: 156px;
  height: 118px;
}

.pet-item-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 122, 0, 0.18), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(255, 209, 90, 0.13), transparent 30%),
    var(--panel);
}

.pet-item-card .pet-shop-image {
  width: 100%;
  height: 220px;
  margin-bottom: 14px;
  padding: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pet-item-card:hover .pet-shop-image {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28), 0 0 34px rgba(255, 122, 0, 0.24);
}

.pet-accessory-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 122, 0, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.pet-accessory-card::after,
.pro-exclusive-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -34% 14%;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.28), transparent 68%);
  pointer-events: none;
}

.accessory-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 16px;
  border-radius: 26px;
  color: #1b0d02;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(145deg, rgba(255, 122, 0, 0.32), rgba(9, 10, 15, 0.86));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -12px 22px rgba(84, 25, 0, 0.22),
    0 18px 34px rgba(0, 0, 0, 0.22),
    0 0 34px rgba(255, 122, 0, 0.28);
  overflow: hidden;
  animation: accessoryFloat 3.2s ease-in-out infinite;
}

.accessory-icon.exclusive {
  color: #fff7da;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.8), transparent 22%),
    linear-gradient(135deg, #8c4dff, #ff7a00 52%, #ffd35a);
}

.accessory-icon::before,
.accessory-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.accessory-ball::before {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, #fffbe7 0 9px, transparent 10px),
    linear-gradient(135deg, #d7ff64 0 38%, #ff7a00 39% 62%, #111827 63%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28), 0 0 22px rgba(255, 122, 0, 0.52);
}

.accessory-ball::after {
  width: 74px;
  height: 16px;
  bottom: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
}

.accessory-bandana::before {
  width: 76px;
  height: 54px;
  clip-path: polygon(8% 15%, 92% 15%, 50% 94%);
  background: linear-gradient(135deg, #ff3d00, var(--coin-neon));
  box-shadow: 0 0 24px rgba(255, 122, 0, 0.5);
}

.accessory-bandana::after {
  top: 36px;
  left: 34px;
  width: 44px;
  height: 7px;
  border-radius: 999px;
  background: #fff0b8;
  transform: rotate(-8deg);
}

.accessory-collar::before {
  width: 78px;
  height: 44px;
  border: 12px solid #ff7a00;
  border-top-color: #ffe36a;
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: 0 0 22px rgba(255, 122, 0, 0.45);
}

.accessory-collar::after {
  width: 18px;
  height: 18px;
  bottom: 32px;
  border-radius: 50%;
  background: #ffd35a;
  box-shadow: 0 0 16px rgba(255, 211, 90, 0.7);
}

.accessory-leash::before {
  width: 82px;
  height: 82px;
  border: 8px solid #34d3ff;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
  box-shadow: 0 0 24px rgba(52, 211, 255, 0.44);
}

.accessory-leash::after {
  right: 18px;
  bottom: 22px;
  width: 50px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #34d3ff, #ff7a00);
  transform: rotate(-36deg);
}

.accessory-bed::before {
  width: 82px;
  height: 50px;
  bottom: 25px;
  border-radius: 26px 26px 18px 18px;
  background: linear-gradient(180deg, #ffd35a, #ff7a00);
  box-shadow: inset 0 -12px 0 rgba(68, 24, 0, 0.2), 0 0 22px rgba(255, 122, 0, 0.44);
}

.accessory-bed::after {
  top: 35px;
  width: 68px;
  height: 24px;
  border-radius: 999px;
  background: #fff0d7;
}

.accessory-cone::before {
  width: 46px;
  height: 74px;
  clip-path: polygon(50% 0, 92% 80%, 8% 80%);
  background: repeating-linear-gradient(180deg, #ff7a00 0 18px, #fff2c7 18px 29px);
  box-shadow: 0 0 22px rgba(255, 122, 0, 0.48);
}

.accessory-cone::after {
  width: 78px;
  height: 16px;
  bottom: 20px;
  border-radius: 999px;
  background: #252a34;
}

.accessory-harness::before {
  width: 82px;
  height: 70px;
  border: 10px solid #ff7a00;
  border-radius: 28px 28px 34px 34px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
  box-shadow: 0 0 26px rgba(255, 122, 0, 0.5);
}

.accessory-harness::after {
  width: 12px;
  height: 78px;
  border-radius: 999px;
  background: #ffe36a;
  transform: rotate(28deg);
}

.accessory-cape::before {
  width: 78px;
  height: 82px;
  clip-path: polygon(14% 0, 86% 0, 74% 100%, 50% 78%, 26% 100%);
  background: linear-gradient(160deg, #ff3d00, #ff7a00 48%, #6b1cff);
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.54);
}

.accessory-cape::after {
  top: 22px;
  width: 72px;
  height: 12px;
  border-radius: 999px;
  background: #fff1bd;
}

.accessory-crown::before {
  width: 82px;
  height: 58px;
  clip-path: polygon(0 30%, 18% 72%, 36% 16%, 50% 68%, 66% 16%, 82% 72%, 100% 30%, 92% 100%, 8% 100%);
  background: linear-gradient(180deg, #fff2a1, #ffd35a 45%, #ff7a00);
  box-shadow: 0 0 28px rgba(255, 211, 90, 0.58);
}

.accessory-crown::after {
  bottom: 32px;
  width: 70px;
  height: 9px;
  border-radius: 999px;
  background: #351707;
  opacity: 0.35;
}

.accessory-rocket::before {
  width: 48px;
  height: 86px;
  border-radius: 28px 28px 14px 14px;
  background:
    radial-gradient(circle at 50% 25%, #34d3ff 0 8px, #081018 9px 14px, transparent 15px),
    linear-gradient(180deg, #fff7dc, #ff7a00 72%, #1a1d27);
  transform: rotate(20deg);
  box-shadow: 0 0 28px rgba(255, 122, 0, 0.52);
}

.accessory-rocket::after {
  bottom: 8px;
  width: 32px;
  height: 44px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, #ffd35a, #ff3d00, transparent);
  transform: rotate(20deg);
}

.accessory-halo::before {
  width: 84px;
  height: 34px;
  border: 10px solid #ffe36a;
  border-radius: 50%;
  transform: rotate(-10deg);
  box-shadow: 0 0 30px rgba(255, 227, 106, 0.72);
}

.accessory-halo::after {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 65%);
}

.accessory-armor::before {
  width: 76px;
  height: 86px;
  clip-path: polygon(50% 0, 92% 18%, 82% 83%, 50% 100%, 18% 83%, 8% 18%);
  background: linear-gradient(145deg, #fbfbff, #8892a6 48%, #1e2638);
  box-shadow: 0 0 28px rgba(255, 122, 0, 0.5);
}

.accessory-armor::after {
  width: 46px;
  height: 7px;
  border-radius: 999px;
  background: #ff7a00;
  box-shadow: 0 0 16px rgba(255, 122, 0, 0.8);
  transform: rotate(-18deg);
}

.accessory-wings::before,
.accessory-wings::after {
  width: 58px;
  height: 82px;
  background: linear-gradient(145deg, #fff6d2, #ff7a00 48%, #8c4dff);
  box-shadow: 0 0 28px rgba(255, 122, 0, 0.46);
}

.accessory-wings::before {
  left: 17px;
  clip-path: polygon(100% 0, 10% 26%, 64% 42%, 0 68%, 90% 100%);
}

.accessory-wings::after {
  right: 17px;
  clip-path: polygon(0 0, 90% 26%, 36% 42%, 100% 68%, 10% 100%);
}

.pet-accessory-card:hover .accessory-icon {
  animation: accessoryPop 0.65s ease, accessoryFloat 2s ease-in-out infinite;
  transform: translateY(-5px) scale(1.04);
}

.pet-home-shell {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 122, 0, 0.24), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(62, 255, 142, 0.14), transparent 32%),
    var(--bg);
}

.pet-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.6fr);
  gap: 22px;
  align-items: start;
}

.pet-yard-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-color: rgba(87, 255, 118, 0.3);
  background:
    linear-gradient(180deg, #65c9ff 0%, #b5f0ff 40%, #69d84e 41%, #1b7c32 100%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    0 0 52px rgba(255, 122, 0, 0.18);
}

.pet-yard-sky,
.pet-yard-ground,
.pet-barn,
.pet-yard-stage {
  position: absolute;
}

.pet-yard-sky {
  inset: 0 0 42% 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 242, 164, 0.75), transparent 8%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
}

.yard-sun {
  position: absolute;
  top: 44px;
  left: 58px;
  width: 94px;
  height: 94px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #fff7b8, #ffd35a 45%, #ff7a00);
  box-shadow: 0 0 70px rgba(255, 211, 90, 0.72);
  animation: pulseGlow 3s ease-in-out infinite;
}

.yard-cloud {
  position: absolute;
  width: 150px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  filter: blur(0.2px);
  animation: yardCloudDrift 12s ease-in-out infinite;
}

.yard-cloud::before,
.yard-cloud::after {
  content: "";
  position: absolute;
  bottom: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.yard-cloud::before {
  left: 24px;
  width: 62px;
  height: 62px;
}

.yard-cloud::after {
  right: 28px;
  width: 78px;
  height: 78px;
}

.cloud-a {
  top: 82px;
  right: 12%;
}

.cloud-b {
  top: 166px;
  left: 34%;
  width: 118px;
  transform: scale(0.78);
  animation-delay: -4s;
}

.pet-barn {
  left: 48px;
  bottom: 150px;
  width: 218px;
  height: 176px;
  z-index: 2;
}

.barn-roof {
  position: absolute;
  left: 4px;
  top: 0;
  width: 210px;
  height: 92px;
  clip-path: polygon(50% 0, 100% 82%, 0 82%);
  background: linear-gradient(135deg, #ff3d00, #ff7a00);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.barn-body {
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 166px;
  height: 124px;
  border: 6px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px 18px 8px 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 8px, transparent 8px 24px),
    linear-gradient(180deg, #a72413, #61110b);
}

.barn-door {
  position: absolute;
  left: 82px;
  bottom: 0;
  width: 58px;
  height: 76px;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(45deg, transparent 46%, rgba(255, 255, 255, 0.28) 47% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 46%, rgba(255, 255, 255, 0.28) 47% 52%, transparent 53%),
    #36140a;
}

.pet-yard-ground {
  inset: 56% -8% -8% -8%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.28), transparent 18%),
    repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 16px),
    linear-gradient(180deg, #64db45, #1a8b36 42%, #0a4c25);
  transform: rotate(-1deg);
}

.pet-yard-stage {
  right: 6%;
  bottom: 52px;
  z-index: 4;
  width: min(460px, 58%);
  height: 410px;
  display: grid;
  place-items: end center;
}

.pet-yard-stage::after {
  content: "";
  position: absolute;
  bottom: 12px;
  width: 78%;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(2px);
}

.pet-yard-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 18px rgba(0, 0, 0, 0.32));
  animation: petYardIdle 2.4s ease-in-out infinite;
  transform-origin: 50% 92%;
}

.pet-yard-info {
  display: grid;
  gap: 16px;
  border-color: rgba(255, 122, 0, 0.28);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 122, 0, 0.2), transparent 30%),
    var(--panel);
}

.pet-inventory-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  border-color: rgba(255, 122, 0, 0.24);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 122, 0, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.04);
}

.pet-supply-inventory,
.pet-inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.pet-supply-card,
.pet-owned-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.045);
}

.pet-supply-card img,
.pet-owned-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.pet-supply-card strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--coin-neon);
  line-height: 1;
}

.pet-owned-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pet-owned-card.active {
  border-color: rgba(255, 122, 0, 0.7);
  box-shadow: 0 0 26px rgba(255, 122, 0, 0.16);
}

.pet-owned-card span {
  display: inline-block;
  margin-top: 5px;
  color: var(--muted);
}

.pet-yard-accessory-panel {
  grid-column: 1 / -1;
}

.pet-yard-accessories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.yard-accessory-card,
.yard-empty-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 170px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 122, 0, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.045);
  text-align: center;
}

.yard-accessory-card .accessory-icon {
  margin-bottom: 4px;
  transform: scale(0.9);
}

.yard-empty-card {
  grid-column: 1 / -1;
  align-content: center;
  color: var(--muted);
}

@keyframes yardCloudDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 18px 0;
  }
}

@keyframes petYardIdle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  45% {
    transform: translateY(-10px) rotate(-1deg);
  }
  55% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.pro-exclusive-card {
  border-color: rgba(255, 209, 90, 0.38);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.25), 0 0 34px rgba(255, 122, 0, 0.16);
}

.pro-exclusive-card .pro-badge {
  margin-bottom: 12px;
}

.pet-accessory-badge {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  color: #1b0d02;
  background: linear-gradient(135deg, #fff2a1, var(--coin-neon));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 122, 0, 0.34);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.pet-accessory-badge.exclusive {
  color: #fff;
  background: linear-gradient(135deg, #8c4dff, #ff7a00);
}

.shop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pet-care-panel {
  border-color: rgba(255, 122, 0, 0.22);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 122, 0, 0.2), transparent 34%),
    var(--panel);
}

.pet-house-panel {
  border-color: rgba(255, 122, 0, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.36), transparent 34%),
    radial-gradient(circle at 100% 30%, rgba(255, 209, 90, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 122, 0, 0.16);
}

.pet-care-body {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pet-house-panel .pet-care-body {
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.1);
}

.pet-care-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 122, 0, 0.28), transparent 60%),
    linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 -10px 22px rgba(88, 26, 0, 0.2),
    0 0 32px rgba(255, 122, 0, 0.35);
  animation: petBounce 1.2s ease-in-out infinite;
  overflow: hidden;
}

.pet-house-panel .pet-care-avatar {
  width: 220px;
  height: 176px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 209, 90, 0.34), transparent 58%),
    linear-gradient(145deg, rgba(255, 122, 0, 0.24), rgba(0, 0, 0, 0.18));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 22px 42px rgba(0, 0, 0, 0.25),
    0 0 44px rgba(255, 122, 0, 0.22);
  animation: petHouseJump 2.6s ease-in-out infinite;
}

.pet-house-panel .pet-care-avatar::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 84px;
  height: 42px;
  border-radius: 18px 18px 4px 4px;
  background: linear-gradient(135deg, #ff3d00, var(--coin-neon));
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.8;
}

.pet-care-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: petImageWiggle 3.8s ease-in-out infinite;
  transform-origin: 50% 90%;
}

.pet-warning-icon {
  position: absolute;
  top: -9px;
  right: -8px;
  display: none;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff3d00, #b90000);
  box-shadow: 0 0 26px rgba(255, 61, 0, 0.65);
  font-weight: 950;
  animation: pulseGlow 1.3s ease-in-out infinite;
}

.status-pill.danger {
  color: #fff;
  background: linear-gradient(135deg, #ff3d00, #a60000);
  box-shadow: 0 0 28px rgba(255, 61, 0, 0.48);
}

.pet-care-panel.pet-care-warning .pet-warning-icon {
  display: grid;
}

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

.pet-action-button {
  min-height: 60px;
  border-radius: 20px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 26px rgba(255, 122, 0, 0.22);
}

.pet-action-button::before {
  margin-right: 8px;
  font-size: 1.2rem;
}

.food-action::before {
  content: "+";
}

.water-action {
  background: linear-gradient(135deg, #35c8ff, #008cff);
}

.water-action::before {
  content: "+";
}

.standard-price {
  display: block;
  margin: 4px 0 10px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--coin-neon);
  text-decoration-thickness: 2px;
}

.floating-pet {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(430px, calc(100vw - 44px));
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(255, 122, 0, 0.24);
  border-radius: 999px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 211, 90, 0.26), transparent 24%),
    linear-gradient(135deg, rgba(22, 22, 26, 0.94), rgba(8, 8, 10, 0.92));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 122, 0, 0.18);
  cursor: pointer;
  backdrop-filter: blur(14px);
  animation: petFloat 3.4s ease-in-out infinite, petBubblePulse 5.5s ease-in-out infinite;
}

.floating-pet:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255, 122, 0, 0.62);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.48),
    0 0 36px rgba(255, 122, 0, 0.28);
}

.pet-body {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 94px;
  height: 94px;
  flex: 0 0 94px;
  border-radius: 30px;
  background: rgba(255, 122, 0, 0.08);
  box-shadow:
    inset 0 -8px 18px rgba(82, 24, 0, 0.2),
    0 0 22px rgba(255, 122, 0, 0.34);
  overflow: hidden;
  animation: petMiniJump 2.9s ease-in-out infinite;
}

.pet-image-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: petImageWiggle 3.2s ease-in-out infinite;
  transform-origin: 50% 90%;
}

.pet-image-body img[src$="pet-tabby.png"],
.pet-item-card img[src$="pet-tabby.png"],
.pet-preview-card img[src$="pet-tabby.png"],
.pet-yard-image[src$="pet-tabby.png"] {
  animation: catBreathe 2s ease-in-out infinite;
  transform-origin: 50% 88%;
}

@keyframes catBreathe {
  0%,
  100% {
    transform: scaleY(1) translateY(0);
  }
  50% {
    transform: scaleY(1.045) translateY(-2px);
  }
}

.pet-status {
  display: grid;
  gap: 2px;
  text-align: left;
}

.pet-status strong {
  font-size: 1.02rem;
}

.pet-status small {
  max-width: 270px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.pet-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffd35a;
  box-shadow: 0 0 14px rgba(255, 122, 0, 0.8);
  opacity: 0.8;
  animation: petSpark 2.4s ease-in-out infinite;
}

.pet-spark-a {
  left: 20px;
  top: -7px;
}

.pet-spark-b {
  right: 22px;
  bottom: -4px;
  animation-delay: 0.8s;
}

.floating-pet.sleepy {
  opacity: 0.78;
  filter: saturate(0.75);
}

.floating-pet.warning {
  border-color: rgba(255, 61, 0, 0.75);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(255, 61, 0, 0.42);
  animation: petFloat 2.4s ease-in-out infinite, pulseGlow 1.6s ease-in-out infinite;
}

.floating-pet.warning .pet-body {
  background: rgba(255, 61, 0, 0.16);
  box-shadow:
    inset 0 -8px 18px rgba(82, 24, 0, 0.2),
    0 0 26px rgba(255, 61, 0, 0.56);
}

.floating-pet.warning .pet-status strong::before {
  content: "!";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 999px;
  color: #fff;
  background: #ff3d00;
}

.floating-pet.amped .pet-body,
.floating-pet.pet-patted .pet-body {
  animation: petMiniJump 0.7s ease-in-out infinite, petImagePop 0.7s ease;
}

.floating-pet.pet-patted {
  animation: petPat 0.72s ease, petBubblePulse 1.2s ease;
}

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

@keyframes accessoryFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
}

@keyframes accessoryPop {
  0% {
    transform: scale(0.94);
  }
  55% {
    transform: scale(1.08) rotate(-2deg);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes petTailWag {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(22deg);
  }
}

@keyframes petEarWiggle {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 2px;
  }
}

@keyframes petBlink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.12);
  }
}

@keyframes petBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-4px) rotate(2deg);
  }
}

@keyframes petHouseJump {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  12% {
    transform: translateY(-14px) scale(1.035);
  }
  18% {
    transform: translateY(4px) scale(1.04, 0.96);
  }
  26% {
    transform: translateY(-6px) scale(0.98, 1.03);
  }
  34% {
    transform: translateY(0) scale(1);
  }
}

@keyframes petMiniJump {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg) scale(1);
  }
  14% {
    transform: translateY(-12px) rotate(2deg) scale(1.04);
  }
  22% {
    transform: translateY(2px) rotate(-2deg) scale(1.05, 0.95);
  }
  32% {
    transform: translateY(-5px) rotate(1deg) scale(0.98, 1.03);
  }
  42% {
    transform: translateY(0) rotate(-1deg) scale(1);
  }
}

@keyframes petImageWiggle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  18% {
    transform: rotate(-2deg) scale(1.02);
  }
  30% {
    transform: rotate(2.5deg) scale(1.025);
  }
  44% {
    transform: rotate(-1deg) scale(1.01);
  }
}

@keyframes petImagePop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.1) rotate(-2deg);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes petBubblePulse {
  0%,
  100% {
    box-shadow:
      0 18px 50px rgba(0, 0, 0, 0.42),
      0 0 28px rgba(255, 122, 0, 0.18);
  }
  50% {
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.5),
      0 0 44px rgba(255, 122, 0, 0.36);
  }
}

@keyframes petSpark {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes petPat {
  0%,
  100% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.04) rotate(-1deg);
  }
}

@keyframes dashboardGlowShift {
  0% {
    filter: hue-rotate(0deg) saturate(1);
    opacity: 0.85;
  }
  100% {
    filter: hue-rotate(-12deg) saturate(1.18);
    opacity: 1;
  }
}

.shop-buy-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.selectable-card {
  transition: border-color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.selectable-card.selected {
  border-color: rgba(255, 95, 69, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 95, 69, 0.35);
}

.social-comments-grid .social-post {
  grid-column: 1 / -1;
}

.proof-page-panel {
  padding: 24px;
}

.length-nudge {
  background:
    linear-gradient(135deg, rgba(255, 95, 69, 0.12), rgba(244, 201, 93, 0.1)),
    rgba(255, 255, 255, 0.03);
}

.support-link {
  color: var(--accent-cool);
  text-decoration: none;
}

.start-step {
  display: block;
  text-decoration: none;
  color: inherit;
}

.support-link:hover {
  text-decoration: underline;
}

.modal-open {
  overflow: hidden;
}

.app-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 10, 18, 0.8);
  backdrop-filter: blur(10px);
}

.app-modal-overlay.hidden {
  display: none;
}

.app-modal-card {
  width: min(100%, 620px);
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    #11151f;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.app-modal-card h2,
.app-modal-card p,
.app-modal-card strong {
  margin: 0;
}

.app-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.completion-modal-reward {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 95, 69, 0.18), rgba(106, 213, 255, 0.16));
}

.completion-modal-reward strong {
  font-size: clamp(2rem, 5vw, 3rem);
}

.beta-welcome-modal-card {
  text-align: center;
  border-color: rgba(255, 126, 27, 0.35);
  box-shadow: 0 28px 90px rgba(255, 95, 69, 0.22), 0 22px 60px rgba(0, 0, 0, 0.38);
}

.beta-welcome-modal-card h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.06em;
}

.beta-welcome-reward {
  background: linear-gradient(135deg, rgba(255, 95, 69, 0.28), rgba(244, 201, 93, 0.18));
}

.tutorial-modal-overlay {
  z-index: 1300;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 126, 27, 0.22), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(106, 213, 255, 0.14), transparent 34%),
    rgba(4, 7, 13, 0.84);
}

.tutorial-modal-card {
  position: relative;
  width: min(100%, 720px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 126, 27, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 126, 27, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #0b101c;
  box-shadow: 0 30px 90px rgba(255, 95, 69, 0.18), 0 26px 70px rgba(0, 0, 0, 0.48);
}

.tutorial-close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.tutorial-close-button:hover {
  border-color: rgba(255, 126, 27, 0.55);
  box-shadow: 0 0 24px rgba(255, 126, 27, 0.18);
}

.tutorial-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tutorial-progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff5f45, #ffb000, #fff0a6);
  box-shadow: 0 0 20px rgba(255, 126, 27, 0.55);
  transition: width 220ms ease;
}

.tutorial-content {
  display: grid;
  gap: 18px;
}

.tutorial-hero-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.tutorial-icon-shell {
  width: clamp(76px, 16vw, 108px);
  height: clamp(76px, 16vw, 108px);
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.48), transparent 28%),
    linear-gradient(135deg, rgba(255, 126, 27, 0.8), rgba(255, 95, 69, 0.24));
  box-shadow: 0 18px 42px rgba(255, 95, 69, 0.3);
  animation: tutorialFloat 3.2s ease-in-out infinite;
}

.tutorial-coin-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff7c7, #ffb000 42%, #ff6a00 68%, #7b3100);
  border: 3px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset -8px -10px 16px rgba(117, 40, 0, 0.5), 0 0 28px rgba(255, 126, 27, 0.55);
}

.tutorial-pet-icon,
.tutorial-goal-icon,
.tutorial-check-icon,
.tutorial-pro-icon {
  color: #071018;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.tutorial-bullet-grid {
  display: grid;
  gap: 10px;
}

.tutorial-bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.tutorial-bullet span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ff8a00;
  box-shadow: 0 0 16px rgba(255, 126, 27, 0.7);
}

.tutorial-bullet p {
  color: var(--text-secondary);
}

.tutorial-pro-link {
  justify-self: start;
  color: #ffb000;
  font-weight: 900;
  text-decoration: none;
}

.tutorial-pro-link:hover {
  text-decoration: underline;
}

.tutorial-footer {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr minmax(130px, auto);
  gap: 14px;
  align-items: center;
}

.tutorial-step-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.tutorial-step-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.tutorial-step-dots span.active {
  width: 28px;
  background: linear-gradient(90deg, #ff5f45, #ffb000);
  box-shadow: 0 0 18px rgba(255, 126, 27, 0.5);
}

.tutorial-timed-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.5);
}

.tutorial-exit-confirm {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 95, 69, 0.32);
  background: rgba(30, 14, 18, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.tutorial-exit-confirm.hidden {
  display: none;
}

@keyframes tutorialFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (max-width: 620px) {
  .tutorial-modal-overlay {
    align-items: end;
    padding: 14px;
  }

  .tutorial-modal-card {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    border-radius: 26px;
  }

  .tutorial-hero-row,
  .tutorial-footer {
    grid-template-columns: 1fr;
  }

  .tutorial-icon-shell {
    width: 82px;
    height: 82px;
  }

  .tutorial-footer .solid-button,
  .tutorial-footer .ghost-button {
    width: 100%;
  }
}

.terms-modal-card .comment-item,
.completion-modal-card .comment-item {
  margin: 0;
}

.site-footer {
  margin-top: 48px;
  padding: 28px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.site-footer-copy {
  max-width: 520px;
}

.site-footer-copy p {
  margin: 0;
}

.site-footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-footer-links a:hover {
  color: var(--text-primary);
}

.auth-secondary-actions {
  gap: 0.9rem;
}

.google-button-slot {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-fallback-button {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335) border-box;
  border-color: transparent;
  color: #16191f;
}

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

.legal-card {
  display: grid;
  gap: 16px;
}

.legal-card h2,
.legal-card h3,
.legal-card p {
  margin: 0;
}

.legal-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text-secondary);
}

.media-placeholder {
  display: grid;
  gap: 6px;
  min-height: 160px;
  place-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 95, 69, 0.18), rgba(106, 213, 255, 0.12)),
    rgba(255, 255, 255, 0.03);
}

.upload-preview {
  min-height: 120px;
}

.upload-preview-image {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof-status-chip::before,
.admin-proof-status::before {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.proof-status-chip.pending,
.admin-proof-status.pending {
  background: rgba(79, 166, 255, 0.12);
  color: #8ed0ff;
}

.proof-status-chip.pending::before,
.admin-proof-status.pending::before {
  content: "...";
  background: rgba(79, 166, 255, 0.18);
  color: #d8f0ff;
}

.proof-status-chip.approved,
.admin-proof-status.approved {
  background: rgba(124, 255, 143, 0.12);
  color: #98ffab;
}

.proof-status-chip.approved::before,
.admin-proof-status.approved::before {
  content: "v";
  background: rgba(124, 255, 143, 0.18);
  color: #08140b;
}

.proof-status-chip.declined,
.admin-proof-status.declined {
  background: rgba(255, 95, 69, 0.12);
  color: #ff9d8c;
}

.proof-status-chip.declined::before,
.admin-proof-status.declined::before {
  content: "x";
  background: rgba(255, 95, 69, 0.18);
  color: #1b0906;
}

.hidden {
  display: none !important;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.checkout-modal.hidden {
  display: none !important;
}

.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.72);
  backdrop-filter: blur(10px);
}

.checkout-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 24px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 95, 69, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 24, 43, 0.98), rgba(10, 14, 24, 0.98));
}

.comment-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.comment-item button {
  margin-top: 12px;
}

.calendar-section {
  margin-top: 26px;
}

.calendar-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.calendar-day {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  min-height: 108px;
}

.calendar-day span {
  display: block;
}

.calendar-day strong {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.calendar-day.complete strong {
  background: rgba(124, 255, 143, 0.14);
  color: var(--success);
}

.calendar-day.current {
  border-color: rgba(255, 95, 69, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 95, 69, 0.4);
}

.calendar-day.pending strong {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.calendar-day.rest {
  opacity: 0.74;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.025);
}

.calendar-day.rest strong {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.app-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: min(360px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(17, 24, 44, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.app-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.app-toast.success {
  border-color: rgba(124, 255, 143, 0.35);
}

.app-toast.error {
  border-color: rgba(255, 95, 69, 0.4);
}

.confetti-piece {
  position: fixed;
  top: -24px;
  width: 12px;
  height: 18px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1100;
  opacity: 0.95;
  animation-name: confetti-fall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.accounts-table-wrap {
  overflow-x: auto;
}

.accounts-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.accounts-table th,
.accounts-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

.accounts-table th {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.accounts-table td {
  color: var(--text);
}

.admin-toolbar {
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 18px;
}

.admin-page-grid {
  display: grid;
  gap: 22px;
}

.admin-hero-panel {
  padding-block: 28px;
  min-height: unset;
}

.admin-title {
  max-width: 760px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.admin-overview-metrics > div {
  flex: 1 1 180px;
}

.admin-search-field {
  display: grid;
  gap: 8px;
  width: min(100%, 420px);
  color: var(--text);
  font-weight: 600;
}

.admin-search-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.admin-search-field input::placeholder {
  color: var(--muted);
}

.admin-detail-list {
  display: grid;
  gap: 18px;
}

.admin-account-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.admin-account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-account-head > div:first-child {
  display: grid;
  gap: 3px;
}

.admin-account-head strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.admin-account-head span:not(.status-pill) {
  color: var(--muted);
}

.admin-head-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.admin-kpi-grid > div {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.admin-kpi-grid b {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.08rem;
}

.admin-stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.admin-stats-grid > div {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-stats-grid b {
  display: block;
  margin-top: 4px;
  font-size: 0.98rem;
}

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

.admin-section-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 16, 0.42);
}

.admin-section-wide {
  grid-column: 1 / -1;
}

.admin-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-section-title strong {
  color: var(--text);
}

.admin-meta-list {
  display: grid;
  gap: 9px;
}

.admin-meta-list span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-meta-list b {
  color: var(--text);
  overflow-wrap: anywhere;
  text-align: right;
}

.admin-empty-card {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.admin-empty-card strong {
  color: var(--text);
}

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

.admin-goal-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) minmax(130px, 1fr) minmax(130px, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.admin-goal-row > div {
  display: grid;
  gap: 5px;
}

.admin-goal-row span {
  color: var(--muted);
  font-size: 0.93rem;
}

.admin-activity-block {
  display: grid;
  gap: 10px;
}

.admin-activity-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.admin-purchase-list {
  padding-left: 0;
  list-style: none;
}

.admin-purchase-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.admin-purchase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-purchase-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 109, 61, 0.9), rgba(255, 184, 77, 0.9));
  color: #0b1020;
  font-weight: 800;
}

.admin-purchase-meta {
  color: var(--muted);
}

.admin-activity-list li {
  display: grid;
  gap: 4px;
}

.admin-activity-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.admin-proof-item {
  list-style: none;
  margin-left: 0;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.admin-proof-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.admin-proof-button {
  min-width: 120px;
}

.admin-proof-image {
  width: min(220px, 100%);
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.accounts-table tbody tr {
  transition: background 160ms ease, color 160ms ease;
}

.accounts-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.accounts-table td,
.accounts-table th {
  white-space: nowrap;
}

@keyframes confetti-fall {
  0% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 110vh, 0) rotate(540deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(244, 201, 93, 0.18);
  }
  50% {
    box-shadow: 0 16px 34px rgba(255, 95, 69, 0.28);
  }
}

@media (max-width: 980px) {
  .topbar,
  .hero-grid,
  .bank-hero-shell,
  .social-proof,
  .dashboard-grid,
  .builder-grid,
  .community-grid,
  .social-comments-grid,
  .quick-links-grid,
  .quick-start-grid,
  .setup-grid,
  .group-grid,
  .shop-cards,
  .shop-grid,
  .proof-grid,
  .login-grid,
  .bank-grid,
  .gauntlet-grid,
  .devil-grid,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .mini-visual-strip {
    grid-template-columns: 1fr;
  }

  .admin-section-grid,
  .admin-goal-row {
    grid-template-columns: 1fr;
  }

  .admin-head-pills,
  .admin-meta-list span {
    justify-content: flex-start;
  }

  .admin-meta-list span {
    flex-direction: column;
    gap: 4px;
  }

  .topbar-actions {
    justify-content: flex-start;
  }

  .coin-hud {
    order: -1;
  }

  .compact-hero .topbar {
    gap: 16px;
    margin-bottom: 22px;
  }

  .dashboard-panel {
    padding: 24px;
  }

  .dashboard-hero-panel {
    grid-column: span 1;
  }

  .dashboard-quick-actions {
    grid-template-columns: 1fr;
  }

  .dashboard-stats-widget {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-card {
    transform: none;
  }

  .today-proof,
  .panel-heading,
  .progress-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .bank-hype-row,
  .bank-mini-grid,
  .bank-bonus-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    flex-direction: column;
  }

  .app-modal-actions {
    flex-direction: column;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: 4.2rem;
  }

  .hero-card,
  .dashboard-panel,
  .proof-card,
  .calendar-section,
  .builder-grid .card {
    padding: 20px;
  }

  .hero-actions,
  .topbar-actions,
  .hero-stats,
  .challenge-summary,
  .hero-card-metrics {
    flex-direction: column;
  }

  .dashboard-grid {
    gap: 20px;
  }

  .compact-hero .topbar-actions .ghost-button,
  .compact-hero .topbar-actions .logout-button {
    width: 100%;
  }

  .topbar-actions .coin-hud {
    width: 100%;
    justify-content: space-between;
  }

  .coin-hud strong {
    min-width: 0;
    flex: 1;
    text-align: center;
  }

  .dashboard-panel {
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
  }

  .dashboard-panel .challenge-summary,
  .dashboard-stats-widget {
    grid-template-columns: 1fr !important;
  }

  .dashboard-panel .challenge-summary > div,
  .dashboard-stats-widget > div {
    min-height: 0;
  }

  .split-fields,
  .goal-chips,
  .quick-signup-row,
  .quick-deposit-row {
    grid-template-columns: 1fr;
  }

  .suggested-goal-grid,
  .goal-choice-grid,
  .pro-feature-grid,
  .pricing-grid,
  .pro-feature-grid.compact,
  .pricing-grid.compact {
    grid-template-columns: 1fr;
  }

  .goal-path-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .weekday-selector {
    grid-template-columns: repeat(4, 42px);
    width: 100%;
    border-radius: 24px;
  }

  .toggle-row {
    max-width: none;
  }

  .floating-pet {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .pet-status small {
    max-width: none;
  }

  .pet-shop-page .shop-cards,
  .pet-shop-section,
  .pet-care-actions {
    grid-template-columns: 1fr;
  }

  .pet-preview-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
