:root {
  color-scheme: dark;
  --bg: #020604;
  --panel: #06100b;
  --panel-2: #0a1a10;
  --line: rgba(116, 255, 74, 0.3);
  --text: #f7f7f7;
  --muted: #b0b8aa;
  --gold: #f5c64a;
  --gold-2: #ffe893;
  --blue: #76f84c;
  --green: #74f849;
  --green-2: #25b72c;
  --green-soft: rgba(116, 248, 73, 0.16);
  --pink: #f5c64a;
  --danger: #ff5c70;
  --shadow: 0 22px 60px rgba(5, 255, 72, 0.14), 0 22px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(116, 248, 73, 0.16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(245, 198, 74, 0.12), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(37, 183, 44, 0.12), transparent 38%),
    linear-gradient(145deg, #000201, #031009 48%, #020504);
  color: var(--text);
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.app {
  width: min(100%, 1220px);
  margin: 0 auto;
  min-height: 100vh;
  padding: 18px 18px 104px;
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 0 18px;
  backdrop-filter: blur(18px);
}

.admin-shell .topbar {
  grid-template-columns: auto minmax(120px, 1fr) auto auto auto;
}

.admin-shell {
  width: 100%;
  max-width: none;
  height: 100vh;
  overflow: hidden;
  padding: 18px 32px;
}

.admin-menu-button,
.admin-mobile-head,
.admin-mobile-links,
.admin-menu-scrim {
  display: none;
}

.brand,
.drawer-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255, 226, 125, 0.75);
  border-radius: 50%;
  color: #080808;
  font-weight: 950;
  letter-spacing: -2px;
  background:
    linear-gradient(140deg, #fff3ac, #b87509 42%, #ffcd3c 70%, #8d5207),
    #d89918;
  box-shadow: inset 0 -10px 16px rgba(0, 0, 0, 0.3), 0 0 26px rgba(248, 189, 41, 0.28);
}

.site-logo {
  width: auto;
  max-width: 42vw;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand strong {
  display: block;
  font-size: clamp(1.28rem, 4vw, 2.1rem);
  font-style: italic;
  line-height: 1;
}

.brand strong span,
.gold {
  color: var(--gold);
}

.brand small,
.drawer-head small,
.launch-timer small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.launch-timer {
  justify-self: center;
  min-width: 142px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 9px 14px;
  background: rgba(16, 20, 27, 0.72);
}

.launch-timer strong {
  color: var(--gold-2);
  font-size: 0.94rem;
}

.admin-link,
.menu-button,
.icon-button,
.ghost-button,
.primary-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(16, 20, 27, 0.82);
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 16px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
}

.menu-button {
  width: 54px;
  height: 48px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 6px;
  padding: 10px 6px;
}

.menu-button span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #e9e9e9;
}

.drawer,
.scrim,
.modal-backdrop {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
}

.drawer {
  inset: 0 auto 0 0;
  width: min(360px, 84vw);
  padding: 22px;
  z-index: 50;
  transform: translateX(-100%);
  background: #0b0f15;
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.scrim {
  z-index: 45;
  background: rgba(0, 0, 0, 0.56);
}

.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer nav {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.drawer nav a,
.drawer nav button,
.admin-row button,
.quick-card,
.explore-card,
.nav-card,
.table-row {
  border: 1px solid rgba(248, 189, 41, 0.38);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 24px rgba(248, 189, 41, 0.08);
}

.drawer nav a,
.drawer nav button {
  display: block;
  border-radius: 14px;
  padding: 14px;
  text-align: left;
}

.dashboard {
  display: grid;
  gap: 18px;
}

.public-home {
  display: grid;
  gap: 22px;
}

.public-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.9fr;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.98), rgba(5, 8, 13, 0.52)),
    var(--hero-image, linear-gradient(transparent, transparent)),
    radial-gradient(circle at 76% 44%, rgba(248, 189, 41, 0.36), transparent 28%),
    #080b10;
  background-size: cover, cover, auto, auto;
  background-position: center, center, center, center;
  box-shadow: var(--shadow);
}

.public-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.98;
}

.public-hero h1 span,
.landing-section h2 span {
  color: var(--gold);
}

.public-hero p {
  max-width: 470px;
  margin: 22px 0 28px;
  color: #dedede;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  line-height: 1.45;
}

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

.hero-actions a,
.refer-band a {
  gap: 10px;
}

.public-coin {
  position: static;
  justify-self: center;
  transform: none;
  width: min(310px, 42vw);
  opacity: 1;
}

.hero-coin-image {
  position: absolute;
  right: clamp(-12px, 5vw, 42px);
  top: 50%;
  width: clamp(118px, 22vw, 260px);
  aspect-ratio: 1;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 34px rgba(248, 189, 41, 0.45));
}

.hero-coin-image.public-coin {
  position: static;
  transform: none;
  justify-self: center;
  width: min(330px, 42vw);
}

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

.feature-card {
  min-height: 240px;
  border: 1px solid rgba(248, 189, 41, 0.38);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 14px 34px rgba(248, 189, 41, 0.1);
}

.feature-card span,
.public-stats article > span,
.how-grid article > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.04);
  font-size: 2rem;
}

.feature-card h3 {
  margin: 0;
}

.feature-card p {
  margin: 0;
  color: #e0e0e0;
  line-height: 1.45;
}

.feature-card.gold,
.gold {
  color: var(--gold);
}

.public-stats {
  border: 1px solid rgba(248, 189, 41, 0.38);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: rgba(16, 20, 27, 0.78);
  box-shadow: var(--shadow), 0 12px 34px rgba(248, 189, 41, 0.14);
}

.public-stats article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.public-stats small {
  display: block;
  color: var(--muted);
}

.public-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.landing-section {
  display: grid;
  gap: 18px;
  text-align: center;
}

.landing-section h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.plan-card {
  position: relative;
  border: 1px solid rgba(248, 189, 41, 0.38);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 34px rgba(248, 189, 41, 0.1);
}

.plan-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(248, 189, 41, 0.2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  padding: 7px 18px;
  color: #1b1200;
  background: var(--gold);
  font-weight: 850;
}

.plan-card h3 {
  margin: 0;
}

.plan-card strong {
  color: var(--gold);
  font-size: 2.2rem;
}

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

.plan-card li i {
  color: var(--gold);
  margin-right: 8px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.how-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.how-grid h3,
.how-grid p {
  margin: 0;
}

.how-grid p {
  color: #dfdfdf;
}

.refer-band {
  border: 1px solid rgba(219, 88, 255, 0.5);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(219, 88, 255, 0.18), rgba(20, 10, 36, 0.78));
}

.refer-band h2 {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.welcome-card,
.mining-banner,
.coin-total,
.section-panel,
.admin-panel,
.profile-panel {
  border: 1px solid rgba(248, 189, 41, 0.45);
  border-radius: 18px;
  background: rgba(16, 20, 27, 0.78);
  box-shadow: var(--shadow), 0 12px 34px rgba(248, 189, 41, 0.16);
}

.welcome-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
}

.user-chip {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.avatar {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 3px solid var(--gold);
  background: linear-gradient(#f8bf32, #744405);
  color: #111;
  font-size: 0;
}

.avatar-img {
  object-fit: cover;
  padding: 0;
  background: #111;
}

.avatar-img::before,
.avatar-img::after {
  display: none;
}

.avatar::before,
.avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #151006;
  opacity: 0.82;
}

.avatar::before {
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.avatar::after {
  bottom: 14px;
  width: 48px;
  height: 30px;
  border-radius: 28px 28px 10px 10px;
}

.welcome-card h1,
.wallet-box strong,
.stat-value {
  color: var(--gold);
}

.welcome-card h1 {
  margin: 4px 0;
  font-size: clamp(1.35rem, 5vw, 2.2rem);
}

.copy-line {
  color: var(--muted);
}

.copy-line button {
  margin-left: 6px;
}

.wallet-box {
  display: block;
  min-width: 170px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #090b10;
}

.wallet-box span,
.metric span,
.table-head,
.muted {
  color: var(--muted);
}

.wallet-box strong {
  display: block;
  margin-top: 7px;
  font-size: 1.85rem;
}

.wallet-box strong.break-text {
  font-size: 0.85rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.wallet-box .primary-button {
  width: 100%;
  margin-top: 12px;
}

.wallet-box .ghost-button {
  width: 100%;
  margin-top: 8px;
}

.wallet-box small {
  display: block;
  margin-top: 8px;
}

.wallet-status-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.wallet-status-panel div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  min-width: 0;
}

.wallet-status-panel span,
.wallet-status-panel strong {
  display: block;
}

.wallet-status-panel span {
  color: var(--muted);
  font-size: 0.78rem;
}

.wallet-status-panel strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.wallet-connected-label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--green);
}

.desktop-coin-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 12px;
  align-items: center;
}

.desktop-coin-actions .ghost-button {
  min-height: 54px;
  justify-content: center;
  border-color: rgba(116, 248, 73, 0.5);
  color: var(--green);
  font-weight: 900;
}

.mobile-dashboard {
  display: none;
}

.mining-banner {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 30px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.95), rgba(5, 8, 13, 0.42)),
    var(--hero-image, linear-gradient(transparent, transparent)),
    radial-gradient(circle at 78% 45%, rgba(255, 200, 53, 0.26), transparent 28%),
    #080b10;
  background-size: cover, cover, auto, auto;
  background-position: center, center, center, center;
}

.mining-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 8vw, 4.7rem);
  line-height: 0.95;
}

.mining-banner p {
  margin: 8px 0;
  font-size: clamp(1rem, 3.8vw, 1.42rem);
  font-weight: 800;
}

.coin-art {
  position: absolute;
  right: clamp(-12px, 5vw, 42px);
  top: 50%;
  width: clamp(118px, 22vw, 215px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 10px solid #d69413;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #251400;
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 950;
  background: radial-gradient(circle at 36% 28%, #fff1a8, #f5b828 36%, #8b4e06 76%);
  box-shadow: 0 0 34px rgba(248, 189, 41, 0.45);
  opacity: 0.84;
}

.quick-actions,
.overview-grid,
.explore-grid,
.admin-grid,
.metrics-grid {
  display: grid;
  gap: 14px;
}

.quick-actions {
  grid-template-columns: repeat(3, 1fr);
}

.quick-card,
.explore-card,
.metric,
.nav-card {
  border-radius: 16px;
  padding: 18px;
}

.quick-card {
  min-height: 116px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: clamp(0.95rem, 3vw, 1.25rem);
}

.quick-card span,
.explore-art,
.metric-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.8rem;
}

.blue {
  color: var(--blue);
}

.pink {
  color: var(--pink);
}

.green {
  color: var(--green);
}

.quick-card.blue {
  background: linear-gradient(135deg, rgba(38, 169, 255, 0.22), rgba(38, 169, 255, 0.05));
}

.quick-card.pink {
  background: linear-gradient(135deg, rgba(219, 88, 255, 0.23), rgba(219, 88, 255, 0.05));
}

.quick-card.green {
  background: linear-gradient(135deg, rgba(62, 223, 118, 0.23), rgba(62, 223, 118, 0.05));
}

.coin-total {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.coin-stack {
  width: 92px;
  height: 72px;
  position: relative;
}

.coin-stack::before,
.coin-stack::after,
.coin-stack span {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(#ffdc72, #ba7508);
  border: 2px solid #ffd65a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.coin-stack::before {
  width: 58px;
  height: 28px;
  left: 6px;
  bottom: 4px;
}

.coin-stack::after {
  width: 52px;
  height: 26px;
  left: 28px;
  bottom: 22px;
}

.coin-stack span {
  width: 34px;
  height: 18px;
  left: 52px;
  bottom: 0;
}

.coin-total strong {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(1.55rem, 5vw, 2.1rem);
}

.section-title {
  margin: 14px 0 0;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
}

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

.metric {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(248, 189, 41, 0.38);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 34px rgba(248, 189, 41, 0.1);
}

.stat-value {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.45rem, 5vw, 2.05rem);
  font-weight: 850;
}

.explore-card {
  min-height: 192px;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 14px;
  align-items: center;
  text-align: left;
}

.explore-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 4.4vw, 1.9rem);
}

.explore-card p {
  color: #d8d8d8;
  line-height: 1.48;
}

.explore-card button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--gold), #f6a915);
  color: #181000;
  font-weight: 850;
}

.primary-button i,
.ghost-button i,
.admin-link i {
  flex: 0 0 auto;
}

.explore-card:nth-child(2) button,
.explore-card:nth-child(2) .primary-button {
  background: linear-gradient(135deg, #ce58ff, #6a33d4);
  color: white;
}

.explore-art {
  width: 100%;
  height: 150px;
  font-size: 4.2rem;
  background:
    radial-gradient(circle at 42% 42%, rgba(248, 189, 41, 0.34), transparent 36%),
    rgba(255, 255, 255, 0.06);
}

.section-panel,
.admin-panel,
.profile-panel {
  padding: 22px;
}

.page-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.page-head h1,
.modal h2,
.admin-panel h2 {
  margin: 0;
}

.metrics-grid {
  grid-template-columns: repeat(3, 1fr);
}

.nav-card {
  display: grid;
  gap: 8px;
  text-decoration: none;
}

.coin-address-panel,
.coin-send-form {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.coin-address-panel span {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  font-weight: 800;
}

.coin-address-panel strong {
  color: var(--gold-2);
  font-size: clamp(1rem, 3vw, 1.35rem);
  line-height: 1.35;
}

.table {
  display: grid;
  gap: 8px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.history-scroll {
  max-height: 360px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  color: var(--text);
  background: rgba(255, 255, 255, 0.025);
}

.data-table th,
.data-table td {
  border: 1px solid var(--line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  background: rgba(248, 189, 41, 0.08);
}

.data-table td {
  color: var(--muted);
  font-size: 0.9rem;
}

.history-scroll .data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.commission-table .data-table {
  min-width: 980px;
}

.commission-table .data-table th {
  color: var(--gold-2);
  text-align: center;
  border-color: rgba(245, 198, 74, 0.78);
  background:
    linear-gradient(180deg, rgba(9, 92, 24, 0.98), rgba(1, 43, 12, 0.98)),
    rgba(248, 189, 41, 0.08);
  box-shadow: inset 0 0 18px rgba(116, 248, 73, 0.16);
}

.commission-table .data-table td {
  text-align: center;
}

.commission-table .data-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 800;
}

.table-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  padding: 12px 14px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
}

.profile-panel {
  display: grid;
  gap: 12px;
}

.field-list {
  display: grid;
  gap: 10px;
}

.field-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.admin-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

.admin-toolbar button,
.admin-toolbar a,
.ghost-button,
.icon-button {
  border-radius: 12px;
  padding: 10px 14px;
}

.admin-toolbar a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(16, 20, 27, 0.82);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-toolbar button.active,
.admin-toolbar a.active {
  border-color: rgba(248, 189, 41, 0.7);
  color: var(--gold);
}

.admin-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.admin-count-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.admin-count-card {
  align-items: flex-start;
  min-height: 118px;
}

.admin-count-card strong {
  display: block;
  margin-top: 6px;
  color: var(--gold-2);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
}

.admin-count-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.admin-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  height: calc(100vh - 104px);
  overflow: hidden;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 8px;
  background: rgba(16, 20, 27, 0.78);
  box-shadow: var(--shadow);
}

.admin-panel {
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.admin-guide-head {
  align-items: center;
}

.admin-guide-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.admin-guide-quick a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.admin-guide-quick a:hover {
  color: var(--gold-2);
  border-color: rgba(245, 198, 74, 0.62);
}

.admin-guide-quick i {
  color: var(--gold);
}

.admin-guide-note,
.admin-guide-card {
  border: 1px solid rgba(248, 189, 41, 0.38);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 34px rgba(248, 189, 41, 0.1);
}

.admin-guide-note {
  margin-bottom: 18px;
  padding: 18px;
}

.admin-guide-note strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.06rem;
}

.admin-guide-note p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.admin-guide-card {
  padding: 18px;
}

.admin-guide-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-guide-title span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(245, 198, 74, 0.12);
}

.admin-guide-title h2 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.admin-guide-list {
  display: grid;
  gap: 12px;
}

.admin-guide-list div {
  padding-top: 12px;
  border-top: 1px solid rgba(116, 248, 73, 0.18);
}

.admin-guide-list h3 {
  margin: 0 0 6px;
  color: var(--gold-2);
  font-size: 0.98rem;
}

.admin-guide-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.admin-sidebar strong {
  margin-bottom: 8px;
}

.admin-sidebar a {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.admin-sidebar a.active {
  border-color: rgba(248, 189, 41, 0.72);
  color: var(--gold);
}

.admin-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.admin-menu-scrim.open {
  display: block;
}

.admin-row {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(248, 189, 41, 0.38);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 34px rgba(248, 189, 41, 0.1);
}

.admin-row.unread-row {
  border-color: rgba(248, 189, 41, 0.55);
  background: rgba(248, 189, 41, 0.06);
}

.admin-table-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(248, 189, 41, 0.28);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(248, 189, 41, 0.08);
}

.admin-users-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.admin-users-table th,
.admin-users-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-users-table th {
  color: var(--gold);
  background: rgba(248, 189, 41, 0.08);
  font-size: 0.86rem;
}

.admin-users-table tr:last-child td {
  border-bottom: 0;
}

.link-button {
  border: 0;
  padding: 0;
  color: var(--gold);
  background: transparent;
  font-weight: 800;
}

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

.admin-pagination div {
  display: flex;
  gap: 8px;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 180px;
}

.table-actions form {
  margin: 0;
}

.reward-action-panel {
  display: grid;
  gap: 10px;
  min-width: 380px;
}

.reward-action-panel > .ghost-button,
.reward-action-panel > .tiny-status {
  justify-self: start;
}

.admin-reward-pay-form {
  display: grid;
  grid-template-columns: minmax(96px, 0.55fr) minmax(170px, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(116, 248, 73, 0.26);
  border-radius: 14px;
  background: rgba(3, 13, 8, 0.66);
}

.admin-reward-pay-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-reward-pay-form input {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid rgba(116, 248, 73, 0.36);
  border-radius: 10px;
  padding: 9px 11px;
  color: var(--text);
  background: rgba(1, 7, 4, 0.94);
}

.admin-reward-pay-form .primary-button {
  min-height: 42px;
  padding: 9px 14px;
  white-space: nowrap;
}

.bulk-form {
  display: grid;
  gap: 14px;
}

.bulk-dummy-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(116, 248, 73, 0.28);
  border-radius: 14px;
  padding: 16px;
  background: rgba(3, 13, 8, 0.68);
}

.bulk-dummy-panel h2 {
  margin: 2px 0 0;
  color: var(--gold);
}

.bulk-dummy-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(7, minmax(86px, 1fr));
  gap: 10px;
  align-items: end;
}

.bulk-dummy-root {
  min-width: 0;
}

.dummy-status {
  min-width: 0;
  min-height: 24px;
  padding: 5px 8px;
  color: #101000;
  background: var(--gold);
}

.check-row {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.tiny-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 32px;
  padding: 8px 12px;
  line-height: 1.1;
  margin: 0;
}

.admin-user-modal {
  width: min(1180px, calc(100vw - 28px));
  max-height: min(88vh, 920px);
  overflow: auto;
}

.admin-user-detail {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-user-mini-metrics {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.admin-detail-title {
  margin: 4px 0 0;
  color: var(--gold);
}

.compact-admin-table {
  max-height: 340px;
  overflow: auto;
}

.compact-admin-table .admin-users-table {
  min-width: 760px;
}

.compact-admin-table input {
  width: 100%;
  min-width: 110px;
  border: 1px solid rgba(116, 248, 73, 0.32);
  border-radius: 8px;
  padding: 8px 9px;
  color: var(--text);
  background: rgba(1, 7, 4, 0.92);
}

.admin-row button {
  border-radius: 10px;
  padding: 9px 12px;
  justify-self: start;
}

.admin-toggle-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(135, 255, 87, 0.34);
  border-radius: 16px;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(116, 248, 73, 0.14), transparent 36%),
    rgba(3, 13, 8, 0.72);
  box-shadow: 0 18px 38px rgba(116, 248, 73, 0.08);
}

.admin-toggle-card h2 {
  margin: 2px 0 4px;
}

.admin-toggle-card p {
  margin: 0;
}

.admin-reset-card {
  border-color: rgba(255, 92, 112, 0.42);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 92, 112, 0.12), transparent 36%),
    rgba(18, 5, 8, 0.72);
}

.admin-reset-card h2 {
  color: var(--danger);
}

.admin-reset-card .danger-button {
  min-height: 46px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 850;
}

.admin-reset-page-card {
  margin-bottom: 14px;
}

.admin-reset-table-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-reset-table-list span {
  border: 1px solid rgba(255, 92, 112, 0.32);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  background: rgba(255, 92, 112, 0.06);
  font-size: 0.86rem;
}

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

.admin-history-help {
  border: 1px solid rgba(116, 248, 73, 0.24);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(116, 248, 73, 0.06);
}

.admin-history-help p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-history-balance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-history-balance div {
  border: 1px solid rgba(245, 198, 74, 0.32);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-history-balance span,
.admin-history-balance strong {
  display: block;
}

.admin-history-balance span {
  color: var(--muted);
  font-size: 0.8rem;
}

.admin-history-balance strong {
  margin-top: 6px;
  color: var(--gold-2);
  overflow-wrap: anywhere;
}

.admin-history-rows .admin-users-table {
  min-width: 640px;
}

.admin-history-rows input {
  width: 100%;
  min-width: 140px;
  border: 1px solid rgba(116, 248, 73, 0.32);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--text);
  background: rgba(1, 7, 4, 0.92);
}

.admin-switch {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.admin-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.admin-switch span {
  position: relative;
  width: 62px;
  height: 34px;
  flex: 0 0 62px;
  border: 1px solid rgba(245, 198, 74, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.36);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.admin-switch span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d5d9df;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease, background 0.2s ease;
}

.admin-switch input:checked + span {
  border-color: rgba(135, 255, 87, 0.86);
  background: linear-gradient(135deg, rgba(68, 218, 52, 0.84), rgba(245, 198, 74, 0.82));
  box-shadow: 0 0 22px rgba(116, 248, 73, 0.26);
}

.admin-switch input:checked + span::after {
  transform: translateX(28px);
  background: #fafff6;
}

.admin-switch strong {
  min-width: 74px;
  color: var(--text);
}

.admin-switch .switch-state-on {
  display: none;
}

.admin-switch .switch-state-off {
  display: inline;
}

.admin-switch input:checked ~ strong .switch-state-on {
  display: inline;
}

.admin-switch input:checked ~ strong .switch-state-off {
  display: none;
}

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

.row-actions form {
  margin: 0;
}

.danger-button {
  border: 1px solid rgba(255, 92, 112, 0.45);
  color: var(--danger);
  background: rgba(255, 92, 112, 0.08);
}

.success,
.alert {
  border-radius: 12px;
  padding: 12px 14px;
}

.success {
  border: 1px solid rgba(62, 223, 118, 0.4);
  color: var(--green);
  background: rgba(62, 223, 118, 0.08);
}

.alert {
  border: 1px solid rgba(255, 92, 112, 0.42);
  color: var(--danger);
  background: rgba(255, 92, 112, 0.08);
}

.login-wrap {
  display: grid;
  place-items: center;
  padding-bottom: 18px;
}

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

.wide-login {
  width: min(760px, 100%);
}

.login-brand {
  margin-bottom: 18px;
}

.login-form {
  display: grid;
  gap: 14px;
}

.support-form {
  display: grid;
  gap: 14px;
}

.compact-form {
  margin-top: 10px;
}

.auth-choice-grid,
.suggestion-row {
  display: grid;
  gap: 14px;
}

.auth-choice-grid {
  grid-template-columns: repeat(2, 1fr);
}

.suggestion-row {
  grid-template-columns: repeat(3, 1fr);
  margin: 16px 0;
}

.available-text {
  color: var(--green);
}

.taken-text {
  color: var(--danger);
}

.recovery-card {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.recovery-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  padding: 14px;
  border: 1px solid rgba(248, 189, 41, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.recovery-list div {
  min-width: 0;
}

.recovery-list span {
  color: var(--muted);
  display: inline-block;
  width: 30px;
  text-align: right;
}

.break-text {
  overflow-wrap: anywhere;
}

.mini-actions,
.inline-pay-form,
.modal-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.mini-actions .primary-button,
.mini-actions .ghost-button {
  flex: 1 1 190px;
  min-height: 46px;
  padding-inline: 14px;
  gap: 9px;
  white-space: normal;
}

.inline-pay-form input,
.modal-inline-form input {
  min-width: 120px;
  flex: 1;
}

.support-thread-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.support-view {
  background:
    radial-gradient(circle at 18% 12%, rgba(39, 175, 98, 0.12), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(43, 172, 226, 0.08), transparent 32%),
    linear-gradient(180deg, #071c26 0%, #031119 48%, #020b11 100%);
}

.support-view .topbar,
.support-view .bottom-nav {
  display: none;
}

.support-app {
  width: min(100%, 760px);
  min-height: 100vh;
  padding: 0;
}

.support-app main {
  min-height: 100vh;
}

.support-app .success,
.support-app .alert {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 80;
  width: min(92vw, 520px);
  margin: 0;
  transform: translateX(-50%);
}

.support-chat-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(rgba(4, 17, 25, 0.9), rgba(4, 17, 25, 0.9)),
    url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2385a8bb' stroke-width='5' opacity='.18' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M37 43a23 23 0 1 1 19 22l-13 9 4-15A23 23 0 0 1 37 43z'/%3E%3Cpath d='M49 37c3-9 18-8 20 0 2 9-10 10-10 19'/%3E%3Cpath d='M59 67h.1'/%3E%3Cpath d='M142 38h43v31h-43z'/%3E%3Cpath d='M151 48h25M151 59h16'/%3E%3Cpath d='M31 142h54l-8 36H39z'/%3E%3Cpath d='M41 154l13 11 21-20'/%3E%3Cpath d='M145 138a28 28 0 1 0 38 25l15-9-17-3a28 28 0 0 0-36-13z'/%3E%3Cpath d='M158 153c2-8 15-8 17-1 2 8-9 9-9 17'/%3E%3Cpath d='M166 181h.1'/%3E%3Cpath d='M111 102m-16 0a16 16 0 1 0 32 0a16 16 0 1 0-32 0'/%3E%3Cpath d='M111 75v12M111 117v12M84 102h12M126 102h12M91 82l8 8M123 114l8 8M131 82l-8 8M99 114l-8 8'/%3E%3C/g%3E%3C/svg%3E"),
    #041119;
  background-size: auto, 220px 220px, auto;
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.48);
}

.support-chat-head {
  display: grid;
  grid-template-columns: 46px 82px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 156px;
  padding: 38px 40px 34px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(6, 24, 34, 0.96), rgba(5, 19, 29, 0.96)),
    radial-gradient(circle at 30% 0%, rgba(94, 237, 72, 0.18), transparent 34%);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

.support-back {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #f7fbff;
  font-size: 2.25rem;
}

.support-logo {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 4px solid #43d735;
  border-radius: 50%;
  color: #caffb8;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  background:
    radial-gradient(circle at 50% 50%, #0b1515 0 54%, transparent 55%),
    conic-gradient(from 12deg, #6dff51, #0f5e14, #78ff52, #083909, #6dff51);
  box-shadow:
    inset 0 0 0 4px rgba(0, 0, 0, 0.72),
    0 0 18px rgba(75, 239, 61, 0.46);
}

.support-title {
  min-width: 0;
}

.support-chat-head strong,
.support-chat-head small {
  display: block;
}

.support-chat-head strong {
  color: #f7fbff;
  font-size: clamp(1.2rem, 5vw, 2.05rem);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.support-chat-head small {
  margin-top: 10px;
  color: #a9bac8;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 650;
}

.support-chat-window {
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 5vw, 48px) clamp(24px, 5vw, 54px);
  background: transparent;
}

.empty-chat-card {
  width: min(100%, 430px);
  margin: auto;
  padding: 54px 44px;
  display: grid;
  justify-items: center;
  gap: 28px;
  border: 2px solid rgba(128, 158, 177, 0.34);
  border-radius: 34px;
  text-align: center;
  background: rgba(10, 28, 39, 0.7);
  box-shadow:
    inset 0 0 38px rgba(255, 255, 255, 0.03),
    0 28px 70px rgba(0, 0, 0, 0.24);
}

.empty-chat-card h2 {
  margin: 0;
  color: #fbfdff;
  font-size: clamp(1.65rem, 5vw, 2.05rem);
  line-height: 1.16;
}

.empty-chat-card p {
  margin: -2px 0 0;
  color: #adbfcc;
  font-size: clamp(1.28rem, 4vw, 1.7rem);
  line-height: 1.4;
  font-weight: 560;
}

.empty-chat-card span {
  width: 100%;
  height: 1px;
  background: rgba(129, 167, 189, 0.32);
}

.empty-chat-card button {
  width: 100%;
  min-height: 76px;
  border: 2px solid #47e258;
  border-radius: 18px;
  color: #51d858;
  background: rgba(5, 18, 28, 0.72);
  font-size: clamp(1.14rem, 4vw, 1.48rem);
  font-weight: 780;
  box-shadow: inset 0 0 28px rgba(81, 216, 88, 0.04);
}

.chat-bubble {
  max-width: min(78%, 560px);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(248, 189, 41, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.chat-bubble.user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: rgba(116, 248, 73, 0.14);
}

.chat-bubble.support {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border-color: rgba(62, 223, 118, 0.32);
  background: rgba(255, 255, 255, 0.055);
}

.chat-bubble strong,
.chat-bubble small {
  display: block;
}

.chat-bubble p {
  margin: 6px 0;
  line-height: 1.45;
  white-space: pre-wrap;
}

.chat-bubble small {
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.chat-attachment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  color: var(--gold-2);
  overflow-wrap: anywhere;
}

.chat-attachment.image {
  display: block;
}

.chat-attachment.image img {
  display: block;
  max-width: min(280px, 100%);
  max-height: 260px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.support-composer {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 70px;
  gap: 14px;
  align-items: center;
  margin: 0 clamp(18px, 4vw, 38px) calc(22px + env(safe-area-inset-bottom));
  padding: 14px 14px 14px 22px;
  border: 2px solid rgba(129, 167, 189, 0.28);
  border-radius: 999px;
  background: rgba(9, 28, 40, 0.92);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.03),
    0 18px 50px rgba(0, 0, 0, 0.28);
}

.support-composer textarea {
  min-height: 58px;
  max-height: 124px;
  padding: 15px 2px;
  resize: none;
  border: 0;
  color: #f8fbff;
  background: transparent;
  outline: none;
  font-size: clamp(1.16rem, 4vw, 1.45rem);
  line-height: 1.25;
}

.support-composer textarea::placeholder {
  color: #a8bbc8;
}

.support-attach-button,
.support-send-button {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.support-attach-button {
  border: 0;
  color: #afc0cb;
  background: transparent;
  font-size: 2.25rem;
}

.support-send-button {
  border: 0;
  color: #fff;
  background: linear-gradient(145deg, #69e551, #39c938 58%, #218b28);
  font-size: 1.9rem;
  box-shadow: 0 8px 22px rgba(57, 201, 56, 0.35);
}

.support-send-button i {
  transform: translateX(2px);
}

.support-composer .primary-button,
.support-composer .icon-button {
  min-height: 58px;
  border-radius: 50%;
  padding: 0;
}

.attach-button {
  position: relative;
  overflow: hidden;
}

.attach-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-chat-list {
  gap: 18px;
}

.admin-chat-thread {
  display: grid;
  gap: 12px;
}

.admin-chat-window {
  min-height: 220px;
  max-height: 430px;
  border: 1px solid rgba(116, 255, 74, 0.18);
  border-radius: 14px;
}

.admin-support-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 16px;
  height: clamp(560px, calc(100vh - 250px), 780px);
  min-height: 0;
  overflow: hidden;
}

.admin-support-users,
.admin-support-chat {
  border: 1px solid rgba(116, 255, 74, 0.22);
  border-radius: 18px;
  background: rgba(3, 13, 8, 0.68);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.admin-support-users {
  display: grid;
  align-content: start;
  gap: 8px;
  height: 100%;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px;
}

.admin-support-users > strong {
  padding: 8px 8px 12px;
  color: var(--gold);
}

.admin-support-user {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(116, 255, 74, 0.18);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-support-user.active {
  border-color: rgba(245, 198, 74, 0.75);
  background: rgba(245, 198, 74, 0.1);
}

.admin-support-user span,
.admin-support-user small {
  display: block;
  min-width: 0;
}

.admin-support-user small {
  margin-top: 3px;
  color: var(--muted);
}

.admin-support-user em {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: #e5293e;
  font-style: normal;
  font-weight: 900;
}

.admin-support-chat {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.admin-support-empty {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
}

.admin-support-empty i {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(245, 198, 74, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.9rem;
  background: rgba(245, 198, 74, 0.08);
}

.admin-support-empty strong {
  color: var(--text);
  font-size: 1.1rem;
}

.admin-support-empty small {
  max-width: 320px;
  line-height: 1.45;
}

.admin-support-head {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  min-height: 64px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(116, 255, 74, 0.18);
  background:
    linear-gradient(180deg, rgba(6, 24, 34, 0.96), rgba(5, 19, 29, 0.96));
  box-shadow: none;
}

.admin-support-head .support-logo {
  width: 42px;
  height: 42px;
  border-width: 2px;
  font-size: 1rem;
}

.admin-support-head strong {
  font-size: 1rem;
  line-height: 1.15;
  text-shadow: none;
}

.admin-support-head small {
  margin-top: 2px;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 600;
}

.admin-support-chat .admin-chat-window {
  min-height: 0;
  height: 100%;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  justify-content: flex-start;
  padding: 16px;
  border: 0;
  border-radius: 0;
}

.admin-support-composer {
  grid-template-columns: 44px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: end;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(116, 255, 74, 0.2);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
}

.admin-support-composer textarea {
  min-height: 44px;
  max-height: 130px;
  padding: 12px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090c12;
  font-size: 1rem;
}

.admin-support-composer .primary-button,
.admin-support-composer .icon-button {
  min-height: 44px;
}

.radio-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 10px 0;
}

.terms-box {
  line-height: 1.7;
  color: #e6e6e6;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 30;
  width: min(100%, 1220px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 13px 14px max(13px, env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 20, 0.96);
}

.bottom-nav a,
.bottom-nav button {
  border: 0;
  background: transparent;
  color: #a6a6a6;
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 60px;
}

.bottom-nav span {
  font-size: 1.85rem;
}

.bottom-nav .active {
  color: var(--gold);
}

.modal-backdrop {
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-backdrop.open,
.modal-backdrop:target {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(720px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #10141b;
  box-shadow: var(--shadow);
}

.modal-title,
.modal-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.modal-title {
  position: sticky;
  top: -20px;
  z-index: 3;
  padding: 0 0 12px;
  background: #10141b;
  border-bottom: 1px solid rgba(116, 248, 73, 0.22);
}

.modal-actions {
  grid-template-columns: auto 1fr auto auto;
  margin-top: 18px;
}

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

.withdraw-actions .primary-button {
  width: 100%;
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
}

.modal-close-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 198, 74, 0.72);
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(4, 12, 7, 0.94);
  box-shadow: 0 0 0 3px rgba(245, 198, 74, 0.08), 0 12px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.modal-close-button:hover,
.modal-close-button:focus-visible {
  color: #101000;
  background: var(--gold);
  outline: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  color: var(--text);
  background: #090c12;
}

.wallet-address-display {
  display: block;
  width: 100%;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.profile-step-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.profile-step {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(116, 248, 73, 0.28);
  border-radius: 14px;
  padding: 14px;
  background: rgba(3, 13, 8, 0.68);
}

.profile-step.locked {
  opacity: 0.62;
}

.profile-step.complete {
  border-color: rgba(116, 248, 73, 0.76);
}

.profile-step-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.profile-step-head > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #061105;
  background: linear-gradient(180deg, #d7ffc7, #65ef3a);
  font-weight: 950;
}

.profile-step-head h3,
.profile-step-head p {
  margin: 0;
}

.profile-step-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.profile-step-form.compact {
  align-items: center;
  border-top: 1px solid rgba(116, 248, 73, 0.18);
  padding-top: 12px;
}

.profile-step-form.compact > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

#deleteItem {
  color: var(--danger);
}

/* Nex-style green and gold theme polish */
.brand-mark {
  border-color: rgba(135, 255, 87, 0.86);
  color: #020604;
  background:
    radial-gradient(circle at 34% 26%, #dfffd5, #76f84c 26%, #13771c 64%, #031307 100%);
  box-shadow:
    inset 0 -12px 18px rgba(0, 0, 0, 0.38),
    0 0 26px rgba(116, 248, 73, 0.48),
    0 0 54px rgba(116, 248, 73, 0.18);
}

.brand strong span {
  color: var(--green);
  text-shadow: 0 0 18px rgba(116, 248, 73, 0.38);
}

.topbar {
  background: linear-gradient(180deg, rgba(2, 6, 4, 0.9), rgba(2, 6, 4, 0.48));
}

.launch-timer,
.admin-link,
.ghost-button,
.icon-button,
.admin-toolbar a,
.drawer nav a,
.drawer nav button {
  border-color: rgba(245, 198, 74, 0.46);
  background: rgba(3, 13, 8, 0.78);
  box-shadow: inset 0 0 0 1px rgba(116, 248, 73, 0.04);
}

.launch-timer strong,
.admin-link:hover,
.ghost-button:hover,
.icon-button:hover,
.drawer nav a:hover,
.drawer nav button:hover {
  color: var(--gold-2);
}

.menu-button {
  border: 1px solid rgba(116, 248, 73, 0.5);
  border-radius: 14px;
  background: rgba(4, 18, 10, 0.72);
  box-shadow: 0 0 20px rgba(116, 248, 73, 0.18);
}

.menu-button span {
  background: linear-gradient(90deg, var(--green), var(--gold));
  box-shadow: 0 0 10px rgba(116, 248, 73, 0.48);
}

.drawer,
.modal,
.login-panel,
.section-panel,
.admin-panel,
.profile-panel,
.welcome-card,
.mining-banner,
.coin-total,
.public-hero,
.public-stats,
.refer-band,
.feature-card,
.plan-card,
.quick-card,
.explore-card,
.metric,
.nav-card,
.admin-sidebar,
.admin-row,
.admin-table-wrap,
.wallet-box,
.recovery-list,
.chat-bubble {
  border-color: rgba(116, 248, 73, 0.42);
  background:
    radial-gradient(circle at 82% 18%, rgba(116, 248, 73, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(4, 18, 10, 0.95), rgba(2, 8, 5, 0.92));
  box-shadow:
    0 0 0 1px rgba(245, 198, 74, 0.12),
    0 18px 46px rgba(0, 0, 0, 0.48),
    0 0 32px rgba(116, 248, 73, 0.12);
}

.public-hero,
.mining-banner {
  border-color: rgba(245, 198, 74, 0.56);
  background:
    linear-gradient(90deg, rgba(1, 5, 3, 0.98), rgba(1, 12, 5, 0.68)),
    var(--hero-image, linear-gradient(transparent, transparent)),
    radial-gradient(circle at 76% 42%, rgba(116, 248, 73, 0.32), transparent 30%),
    radial-gradient(circle at 38% 78%, rgba(245, 198, 74, 0.18), transparent 34%),
    #020604;
  box-shadow:
    0 0 0 1px rgba(245, 198, 74, 0.22),
    0 0 34px rgba(116, 248, 73, 0.18),
    var(--shadow);
}

.public-hero h1,
.mining-banner h2,
.login-panel h1,
.login-panel h2,
.landing-section h2 {
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(116, 248, 73, 0.14);
}

.public-hero h1,
.login-panel h1,
.login-panel h2 {
  color: var(--gold-2);
}

.public-hero h1 span,
.landing-section h2 span,
.mining-banner h2 .gold,
.gold {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(245, 198, 74, 0.28);
}

.hero-coin-image,
.coin-art,
.public-coin {
  filter: drop-shadow(0 0 32px rgba(116, 248, 73, 0.58));
}

.feature-card span,
.public-stats article > span,
.how-grid article > span,
.quick-card span,
.metric-icon,
.explore-art {
  border-color: rgba(116, 248, 73, 0.55);
  color: var(--green);
  background:
    radial-gradient(circle at 48% 40%, rgba(116, 248, 73, 0.2), transparent 58%),
    rgba(4, 18, 10, 0.84);
  box-shadow:
    inset 0 0 18px rgba(116, 248, 73, 0.08),
    0 0 22px rgba(116, 248, 73, 0.18);
}

.feature-card h3,
.plan-card strong,
.public-stats strong,
.coin-total strong,
.wallet-box strong,
.stat-value,
.bottom-nav .active,
.admin-users-table th,
.link-button {
  color: var(--gold);
}

.plan-card.popular,
.admin-row.unread-row,
.admin-toolbar button.active,
.admin-toolbar a.active,
.admin-sidebar a.active {
  border-color: rgba(245, 198, 74, 0.86);
  box-shadow:
    0 0 0 1px rgba(245, 198, 74, 0.18),
    0 0 30px rgba(116, 248, 73, 0.18);
}

.popular-badge,
.primary-button,
.explore-card button,
.explore-card:nth-child(2) button,
.explore-card:nth-child(2) .primary-button {
  border: 1px solid rgba(151, 255, 88, 0.72);
  color: #ffe69a;
  background: linear-gradient(180deg, #62f039 0%, #25b72c 52%, #08620f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 24px rgba(116, 248, 73, 0.42),
    0 10px 26px rgba(0, 0, 0, 0.42);
}

.primary-button:hover,
.explore-card button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.quick-card.blue,
.quick-card.pink,
.quick-card.green {
  background:
    radial-gradient(circle at 22% 18%, rgba(116, 248, 73, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(5, 36, 15, 0.72), rgba(2, 9, 5, 0.92));
}

.avatar {
  border-color: var(--green);
  background: radial-gradient(circle at 42% 28%, #bcffa7, #5ee444 44%, #115f18 100%);
  box-shadow: 0 0 26px rgba(116, 248, 73, 0.36);
}

.avatar::before,
.avatar::after {
  background: rgba(2, 8, 5, 0.82);
}

.coin-stack::before,
.coin-stack::after,
.coin-stack span {
  border-color: rgba(116, 248, 73, 0.72);
  background: linear-gradient(#baff9d, #25b72c 52%, #0d5d13);
  box-shadow: 0 0 18px rgba(116, 248, 73, 0.28);
}

.bottom-nav {
  border-color: rgba(116, 248, 73, 0.34);
  background:
    linear-gradient(180deg, rgba(5, 19, 11, 0.97), rgba(2, 7, 4, 0.98));
  box-shadow: 0 -16px 42px rgba(0, 0, 0, 0.42), 0 0 24px rgba(116, 248, 73, 0.12);
}

.bottom-nav a,
.bottom-nav button {
  color: #a5aea1;
}

.bottom-nav .active i,
.bottom-nav .active span {
  color: var(--green);
  text-shadow: 0 0 16px rgba(116, 248, 73, 0.5);
}

.form-field input,
.form-field textarea,
.form-field select,
.modal-inline-form input,
.inline-pay-form input {
  border-color: rgba(116, 248, 73, 0.36);
  background: rgba(1, 7, 4, 0.92);
  box-shadow: inset 0 0 18px rgba(116, 248, 73, 0.04);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.modal-inline-form input:focus,
.inline-pay-form input:focus {
  outline: none;
  border-color: rgba(116, 248, 73, 0.9);
  box-shadow: 0 0 0 3px rgba(116, 248, 73, 0.14), 0 0 24px rgba(116, 248, 73, 0.18);
}

.wallet-connect-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.wallet-connect-row .primary-button {
  min-height: 46px;
  white-space: nowrap;
}

.alert-text {
  color: var(--danger) !important;
}

.login-wrap {
  min-height: calc(100vh - 122px);
  align-items: start;
  padding-top: clamp(16px, 4vw, 48px);
}

.login-panel {
  padding: clamp(22px, 5vw, 42px);
  border-radius: 22px;
}

.wide-login {
  width: min(820px, 100%);
}

.login-brand .brand-mark {
  width: 76px;
  height: 76px;
}

.login-form {
  gap: 18px;
}

.auth-choice-grid .ghost-button,
.suggestion-row .ghost-button {
  min-height: 54px;
}

.recovery-list {
  padding: 22px;
  gap: 14px 34px;
}

.recovery-list b {
  color: var(--text);
}

.recovery-list span {
  color: var(--green);
  font-weight: 850;
}

.admin-sidebar a:hover {
  color: var(--gold-2);
  border-color: rgba(116, 248, 73, 0.54);
}

.admin-file-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-file-preview img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(116, 248, 73, 0.34);
  background: rgba(0, 0, 0, 0.28);
}

.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.inline-check input {
  width: auto;
  accent-color: var(--green);
}

.admin-users-table th {
  background: rgba(245, 198, 74, 0.1);
}

.admin-users-table td {
  background: rgba(2, 8, 5, 0.62);
}

.table-row {
  background: rgba(2, 8, 5, 0.72);
  border: 1px solid rgba(116, 248, 73, 0.24);
}

.success {
  border-color: rgba(116, 248, 73, 0.5);
  color: var(--green);
  background: rgba(116, 248, 73, 0.1);
}

@media (min-width: 860px) {
  .admin-menu-button {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .welcome-card {
    grid-column: 1 / -1;
  }

  .coin-total {
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .app {
    padding: 14px 14px 108px;
  }

  .support-app {
    padding: 0;
  }

  .support-chat-head {
    grid-template-columns: 34px 62px minmax(0, 1fr);
    gap: 14px;
    min-height: 126px;
    padding: 28px 24px 24px;
  }

  .support-back {
    width: 34px;
    height: 34px;
    font-size: 1.9rem;
  }

  .support-logo {
    width: 62px;
    height: 62px;
    border-width: 3px;
    font-size: 1.05rem;
  }

  .support-chat-window {
    padding: 28px 22px;
  }

  .empty-chat-card {
    width: min(100%, 420px);
    padding: 42px 28px;
    border-radius: 28px;
  }

  .support-composer {
    grid-template-columns: 48px minmax(0, 1fr) 58px;
    gap: 10px;
    margin: 0 18px calc(18px + env(safe-area-inset-bottom));
    padding: 12px 12px 12px 18px;
  }

  .support-composer textarea {
    min-height: 48px;
    padding: 11px 0;
  }

  .support-attach-button,
  .support-send-button {
    width: 48px;
    height: 48px;
    font-size: 1.62rem;
  }

  .support-attach-button {
    font-size: 1.92rem;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .admin-link {
    display: none;
  }

  .admin-shell .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .admin-shell .admin-link,
  .admin-shell .launch-timer {
    display: none;
  }

  .admin-menu-button {
    display: inline-flex;
    justify-self: end;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .site-logo {
    width: auto;
    height: 50px;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .launch-timer {
    min-width: 104px;
    padding: 8px;
  }

  .launch-timer strong {
    font-size: 0.78rem;
  }

  .welcome-card {
    grid-template-columns: 1fr;
  }

  .wallet-box {
    width: 100%;
  }

  .mining-banner {
    padding: 24px;
    min-height: 190px;
  }

  .coin-art {
    opacity: 0.52;
  }

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

  .quick-card {
    min-height: 118px;
    flex-direction: column;
    align-items: flex-start;
    padding: 13px;
  }

  .quick-card span {
    width: 48px;
    height: 48px;
  }

  .overview-grid,
  .explore-grid,
  .metrics-grid,
  .profile-grid,
  .feature-grid,
  .public-stats,
  .plans-grid,
  .how-grid,
  .refer-band,
  .admin-guide-grid,
  .admin-history-balance,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-guide-head {
    align-items: stretch;
  }

  .admin-guide-head .ghost-button {
    width: 100%;
  }

  .admin-guide-quick {
    grid-template-columns: 1fr;
  }

  .auth-choice-grid,
  .suggestion-row {
    grid-template-columns: 1fr;
  }

  .recovery-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
  }

  .admin-shell {
    height: auto;
    overflow: visible;
    padding: 14px 14px 108px;
  }

  .admin-layout,
  .admin-panel {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .admin-toggle-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-toggle-card .primary-button {
    width: 100%;
  }

  .admin-switch {
    justify-content: space-between;
  }

  .admin-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    width: min(86vw, 340px);
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 20px 0 0 20px;
    transform: translateX(110%);
    transition: transform 180ms ease;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
  }

  .admin-mobile-links {
    display: grid;
    gap: 8px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .admin-table-tools,
  .admin-pagination {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

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

  .bulk-dummy-root {
    grid-column: 1 / -1;
  }

  .admin-support-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .admin-support-users {
    max-height: 260px;
  }

  .admin-support-chat {
    min-height: 560px;
  }

  .reward-action-panel {
    min-width: 300px;
  }

  .admin-reward-pay-form {
    grid-template-columns: 1fr;
  }

  body.admin-menu-open {
    overflow: hidden;
  }

  .public-hero {
    min-height: 340px;
    grid-template-columns: 1fr;
  }

  .public-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .public-coin {
    position: absolute;
    right: -24px;
    bottom: 18px;
    width: 190px;
    opacity: 0.42;
  }

  .hero-coin-image.public-coin {
    position: absolute;
    right: -24px;
    bottom: 18px;
    top: auto;
    width: 190px;
    opacity: 0.55;
  }

  .feature-card {
    min-height: 180px;
  }

  .public-stats article {
    justify-content: flex-start;
  }

  .refer-band .explore-art {
    width: 100%;
  }

  .explore-card {
    min-height: 188px;
    grid-template-columns: 0.85fr 1.15fr;
    padding: 14px;
  }

  .explore-art {
    height: 145px;
    font-size: 3.5rem;
  }

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

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

  .profile-step-form,
  .profile-step-form.compact {
    grid-template-columns: 1fr;
  }

  .profile-step-form .primary-button,
  .profile-step-form .ghost-button {
    width: 100%;
  }

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

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

  .modal-actions span {
    display: none;
  }

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

  .wallet-status-panel {
    grid-template-columns: 1fr;
  }

  .mini-actions .primary-button,
  .mini-actions .ghost-button,
  .wallet-connect-row .primary-button,
  .wallet-connect-row .ghost-button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  body:not(.landing-view):not(.support-view) {
    background:
      radial-gradient(circle at 90% 20%, rgba(96, 255, 35, 0.12), transparent 18rem),
      linear-gradient(180deg, #000400 0%, #010a03 54%, #000200 100%);
  }

  body:not(.landing-view):not(.support-view) .app {
    padding: 10px 12px 96px;
  }

  .dashboard {
    gap: 10px;
  }

  .bottom-nav {
    gap: 2px;
    padding: 10px 10px max(10px, env(safe-area-inset-bottom));
  }

  .bottom-nav a,
  .bottom-nav button {
    min-height: 54px;
    gap: 2px;
    font-size: 0.78rem;
    line-height: 1.1;
    text-align: center;
  }

  .bottom-nav span {
    font-size: 1.35rem;
    line-height: 1;
  }

  .dashboard > :not(.mobile-dashboard) {
    display: none !important;
  }

  .mobile-dashboard {
    display: grid;
    gap: 10px;
  }

  .mobile-profile-card,
  .mobile-balance-grid a,
  .mobile-transfer-row a,
  .mobile-action-grid a,
  .mobile-mining-card,
  .mobile-install-card,
  .mobile-overview-card,
  .mobile-refer-banner,
  .mobile-installed-banner {
    border: 1px solid rgba(142, 255, 32, 0.72);
    border-radius: 18px;
    background:
      radial-gradient(circle at 82% 22%, rgba(92, 255, 35, 0.15), transparent 34%),
      linear-gradient(145deg, rgba(3, 31, 9, 0.9), rgba(0, 6, 2, 0.96));
    box-shadow: inset 0 0 28px rgba(112, 255, 38, 0.06), 0 0 20px rgba(112, 255, 38, 0.08);
  }

  .mobile-profile-card {
    padding: 14px 14px 12px;
  }

  .mobile-user-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 84px;
  }

  .mobile-user-row .avatar {
    width: 74px;
    height: 74px;
    border-width: 3px;
  }

  .mobile-user-row h1 {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 1.65rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .mobile-user-row p {
    margin: 0;
    color: var(--gold-2);
    font-size: 1rem;
  }

  .mobile-balance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .mobile-balance-grid a {
    position: relative;
    min-height: 82px;
    padding: 12px 62px 10px 12px;
    overflow: hidden;
  }

  .mobile-balance-grid span {
    position: relative;
    z-index: 2;
    display: block;
    color: var(--gold);
    font-size: clamp(0.72rem, 3.1vw, 0.9rem);
    font-weight: 850;
    line-height: 1.12;
    white-space: nowrap;
  }

  .mobile-mining-card h2,
  .mobile-overview-card span {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--gold);
    font-weight: 850;
  }

  .mobile-mining-card h2 {
    margin: 0;
    font-size: clamp(1rem, 4vw, 1.22rem);
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-balance-grid strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: clamp(1.1rem, 4.5vw, 1.45rem);
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-mining-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 3px;
    color: var(--gold);
    font-size: clamp(1rem, 4.8vw, 1.35rem);
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-mining-card strong small {
    display: block;
    margin-top: 2px;
    color: var(--gold);
    font-size: 0.72em;
    line-height: 1;
  }

  .mobile-balance-grid a > i {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    transform: translateY(-50%) rotate(-14deg);
    border-radius: 50%;
    color: #f8fff2;
    background: radial-gradient(circle at 35% 24%, #d8ffc5, #60ea39 34%, #0e6012 68%, #031006 100%);
    box-shadow: 0 0 20px rgba(112, 255, 38, 0.38);
    font-style: italic;
    font-weight: 950;
  }

  .mobile-balance-grid .mobile-card-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    z-index: 1;
    width: 57px;
    height: 57px;
    object-fit: contain;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .mobile-transfer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-transfer-row a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--gold);
    font-size: clamp(0.98rem, 4.4vw, 1.14rem);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
  }

  .mobile-transfer-row i {
    color: var(--green);
    font-size: 1.35rem;
    flex: 0 0 auto;
  }

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

  .mobile-action-grid a {
    position: relative;
    min-height: 104px;
    padding: 11px 10px 10px;
    display: grid;
    grid-template-rows: 34px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    color: var(--gold);
    overflow: hidden;
  }

  .mobile-action-grid a > i {
    color: var(--green);
    font-size: 1.9rem;
    line-height: 1;
  }

  .mobile-action-grid span {
    grid-column: 1 / -1;
    min-width: 0;
    font-size: clamp(0.72rem, 3.25vw, 1rem);
    line-height: 1.08;
    font-weight: 850;
    white-space: nowrap;
  }

  .mobile-action-grid b {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(142, 255, 32, 0.7);
    border-radius: 50%;
    color: var(--green);
  }

  .mobile-action-grid b i {
    font-size: 0.95rem;
  }

  .mobile-mining-card {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 10px 12px 12px;
    overflow: hidden;
  }

  .mobile-mining-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
  }

  .mobile-mining-summary > i {
    align-self: center;
    justify-self: center;
    color: var(--green);
    font-size: 1.55rem;
    filter: drop-shadow(0 0 10px rgba(112, 255, 38, 0.75));
  }

  .mobile-mining-summary > a,
  .mobile-mining-summary > i {
    position: relative;
    z-index: 1;
  }

  .mobile-mining-summary > a {
    position: relative;
    min-width: 0;
    color: inherit;
    overflow: hidden;
  }

  .mobile-mining-summary a:last-child {
    text-align: right;
  }

  .mobile-mining-card-image {
    width: 100%;
    height: auto;
    max-height: 86px;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
  }

  .mobile-install-card {
    min-height: 104px;
    padding: 14px 14px 14px 16px;
    display: grid;
    grid-template-columns: 52px minmax(126px, 1fr) 106px;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(116, 248, 73, 0.28);
    border-radius: 16px;
    background:
      radial-gradient(circle at 20% 50%, rgba(124, 255, 143, 0.26), transparent 118px),
      linear-gradient(135deg, #12bd6b 0%, #079453 52%, #026532 100%);
    overflow: hidden;
  }

  .mobile-install-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #f8fff8;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.18),
      0 10px 22px rgba(0, 64, 28, 0.18);
    font-size: 1.45rem;
  }

  .mobile-install-copy {
    min-width: 0;
  }

  .mobile-install-title {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.1;
    white-space: nowrap;
  }

  .mobile-install-card h2 {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.22;
    text-shadow: none;
  }

  .mobile-install-card button {
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 13px;
    align-self: center;
    color: #0b7d23;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(2, 55, 23, 0.2);
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .mobile-install-card[hidden],
  .mobile-installed-banner[hidden] {
    display: none !important;
  }

  .mobile-installed-banner {
    display: block;
    width: 100%;
    min-height: 120px;
    object-fit: cover;
  }

  .mobile-overview-card {
    padding: 16px 18px;
  }

  .mobile-overview-card > span {
    width: max-content;
    margin: -30px auto 8px;
    padding: 0 18px;
    background: #010a03;
  }

  .mobile-overview-card div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 58px 34px;
    gap: 10px;
    align-items: center;
  }

  .mobile-overview-card i {
    color: var(--green);
    font-size: 1.9rem;
  }

  .mobile-overview-card strong {
    color: var(--gold);
    font-size: clamp(1.05rem, 4.6vw, 1.24rem);
    line-height: 1.12;
  }

  .mobile-overview-card b {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(142, 255, 32, 0.7);
    border-radius: 50%;
  }

  .mobile-overview-card b i {
    font-size: 1.3rem;
  }

  .mobile-refer-banner {
    min-height: 118px;
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 70px;
    align-items: center;
    color: var(--gold);
    overflow: hidden;
  }

  .mobile-refer-banner span,
  .mobile-refer-banner small {
    grid-column: 1;
    display: block;
    text-align: center;
  }

  .mobile-refer-banner span {
    font-size: clamp(1.68rem, 8vw, 2.45rem);
    font-weight: 950;
    line-height: 1;
  }

  .mobile-refer-banner small {
    color: var(--gold-2);
    font-size: 1.08rem;
    font-weight: 850;
  }

  .mobile-refer-banner > i {
    grid-column: 2;
    grid-row: 1 / 3;
    color: var(--green);
    font-size: 3rem;
    filter: drop-shadow(0 0 14px rgba(112, 255, 38, 0.45));
  }
}

@media (max-width: 390px) {
  .mobile-dashboard {
    gap: 8px;
  }

  .mobile-profile-card {
    padding: 12px 12px 10px;
  }

  .mobile-user-row {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    min-height: 66px;
  }

  .mobile-user-row .avatar {
    width: 58px;
    height: 58px;
  }

  .mobile-user-row h1 {
    font-size: 1.32rem;
  }

  .mobile-user-row p {
    font-size: 0.88rem;
  }

  .mobile-balance-grid,
  .mobile-transfer-row,
  .mobile-action-grid {
    gap: 8px;
  }

  .mobile-balance-grid a {
    min-height: 74px;
    padding: 10px 56px 9px 10px;
  }

  .mobile-balance-grid span {
    font-size: clamp(0.66rem, 2.9vw, 0.78rem);
  }

  .mobile-overview-card span {
    font-size: 0.78rem;
  }

  .mobile-balance-grid strong {
    font-size: clamp(1rem, 4vw, 1.16rem);
  }

  .mobile-mining-card strong {
    font-size: 0.96rem;
  }

  .mobile-balance-grid a > i {
    right: 9px;
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .mobile-balance-grid .mobile-card-icon {
    right: 5px;
    width: 51px;
    height: 51px;
  }

  .mobile-transfer-row a {
    min-height: 48px;
    padding: 8px;
    font-size: 0.84rem;
  }

  .mobile-transfer-row i {
    font-size: 1.15rem;
  }

  .mobile-action-grid a {
    min-height: 92px;
    padding: 9px 8px 8px;
    grid-template-rows: 26px minmax(0, 1fr);
  }

  .mobile-action-grid a > i {
    font-size: 1.55rem;
  }

  .mobile-action-grid span {
    font-size: clamp(0.66rem, 3vw, 0.78rem);
  }

  .mobile-action-grid b {
    top: 9px;
    right: 8px;
    width: 27px;
    height: 27px;
  }

  .mobile-mining-card {
    padding: 8px 10px 10px;
  }

  .mobile-mining-summary {
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  }

  .mobile-mining-card h2 {
    font-size: clamp(0.9rem, 3.55vw, 1.06rem);
  }

  .mobile-mining-summary > i {
    font-size: 1.18rem;
  }

  .mobile-mining-card-image {
    max-height: 74px;
  }
}

/* Reference-style landing and auth screens */
.landing-view,
.auth-view {
  background:
    radial-gradient(circle at 60% 8%, rgba(89, 255, 37, 0.18), transparent 28rem),
    radial-gradient(circle at 8% 70%, rgba(45, 212, 23, 0.08), transparent 18rem),
    linear-gradient(180deg, #000501 0%, #010b05 54%, #000301 100%);
}

.landing-view .topbar {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 26px 0 14px;
  background: transparent;
}

.landing-view .admin-link,
.landing-view .menu-button {
  display: none;
}

.landing-view .launch-timer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-width: 282px;
  border-color: rgba(147, 255, 30, 0.48);
  border-radius: 16px;
  padding: 16px 22px;
  background:
    radial-gradient(circle at 14% 18%, rgba(111, 255, 54, 0.22), transparent 30%),
    rgba(3, 14, 5, 0.9);
}

.landing-view .launch-timer::before {
  content: "\f135";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  font-size: 2.25rem;
}

.landing-view .launch-timer small {
  color: var(--gold-2);
  font-size: 1rem;
  text-transform: capitalize;
}

.landing-view .launch-timer strong {
  color: var(--gold);
  font-size: 1.25rem;
}

.landing-app {
  width: min(100%, 1180px);
  padding-bottom: 34px;
}

.landing-view .brand strong {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 2.15rem;
}

.landing-view .brand small {
  color: var(--gold-2);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.landing-view .brand-mark {
  width: 70px;
  height: 70px;
  color: #e8ffe2;
  letter-spacing: 0;
}

.landing-view .public-home {
  gap: 26px;
}

.landing-view .public-hero {
  min-height: 560px;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  border: 0;
  border-radius: 0;
  padding: 28px 4px 20px;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(0, 5, 2, 0.98) 0%, rgba(0, 12, 4, 0.76) 44%, rgba(0, 5, 2, 0.2) 100%),
    radial-gradient(circle at 70% 48%, rgba(94, 255, 45, 0.22), transparent 24rem),
    var(--hero-image, linear-gradient(transparent, transparent));
  background-size: cover;
  box-shadow: none;
}

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

.hero-kicker {
  display: block;
  color: #f8f8f8;
  font-size: 2.45rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
}

.landing-view .public-hero h1 {
  max-width: 520px;
  margin: 14px 0;
  color: var(--gold);
  font-size: 4.85rem;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(105, 77, 0, 0.28), 0 0 28px rgba(245, 198, 74, 0.28);
}

.landing-view .public-hero h1 span {
  display: block;
  color: var(--gold-2);
}

.landing-view .public-hero p {
  max-width: 430px;
  margin: 0 0 34px;
  color: #f1f1f1;
  font-size: 1.35rem;
}

.landing-view .hero-actions a {
  min-width: 228px;
  min-height: 66px;
  justify-content: center;
  border-radius: 12px;
  font-weight: 850;
  font-size: 1.08rem;
}

.landing-view .hero-actions .ghost-button {
  color: var(--gold);
  background: rgba(0, 10, 4, 0.72);
}

.landing-coin-scene {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.landing-coin,
.auth-coin {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f6fff4;
  font-weight: 950;
  font-style: italic;
  background:
    radial-gradient(circle at 34% 25%, #d9ffc9 0 7%, #72ff37 8% 22%, #166b17 44%, #061109 65%),
    conic-gradient(from 20deg, #d8ffb7, #37db1c, #0a4e0e, #bbff80, #1aa519, #d8ffb7);
  box-shadow:
    inset 0 0 0 10px rgba(0, 0, 0, 0.54),
    inset 0 0 0 20px rgba(130, 255, 58, 0.22),
    0 0 42px rgba(104, 255, 45, 0.72),
    0 0 120px rgba(104, 255, 45, 0.26);
}

.landing-coin {
  width: 330px;
  height: 330px;
  font-size: 5rem;
  transform: rotate(-8deg);
}

.coin-platform {
  position: absolute;
  bottom: 18px;
  width: 420px;
  height: 92px;
  border: 2px solid rgba(107, 255, 39, 0.54);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(127, 255, 41, 0.45), transparent 42%),
    linear-gradient(180deg, rgba(32, 138, 15, 0.42), rgba(0, 12, 4, 0.9));
  box-shadow: 0 0 38px rgba(107, 255, 39, 0.42);
}

.landing-feature-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(142, 255, 31, 0.5);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(2, 31, 8, 0.72), rgba(0, 9, 3, 0.9));
}

.landing-feature-strip .feature-card {
  min-height: 220px;
  border: 0;
  border-right: 1px solid rgba(142, 255, 31, 0.32);
  border-radius: 0;
  padding: 24px 18px;
  background: transparent;
  box-shadow: none;
}

.landing-feature-strip .feature-card:last-child {
  border-right: 0;
}

.landing-feature-strip .feature-card span {
  width: 72px;
  height: 72px;
  border: 0;
  color: var(--gold);
  font-size: 2.55rem;
  background: transparent;
  box-shadow: none;
}

.landing-feature-strip .feature-card h3 {
  color: var(--gold);
  font-size: 1.02rem;
}

.landing-feature-strip .feature-card p {
  color: #f5f5f5;
  font-size: 0.98rem;
}

.landing-view .landing-section h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: #f6f6f6;
  font-size: 2.15rem;
  text-transform: uppercase;
}

.landing-view .landing-section h2 span {
  width: 84px;
  height: 10px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 100% 2px no-repeat,
    linear-gradient(var(--green), var(--green)) center 2px / 100% 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center 8px / 100% 2px no-repeat;
}

.landing-premium-plan {
  grid-template-columns: minmax(220px, 0.85fr) minmax(240px, 1fr) 220px;
  align-items: center;
  gap: 24px;
  min-height: 520px;
  border-color: rgba(145, 255, 30, 0.7);
  border-radius: 18px;
  padding: 44px;
  background:
    radial-gradient(circle at 58% 54%, rgba(88, 255, 33, 0.18), transparent 25rem),
    linear-gradient(135deg, rgba(0, 28, 7, 0.82), rgba(0, 6, 2, 0.96));
}

.landing-premium-plan .popular-badge {
  top: -12px;
  border-radius: 8px;
  color: #1d1400;
}

.landing-premium-plan .plan-copy h3 {
  color: var(--gold);
  font-size: 1.75rem;
}

.landing-premium-plan .plan-copy strong {
  font-size: 4rem;
  line-height: 1;
}

.landing-premium-plan .plan-copy span {
  color: var(--gold-2);
  font-size: 1.25rem;
}

.landing-premium-plan .plan-copy li {
  color: #fff;
  font-size: 1.08rem;
}

.plan-art {
  min-height: 260px;
  display: grid;
  place-items: center;
}

.landing-pickaxe {
  color: var(--green);
  font-size: 7rem;
  transform: rotate(-36deg);
  filter: drop-shadow(0 0 18px rgba(105, 255, 45, 0.7));
}

.coin-stack-art {
  width: 180px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fafff5;
  background: linear-gradient(#6aff37, #0d5f0f);
  box-shadow: 0 18px 0 #063b09, 0 30px 30px rgba(89, 255, 37, 0.3);
  font-size: 1.8rem;
  font-weight: 950;
}

.plan-metrics {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(145, 255, 30, 0.55);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.plan-metrics div + div {
  border-top: 1px solid rgba(145, 255, 30, 0.18);
  padding-top: 16px;
}

.plan-metrics small,
.landing-reward-band aside small,
.landing-reward-band aside span {
  color: var(--gold-2);
}

.plan-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 2.15rem;
}

.landing-premium-plan > .primary-button {
  grid-column: 1 / -1;
  min-height: 62px;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.22rem;
}

.landing-reward-band {
  grid-template-columns: 270px minmax(0, 1fr) 250px;
  border-color: rgba(145, 255, 30, 0.56);
  background:
    radial-gradient(circle at 17% 43%, rgba(94, 255, 33, 0.2), transparent 16rem),
    linear-gradient(135deg, rgba(0, 28, 7, 0.82), rgba(0, 6, 2, 0.96));
}

.landing-reward-band h2 {
  color: var(--gold);
  font-size: 2.25rem;
}

.landing-reward-band p {
  margin: 0;
  font-size: 1.55rem;
}

.landing-reward-band small {
  display: block;
  margin: 8px 0 18px;
  color: #e9e9e9;
}

.landing-reward-band aside {
  border: 1px solid rgba(145, 255, 30, 0.55);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.landing-reward-band aside strong {
  display: block;
  color: var(--gold);
  font-size: 3.2rem;
}

.landing-view .how-grid {
  grid-template-columns: repeat(3, 1fr);
}

.landing-view .how-grid article {
  min-height: 120px;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-items: start;
  text-align: left;
  border: 1px solid rgba(145, 255, 30, 0.45);
  border-radius: 14px;
  padding: 18px;
  background: rgba(1, 22, 6, 0.72);
}

.landing-view .how-grid article > span {
  width: 68px;
  height: 68px;
  color: var(--gold);
}

.landing-stat-strip {
  grid-template-columns: repeat(4, 1fr);
  border-color: rgba(145, 255, 30, 0.45);
  background: rgba(1, 18, 5, 0.84);
}

.landing-stat-strip article > span {
  color: var(--green);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.landing-stat-strip strong {
  color: var(--gold);
}

.landing-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding: 18px 10px 6px;
  color: #d7d7d7;
}

.landing-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 34px;
}

.landing-footer nav strong {
  grid-column: 1 / -1;
}

.social-row {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}

.social-row span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.auth-view {
  min-height: 100vh;
  overflow-x: hidden;
}

.auth-view::before {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.auth-view::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 7%, rgba(123, 255, 55, 0.22), transparent 18rem),
    radial-gradient(circle at 14% 68%, rgba(94, 255, 34, 0.14), transparent 18rem),
    radial-gradient(circle at 86% 72%, rgba(94, 255, 34, 0.14), transparent 18rem);
}

.auth-view .login-wrap {
  width: min(100%, 980px);
  min-height: 100vh;
  padding: 12px 20px 18px;
}

.auth-view .login-panel {
  position: relative;
  width: min(100%, 900px);
  padding: 0 0 44px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.auth-view .login-brand {
  display: none;
}

.auth-hero-mark {
  display: grid;
  justify-items: center;
  padding-top: 0;
  text-align: center;
  line-height: 1;
}

.auth-coin {
  width: 116px;
  height: 116px;
  font-size: 1.95rem;
}

.auth-hero-logo {
  width: 116px;
  height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(104, 255, 45, 0.58));
}

.auth-hero-mark > strong {
  margin-top: -4px;
  color: #75ff39;
  font-size: 2.45rem;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(117, 255, 57, 0.62);
}

.auth-hero-mark > small {
  color: #fafafa;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 850;
}

.auth-welcome-title {
  margin: 20px 0 6px;
  text-align: center;
  color: #f7f7f7;
  font-size: 1.62rem;
}

.auth-welcome-title span {
  color: var(--green);
}

.auth-welcome-copy {
  margin: 0 0 16px;
  text-align: center;
  color: #c9c9c9;
  font-size: 0.94rem;
}

.auth-view .auth-choice-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.auth-option-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
  border-color: rgba(117, 255, 38, 0.78);
  border-radius: 16px;
  padding: 12px 20px;
  background:
    radial-gradient(circle at 16% 50%, rgba(117, 255, 38, 0.18), transparent 14rem),
    rgba(0, 20, 5, 0.76);
  box-shadow: inset 0 0 40px rgba(117, 255, 38, 0.05), 0 0 28px rgba(117, 255, 38, 0.16);
}

.auth-option-card > span,
.auth-option-card em {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117, 255, 38, 0.68);
  border-radius: 50%;
  color: #caffb8;
  background: rgba(50, 255, 31, 0.09);
  font-size: 1.55rem;
  box-shadow: 0 0 30px rgba(117, 255, 38, 0.18);
}

.auth-option-card em {
  width: 38px;
  height: 38px;
  font-size: 1rem;
  font-style: normal;
}

.auth-option-card strong {
  color: #fff;
  font-size: 1.24rem;
}

.auth-option-card small {
  margin-top: 4px;
  color: #c7c7c7;
  font-size: 0.86rem;
  line-height: 1.35;
}

.auth-view .login-panel > h1,
.auth-view .login-panel > h2 {
  margin-top: 22px;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
  font-size: 1.55rem;
}

.auth-view .login-panel > .muted {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.auth-view .suggestion-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 10px;
}

.auth-view .suggestion-row .ghost-button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 42px;
  padding: 8px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
}

.auth-view .login-form,
.auth-view .recovery-card,
.auth-view .suggestion-row,
.auth-view .login-panel > .muted,
.auth-view .success,
.auth-view .alert {
  width: min(100%, 680px);
  margin-left: auto;
  margin-right: auto;
}

.auth-view .login-form,
.auth-view .recovery-card {
  border: 1px solid rgba(117, 255, 38, 0.45);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0, 20, 5, 0.72);
}

.auth-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.auth-back-button i,
.auth-back-button span {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 920px) {
  .landing-view .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    justify-items: stretch;
    gap: 10px;
  }

  .landing-view .brand {
    gap: 8px;
    min-width: 0;
  }

  .landing-view .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 0.82rem;
  }

  .landing-view .site-logo {
    width: auto;
    height: 48px;
  }

  .landing-view .brand strong {
    font-size: 1.22rem;
  }

  .landing-view .brand small {
    font-size: 0.7rem;
  }

  .landing-view .launch-timer {
    width: auto;
    min-width: 0;
    justify-self: end;
    padding: 10px 12px;
    gap: 8px;
    border-radius: 14px;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
  }

  .landing-view .launch-timer::before {
    grid-row: 1 / 3;
    align-self: center;
    font-size: 1.35rem;
  }

  .landing-view .launch-timer small {
    grid-column: 2;
    font-size: 0.7rem;
  }

  .landing-view .launch-timer strong {
    grid-column: 2;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .landing-view .public-hero,
  .landing-premium-plan,
  .landing-reward-band,
  .landing-footer {
    grid-template-columns: 1fr;
  }

  .landing-view .public-hero {
    min-height: auto;
    padding-top: 18px;
  }

  .landing-view .public-hero h1 {
    font-size: 3.25rem;
  }

  .hero-kicker {
    font-size: 1.8rem;
  }

  .landing-coin-scene {
    min-height: 360px;
  }

  .landing-coin {
    width: 240px;
    height: 240px;
    font-size: 3.5rem;
  }

  .coin-platform {
    width: 300px;
  }

  .landing-feature-strip,
  .landing-view .how-grid,
  .landing-stat-strip {
    grid-template-columns: 1fr;
  }

  .landing-feature-strip .feature-card {
    border-right: 0;
    border-bottom: 1px solid rgba(142, 255, 31, 0.28);
  }

  .landing-feature-strip .feature-card:last-child {
    border-bottom: 0;
  }

  .landing-view .landing-section h2 {
    gap: 12px;
    font-size: 1.55rem;
  }

  .landing-view .landing-section h2 span {
    width: 44px;
  }

  .auth-view .login-wrap {
    padding: 8px 10px 12px;
  }

  .auth-view .login-panel {
    padding-bottom: 30px;
  }

  .auth-coin {
    width: 58px;
    height: 58px;
    font-size: 0.9rem;
  }

  .auth-hero-logo {
    width: 58px;
    height: 58px;
  }

  .auth-hero-mark > strong {
    font-size: 1.55rem;
  }

  .auth-hero-mark > small {
    font-size: 0.62rem;
  }

  .auth-welcome-title {
    margin-top: 14px;
    font-size: 1.24rem;
  }

  .auth-welcome-copy {
    margin-bottom: 12px;
    font-size: 0.82rem;
  }

  .auth-option-card {
    min-height: 86px;
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    gap: 10px;
    padding: 9px 10px;
  }

  .auth-option-card > span {
    width: 32px;
    height: 32px;
    font-size: 1.18rem;
  }

  .auth-option-card em {
    width: 30px;
    height: 30px;
    font-size: 0.88rem;
  }

  .auth-option-card strong {
    font-size: 0.98rem;
  }

  .auth-option-card small {
    font-size: 0.72rem;
  }

  .auth-view .login-panel > h1,
  .auth-view .login-panel > h2 {
    margin-top: 14px;
    margin-bottom: 8px;
    font-size: 1.28rem;
  }

  .auth-view .login-panel > .muted {
    margin-bottom: 6px;
    font-size: 0.8rem;
  }

  .auth-view .suggestion-row {
    gap: 6px;
    margin-top: 6px;
    margin-bottom: 8px;
  }

  .auth-view .suggestion-row .ghost-button {
    min-height: 34px;
    padding: 6px 6px;
    font-size: 0.72rem;
  }

  .auth-back-button {
    width: 100%;
    min-height: 52px;
    gap: 12px;
    text-align: center;
  }
}

/* Native reference-inspired landing page */
.landing-view {
  background:
    radial-gradient(circle at 72% 8%, rgba(91, 255, 33, 0.18), transparent 260px),
    radial-gradient(circle at 48% 66%, rgba(248, 189, 41, 0.09), transparent 260px),
    linear-gradient(180deg, #000300 0%, #010902 42%, #000200 100%);
}

.landing-view .app.landing-app {
  width: min(100%, 920px);
  padding: 28px 34px 26px;
}

.landing-view .topbar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding: 0 0 24px;
  background: transparent;
}

.landing-view .admin-link,
.landing-view .menu-button,
.landing-view .bottom-nav {
  display: none !important;
}

.landing-view .brand {
  align-items: center;
}

.landing-view .brand-mark {
  width: 58px;
  height: 58px;
  border-color: rgba(120, 255, 38, 0.95);
  color: #ecffe6;
  background:
    radial-gradient(circle at 42% 34%, #8dff48, #136a16 48%, #020a04 74%),
    conic-gradient(#9fff54, #0c4a0f, #80ff38, #082f08, #9fff54);
}

.landing-view .brand strong {
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.28rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.landing-view .brand small {
  color: var(--gold-2);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0;
  text-transform: capitalize;
}

.landing-view .launch-timer {
  min-width: 218px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  align-items: center;
  border: 1px solid rgba(142, 255, 28, 0.56);
  border-radius: 14px;
  padding: 14px 18px;
  background:
    radial-gradient(circle at 14% 18%, rgba(110, 255, 37, 0.22), transparent 32%),
    rgba(2, 14, 4, 0.92);
  box-shadow: inset 0 0 24px rgba(86, 255, 28, 0.06), 0 0 18px rgba(86, 255, 28, 0.08);
}

.landing-view .launch-timer::before {
  grid-row: 1 / 3;
  content: "\f135";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  font-size: 2.15rem;
}

.landing-view .launch-timer small {
  grid-column: 2;
  color: var(--gold-2);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  text-transform: capitalize;
}

.landing-view .launch-timer strong {
  grid-column: 2;
  color: var(--gold);
  font-size: 1.18rem;
  line-height: 1.1;
  white-space: nowrap;
}

.landing-view .public-home {
  gap: 24px;
}

.landing-view .public-hero {
  min-height: 468px;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1.18fr);
  padding: 6px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 77% 34%, rgba(107, 255, 33, 0.24), transparent 230px),
    linear-gradient(90deg, rgba(0, 4, 1, 0.98) 0%, rgba(0, 13, 3, 0.72) 48%, rgba(0, 6, 2, 0.14) 100%);
  box-shadow: none;
}

.hero-copy {
  align-self: center;
}

.hero-kicker {
  color: #f5f5f5;
  font-size: clamp(2rem, 4vw, 2.38rem);
  font-weight: 950;
  line-height: 1.05;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

.landing-view .public-hero h1 {
  max-width: 390px;
  margin: 10px 0 14px;
  color: var(--gold);
  font-size: clamp(4.05rem, 8vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(98, 70, 0, 0.28), 0 0 24px rgba(245, 198, 74, 0.26);
}

.landing-view .public-hero h1 span {
  display: block;
  color: var(--gold-2);
}

.landing-view .public-hero p {
  max-width: 385px;
  margin: 0 0 30px;
  color: #f4f4f4;
  font-size: 1.25rem;
  line-height: 1.45;
}

.landing-view .hero-actions {
  gap: 16px;
}

.landing-view .hero-actions a {
  min-width: 175px;
  min-height: 54px;
  justify-content: center;
  border-radius: 10px;
  font-weight: 850;
}

.landing-view .hero-actions .ghost-button {
  color: var(--gold);
  background: rgba(0, 10, 3, 0.74);
}

.landing-coin-scene {
  position: relative;
  min-height: 455px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.landing-coin-scene::before,
.landing-coin-scene::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.landing-coin-scene::before {
  inset: 34px 0 76px;
  z-index: -2;
  background:
    linear-gradient(120deg, transparent 0 16%, rgba(78, 255, 29, 0.28) 16.3% 16.8%, transparent 17% 100%),
    linear-gradient(48deg, transparent 0 68%, rgba(78, 255, 29, 0.24) 68.3% 68.8%, transparent 69% 100%),
    radial-gradient(circle at 50% 50%, rgba(86, 255, 29, 0.25), transparent 50%);
  clip-path: polygon(10% 65%, 24% 28%, 42% 48%, 56% 22%, 72% 56%, 88% 18%, 92% 76%, 70% 86%, 54% 66%, 36% 82%);
  opacity: 0.75;
}

.landing-coin-scene::after {
  right: 6%;
  top: 22%;
  width: 105px;
  height: 230px;
  z-index: -1;
  background: linear-gradient(140deg, rgba(114, 255, 49, 0.88), rgba(8, 78, 10, 0.18));
  clip-path: polygon(50% 0, 80% 70%, 52% 55%, 20% 100%, 34% 48%, 4% 62%);
  filter: drop-shadow(0 0 18px rgba(91, 255, 33, 0.42));
}

.landing-coin {
  width: 310px;
  height: 310px;
  display: grid;
  place-items: center;
  border: 10px solid rgba(170, 255, 123, 0.52);
  border-radius: 50%;
  color: #f9fff7;
  font-size: 4.8rem;
  font-style: italic;
  font-weight: 950;
  transform: rotate(-8deg);
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.82), transparent 10%),
    radial-gradient(circle at 50% 48%, #73f238 0 23%, #18781b 46%, #031006 68%),
    conic-gradient(from 20deg, #e3ffbd, #4bef22, #052b06, #90ff45, #0a5c0d, #e3ffbd);
  box-shadow:
    inset 0 0 0 12px rgba(0, 0, 0, 0.55),
    inset 0 0 0 26px rgba(98, 255, 45, 0.16),
    0 0 34px rgba(97, 255, 39, 0.74),
    0 0 110px rgba(97, 255, 39, 0.28);
}

.coin-platform {
  position: absolute;
  bottom: 44px;
  width: 350px;
  height: 78px;
  border: 2px solid rgba(117, 255, 38, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(127, 255, 41, 0.5), transparent 46%),
    linear-gradient(180deg, rgba(32, 138, 15, 0.42), rgba(0, 12, 4, 0.92));
  box-shadow: 0 14px 0 rgba(3, 35, 8, 0.9), 0 0 38px rgba(107, 255, 39, 0.46);
}

.landing-feature-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(141, 255, 28, 0.52);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(1, 28, 7, 0.78), rgba(0, 7, 2, 0.94));
}

.landing-feature-strip .feature-card {
  min-height: 220px;
  border: 0;
  border-right: 1px solid rgba(141, 255, 28, 0.28);
  border-radius: 0;
  padding: 22px 18px;
  background: transparent;
  box-shadow: none;
}

.landing-feature-strip .feature-card:last-child {
  border-right: 0;
}

.landing-feature-strip .feature-card span {
  width: 74px;
  height: 74px;
  border: 0;
  color: var(--gold);
  background: transparent;
  box-shadow: none;
  font-size: 2.65rem;
}

.landing-feature-strip .feature-card h3 {
  color: var(--gold);
  font-size: 1rem;
}

.landing-feature-strip .feature-card p {
  color: #f4f4f4;
  font-size: 0.97rem;
  line-height: 1.55;
}

.landing-view .landing-section {
  gap: 12px;
}

.landing-view .landing-section h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 12px 0 0;
  color: #f5f5f5;
  font-size: 2rem;
  text-transform: uppercase;
}

.landing-view .landing-section h2 span {
  width: 76px;
  height: 9px;
  background:
    linear-gradient(var(--gold), var(--gold)) left top / 100% 2px no-repeat,
    linear-gradient(var(--green), var(--green)) left center / 100% 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) left bottom / 100% 2px no-repeat;
}

.landing-view .landing-section > .muted {
  margin: 0 0 10px;
  color: #d8d8d8;
  font-size: 1rem;
}

.landing-premium-plan {
  grid-template-columns: minmax(210px, 0.82fr) minmax(250px, 1.12fr) 170px;
  gap: 22px;
  min-height: 392px;
  padding: 34px;
  border: 1px solid rgba(141, 255, 28, 0.7);
  border-radius: 18px;
  background:
    radial-gradient(circle at 53% 56%, rgba(96, 255, 34, 0.18), transparent 260px),
    linear-gradient(135deg, rgba(0, 28, 7, 0.86), rgba(0, 5, 2, 0.98));
}

.landing-premium-plan .popular-badge {
  top: -11px;
  left: 50%;
  border-radius: 8px;
  color: #211600;
  font-size: 0.98rem;
}

.landing-premium-plan .plan-copy h3 {
  color: var(--gold);
  font-size: 1.6rem;
}

.landing-premium-plan .plan-copy strong {
  display: block;
  color: var(--gold);
  font-size: 3.95rem;
  line-height: 1;
}

.landing-premium-plan .plan-copy span {
  color: var(--gold-2);
  font-size: 1.2rem;
}

.landing-premium-plan .plan-copy li {
  color: #fff;
  font-size: 1.08rem;
}

.plan-art {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: end center;
}

.landing-pickaxe {
  position: absolute;
  top: 18px;
  color: #88ff4a;
  font-size: 8rem;
  transform: rotate(-35deg);
  filter: drop-shadow(0 0 18px rgba(105, 255, 45, 0.75));
}

.coin-stack-art {
  width: 190px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f8fff5;
  background:
    radial-gradient(circle at 50% 42%, #6cff37 0 34%, #126b12 58%, #031006 100%);
  box-shadow: 0 -16px 0 rgba(45, 205, 20, 0.5), 0 18px 0 #063b09, 0 28px 28px rgba(89, 255, 37, 0.3);
  font-size: 1.8rem;
  font-weight: 950;
  z-index: 2;
}

.plan-metrics {
  display: grid;
  gap: 0;
  border: 1px solid rgba(141, 255, 28, 0.48);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
}

.plan-metrics div + div {
  border-top: 1px solid rgba(141, 255, 28, 0.16);
  padding-top: 16px;
  margin-top: 16px;
}

.plan-metrics small,
.landing-reward-band aside small,
.landing-reward-band aside span {
  color: var(--gold-2);
}

.plan-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 1.95rem;
}

.landing-premium-plan > .primary-button {
  grid-column: 1 / -1;
  min-height: 52px;
  justify-content: center;
  border-radius: 8px;
  color: #111;
  font-size: 1.15rem;
}

.landing-reward-band {
  grid-template-columns: 240px minmax(0, 1fr) 220px;
  min-height: 218px;
  border: 1px solid rgba(141, 255, 28, 0.52);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 44%, rgba(94, 255, 33, 0.22), transparent 190px),
    linear-gradient(135deg, rgba(0, 25, 6, 0.86), rgba(0, 5, 2, 0.98));
}

.landing-reward-band .explore-art {
  height: 150px;
  border: 0;
  color: #f7fff5;
  background:
    radial-gradient(circle at 50% 42%, #6cff37 0 30%, #126b12 54%, #031006 100%);
  box-shadow: 0 0 34px rgba(101, 255, 36, 0.28);
  overflow: hidden;
}

.landing-reward-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.landing-reward-band h2 {
  color: var(--gold);
  font-size: 2.15rem;
}

.landing-reward-band p {
  margin: 0;
  color: #fff;
  font-size: 1.42rem;
}

.landing-reward-band small {
  display: block;
  margin: 8px 0 16px;
  color: #e5e5e5;
}

.landing-reward-band .ghost-button {
  width: min(100%, 315px);
  min-height: 48px;
  justify-content: center;
  color: var(--gold);
}

.landing-reward-band aside {
  border: 1px solid rgba(141, 255, 28, 0.5);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.landing-reward-band aside strong {
  display: block;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1.1;
}

.landing-view .how-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.landing-view .how-grid article {
  min-height: 96px;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-items: start;
  gap: 12px;
  border: 1px solid rgba(141, 255, 28, 0.42);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  background: rgba(1, 20, 5, 0.76);
}

.landing-view .how-grid article > span {
  width: 58px;
  height: 58px;
  color: var(--gold);
  font-size: 1.75rem;
}

.landing-view .how-grid h3 {
  color: var(--gold);
  font-size: 0.98rem;
}

.landing-view .how-grid p {
  color: #ededed;
  font-size: 0.8rem;
}

.landing-stat-strip {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border: 1px solid rgba(141, 255, 28, 0.42);
  border-radius: 14px;
  padding: 18px 24px;
  background: rgba(1, 18, 5, 0.86);
}

.landing-stat-strip article > span {
  width: 54px;
  height: 54px;
  border: 0;
  color: var(--green);
  background: transparent;
  box-shadow: none;
}

.landing-stat-strip strong {
  color: var(--gold);
  font-size: 1.6rem;
}

.landing-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
  padding: 12px 10px 0;
  color: #d9d9d9;
}

.landing-footer .brand strong {
  font-size: 1.35rem;
}

.landing-footer .brand small {
  color: #d6d6d6;
  font-size: 0.8rem;
}

.landing-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 7px 34px;
  font-size: 0.82rem;
}

.landing-footer nav strong {
  grid-column: 1 / -1;
  color: #fff;
}

.social-row {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.social-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 760px) {
  .landing-view .app.landing-app {
    padding: 18px 14px 24px;
  }

  .landing-view .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .landing-view .brand-mark {
    width: 46px;
    height: 46px;
  }

  .landing-view .brand strong {
    font-size: 1.18rem;
  }

  .landing-view .brand small {
    font-size: 0.68rem;
  }

  .landing-view .launch-timer {
    min-width: 0;
    padding: 9px 10px;
    gap: 2px 8px;
    border-radius: 12px;
  }

  .landing-view .launch-timer::before {
    font-size: 1.25rem;
  }

  .landing-view .launch-timer small {
    font-size: 0.66rem;
  }

  .landing-view .launch-timer strong {
    font-size: 0.78rem;
  }

  .landing-view .public-hero,
  .landing-premium-plan,
  .landing-reward-band,
  .landing-footer {
    grid-template-columns: 1fr;
  }

  .landing-view .public-hero {
    gap: 4px;
    min-height: auto;
    padding-top: 8px;
  }

  .landing-view .public-hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.45rem);
  }

  .landing-view .public-hero p {
    font-size: 1.05rem;
  }

  .landing-view .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .landing-view .hero-actions a {
    min-width: 0;
    min-height: 50px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .landing-coin-scene {
    min-height: 320px;
  }

  .landing-coin {
    width: 220px;
    height: 220px;
    font-size: 3.35rem;
  }

  .coin-platform {
    width: 270px;
    bottom: 28px;
  }

  .landing-feature-strip,
  .landing-view .how-grid,
  .landing-stat-strip {
    grid-template-columns: 1fr;
  }

  .landing-feature-strip .feature-card {
    min-height: 148px;
    border-right: 0;
    border-bottom: 1px solid rgba(141, 255, 28, 0.28);
    padding: 18px;
  }

  .landing-feature-strip .feature-card:last-child {
    border-bottom: 0;
  }

  .landing-view .landing-section h2 {
    gap: 10px;
    font-size: 1.4rem;
  }

  .landing-view .landing-section h2 span {
    width: 38px;
  }

  .landing-premium-plan {
    min-height: auto;
    padding: 28px;
  }

  .landing-premium-plan .plan-copy strong {
    font-size: 3.3rem;
  }

  .plan-metrics {
    grid-template-columns: repeat(3, 1fr);
    padding: 14px;
  }

  .plan-metrics div + div {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid rgba(141, 255, 28, 0.16);
  }

  .plan-metrics strong {
    font-size: 1.25rem;
  }

  .landing-reward-band {
    text-align: center;
  }

  .landing-reward-band .ghost-button {
    margin: 0 auto;
  }

  .landing-stat-strip article {
    justify-content: flex-start;
  }

  .landing-footer {
    text-align: left;
  }
}

body.theme-light {
  color-scheme: light;
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-2: #ffffff;
  --line: rgba(23, 150, 47, 0.18);
  --text: #12852a;
  --muted: #247a35;
  --gold: #138a24;
  --gold-2: #138a24;
  --blue: #138a24;
  --green: #138a24;
  --green-2: #118020;
  --green-soft: rgba(19, 138, 36, 0.08);
  --pink: #138a24;
  --shadow: 0 14px 38px rgba(20, 82, 35, 0.1);
  background: #ffffff;
  color: var(--text);
}

body.theme-light:not(.landing-view):not(.support-view),
body.theme-light.landing-view,
body.theme-light.auth-view {
  background: #ffffff;
}

body.theme-light .topbar {
  background: rgba(255, 255, 255, 0.92);
}

body.theme-light .drawer,
body.theme-light .modal,
body.theme-light .login-panel,
body.theme-light .section-panel,
body.theme-light .admin-panel,
body.theme-light .profile-panel,
body.theme-light .welcome-card,
body.theme-light .mining-banner,
body.theme-light .coin-total,
body.theme-light .public-hero,
body.theme-light .public-stats,
body.theme-light .refer-band,
body.theme-light .feature-card,
body.theme-light .plan-card,
body.theme-light .quick-card,
body.theme-light .explore-card,
body.theme-light .metric,
body.theme-light .nav-card,
body.theme-light .admin-sidebar,
body.theme-light .admin-row,
body.theme-light .admin-table-wrap,
body.theme-light .wallet-box,
body.theme-light .recovery-list,
body.theme-light .chat-bubble,
body.theme-light .mobile-profile-card,
body.theme-light .mobile-balance-grid a,
body.theme-light .mobile-transfer-row a,
body.theme-light .mobile-action-grid a,
body.theme-light .mobile-mining-card,
body.theme-light .mobile-install-card,
body.theme-light .mobile-overview-card,
body.theme-light .mobile-refer-banner,
body.theme-light .bottom-nav,
body.theme-light .launch-timer,
body.theme-light .admin-link,
body.theme-light .ghost-button,
body.theme-light .icon-button,
body.theme-light .admin-toolbar a,
body.theme-light .drawer nav a,
body.theme-light .drawer nav button,
body.theme-light .profile-step,
body.theme-light .table-row {
  background: #ffffff;
  color: var(--text);
}

body.theme-light .modal-title,
body.theme-light .form-field input,
body.theme-light .form-field textarea,
body.theme-light .form-field select,
body.theme-light .modal-inline-form input,
body.theme-light .inline-pay-form input,
body.theme-light .admin-users-table th,
body.theme-light .admin-users-table td,
body.theme-light .mobile-overview-card > span {
  background: #ffffff;
  color: var(--text);
}

body.theme-light .brand strong,
body.theme-light .brand small,
body.theme-light .launch-timer strong,
body.theme-light .launch-timer small,
body.theme-light .mobile-user-row h1,
body.theme-light .mobile-user-row p,
body.theme-light .mobile-balance-grid span,
body.theme-light .mobile-balance-grid strong,
body.theme-light .mobile-mining-card h2,
body.theme-light .mobile-mining-card strong,
body.theme-light .mobile-mining-card strong small,
body.theme-light .mobile-transfer-row a,
body.theme-light .mobile-action-grid a,
body.theme-light .mobile-action-grid span,
body.theme-light .mobile-refer-banner,
body.theme-light .mobile-refer-banner small,
body.theme-light .bottom-nav a,
body.theme-light .bottom-nav button,
body.theme-light .bottom-nav .active,
body.theme-light .feature-card h3,
body.theme-light .plan-card strong,
body.theme-light .public-stats strong,
body.theme-light .coin-total strong,
body.theme-light .wallet-box strong,
body.theme-light .stat-value,
body.theme-light .link-button,
body.theme-light .terms-box,
body.theme-light .form-field label,
body.theme-light .muted,
body.theme-light h1,
body.theme-light h2,
body.theme-light h3,
body.theme-light p,
body.theme-light small,
body.theme-light span,
body.theme-light strong {
  color: var(--text);
}

body.theme-light .brand-mark {
  color: #ffffff;
}

body.theme-light p,
body.theme-light small,
body.theme-light label,
body.theme-light li,
body.theme-light td,
body.theme-light th,
body.theme-light em,
body.theme-light .muted,
body.theme-light .copy-line,
body.theme-light .hero-copy p,
body.theme-light .public-hero p,
body.theme-light .landing-section p,
body.theme-light .landing-footer,
body.theme-light .landing-footer a,
body.theme-light .landing-footer p,
body.theme-light .feature-card p,
body.theme-light .plan-card p,
body.theme-light .quick-card p,
body.theme-light .explore-card p,
body.theme-light .nav-card small,
body.theme-light .wallet-box small,
body.theme-light .support-title small,
body.theme-light .profile-step-head p,
body.theme-light .mobile-user-row p,
body.theme-light .mobile-refer-banner small,
body.theme-light .mobile-overview-card span,
body.theme-light .mobile-overview-card strong,
body.theme-light .mobile-mining-card strong small,
body.theme-light .terms-box {
  color: var(--text) !important;
}

body.theme-light.auth-view .login-form,
body.theme-light.auth-view .recovery-card,
body.theme-light.auth-view .auth-option-card,
body.theme-light.landing-view .how-grid article,
body.theme-light .how-grid article,
body.theme-light .profile-step,
body.theme-light .nav-card {
  border-color: rgba(19, 138, 36, 0.16) !important;
  background: #ffffff !important;
  box-shadow:
    0 12px 30px rgba(11, 91, 30, 0.08),
    0 1px 0 rgba(19, 138, 36, 0.08) !important;
}

body.theme-light.auth-view .suggestion-row .ghost-button,
body.theme-light.auth-view .auth-back-button {
  border-color: rgba(19, 138, 36, 0.22) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(11, 91, 30, 0.06) !important;
}

body.theme-light .how-grid article > span,
body.theme-light.auth-view .auth-option-card > span,
body.theme-light.auth-view .auth-option-card em {
  border-color: rgba(19, 138, 36, 0.28) !important;
  color: var(--green) !important;
  background: rgba(19, 138, 36, 0.08) !important;
  box-shadow: 0 8px 20px rgba(11, 91, 30, 0.08) !important;
}

body.theme-light.support-view {
  background: #ffffff !important;
}

body.theme-light .support-chat-shell {
  background: #ffffff !important;
  box-shadow: none !important;
}

body.theme-light .support-chat-head {
  background: #ffffff !important;
  box-shadow: 0 12px 30px rgba(11, 91, 30, 0.08) !important;
}

body.theme-light .support-back,
body.theme-light .support-chat-head strong,
body.theme-light .support-chat-head small {
  color: var(--text) !important;
  text-shadow: none !important;
}

body.theme-light .support-chat-window {
  background: #ffffff !important;
}

body.theme-light .empty-chat-card,
body.theme-light .chat-bubble,
body.theme-light .chat-bubble.user,
body.theme-light .chat-bubble.support,
body.theme-light .support-composer {
  border-color: rgba(19, 138, 36, 0.16) !important;
  background: #ffffff !important;
  box-shadow:
    0 12px 30px rgba(11, 91, 30, 0.08),
    0 1px 0 rgba(19, 138, 36, 0.08) !important;
}

body.theme-light .chat-bubble.user {
  background: rgba(19, 138, 36, 0.07) !important;
}

body.theme-light .empty-chat-card h2,
body.theme-light .empty-chat-card p,
body.theme-light .chat-bubble strong,
body.theme-light .chat-bubble p,
body.theme-light .chat-bubble small,
body.theme-light .support-composer textarea,
body.theme-light .support-composer textarea::placeholder,
body.theme-light .support-attach-button {
  color: var(--text) !important;
}

body.theme-light .empty-chat-card span {
  background: rgba(19, 138, 36, 0.16) !important;
}

body.theme-light .empty-chat-card button {
  border-color: rgba(19, 138, 36, 0.24) !important;
  color: var(--text) !important;
  background: #ffffff !important;
  box-shadow: 0 10px 24px rgba(11, 91, 30, 0.08) !important;
}

body.theme-light .admin-toggle-card,
body.theme-light .admin-count-card,
body.theme-light .bulk-dummy-panel,
body.theme-light .admin-history-card,
body.theme-light .admin-history-help,
body.theme-light .admin-history-balance div,
body.theme-light .admin-support-users,
body.theme-light .admin-support-chat,
body.theme-light .admin-support-user,
body.theme-light .admin-support-empty,
body.theme-light .admin-support-head,
body.theme-light .admin-support-composer,
body.theme-light .reward-action-panel,
body.theme-light .admin-reward-pay-form,
body.theme-light .table-actions,
body.theme-light .admin-table-wrap {
  border-color: rgba(19, 138, 36, 0.16) !important;
  background: #ffffff !important;
  color: var(--text) !important;
  box-shadow:
    0 12px 30px rgba(11, 91, 30, 0.08),
    0 1px 0 rgba(19, 138, 36, 0.08) !important;
}

body.theme-light .admin-support-user.active,
body.theme-light .admin-users-table th {
  border-color: rgba(19, 138, 36, 0.24) !important;
  background: rgba(19, 138, 36, 0.07) !important;
}

body.theme-light .admin-users-table td,
body.theme-light .admin-users-table th {
  border-color: rgba(19, 138, 36, 0.14) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}

body.theme-light .admin-users-table td {
  background: #ffffff !important;
}

body.theme-light .admin-history-rows input,
body.theme-light .compact-admin-table input,
body.theme-light .admin-reward-pay-form input,
body.theme-light .admin-support-composer textarea,
body.theme-light .form-field input,
body.theme-light .form-field select,
body.theme-light .form-field textarea {
  border-color: rgba(19, 138, 36, 0.22) !important;
  background: #ffffff !important;
  color: var(--text) !important;
  box-shadow: inset 0 0 0 1px rgba(19, 138, 36, 0.03) !important;
}

body.theme-light .admin-history-rows input:focus,
body.theme-light .compact-admin-table input:focus,
body.theme-light .admin-reward-pay-form input:focus,
body.theme-light .admin-support-composer textarea:focus,
body.theme-light .form-field input:focus,
body.theme-light .form-field select:focus,
body.theme-light .form-field textarea:focus {
  border-color: rgba(19, 138, 36, 0.62) !important;
  box-shadow: 0 0 0 3px rgba(19, 138, 36, 0.1) !important;
}

body.theme-light .metric-icon,
body.theme-light .admin-support-empty i,
body.theme-light .admin-support-head .support-logo {
  border-color: rgba(19, 138, 36, 0.28) !important;
  color: var(--green) !important;
  background: rgba(19, 138, 36, 0.08) !important;
  box-shadow: 0 8px 20px rgba(11, 91, 30, 0.08) !important;
}

body.theme-light .admin-count-card span,
body.theme-light .admin-count-card strong,
body.theme-light .admin-count-card small,
body.theme-light .admin-toggle-card h2,
body.theme-light .admin-toggle-card p,
body.theme-light .bulk-dummy-panel h2,
body.theme-light .check-row,
body.theme-light .admin-history-help p,
body.theme-light .admin-history-balance span,
body.theme-light .admin-history-balance strong,
body.theme-light .admin-reward-pay-form label,
body.theme-light .admin-support-users > strong,
body.theme-light .admin-support-user small,
body.theme-light .admin-support-empty,
body.theme-light .admin-support-empty strong,
body.theme-light .admin-support-empty small,
body.theme-light .admin-support-head strong,
body.theme-light .admin-support-head small,
body.theme-light .admin-support-composer textarea,
body.theme-light .admin-support-composer textarea::placeholder {
  color: var(--text) !important;
  text-shadow: none !important;
}

body.theme-light .dummy-status {
  border-color: rgba(245, 198, 74, 0.64) !important;
  color: #5c4300 !important;
  background: #ffe27a !important;
  box-shadow: 0 6px 14px rgba(153, 111, 0, 0.12) !important;
}

body.theme-light .admin-support-user em {
  color: #ffffff !important;
  background: #e5293e !important;
}

body.theme-light {
  --muted: #4b5563;
}

body.theme-light p,
body.theme-light small,
body.theme-light label,
body.theme-light li,
body.theme-light em,
body.theme-light .muted,
body.theme-light .copy-line,
body.theme-light .hero-copy p,
body.theme-light .public-hero p,
body.theme-light .landing-section p,
body.theme-light .landing-footer,
body.theme-light .landing-footer a,
body.theme-light .landing-footer p,
body.theme-light .feature-card p,
body.theme-light .plan-card p,
body.theme-light .quick-card p,
body.theme-light .explore-card p,
body.theme-light .nav-card small,
body.theme-light .wallet-box small,
body.theme-light .support-title small,
body.theme-light .profile-step-head p,
body.theme-light .mobile-user-row p,
body.theme-light .mobile-refer-banner small,
body.theme-light .mobile-overview-card span,
body.theme-light .mobile-mining-card strong small,
body.theme-light .terms-box,
body.theme-light .admin-count-card small,
body.theme-light .admin-toggle-card p,
body.theme-light .check-row,
body.theme-light .admin-history-help p,
body.theme-light .admin-history-balance span,
body.theme-light .admin-reward-pay-form label,
body.theme-light .admin-support-user small,
body.theme-light .admin-support-empty small,
body.theme-light .admin-support-head small,
body.theme-light .support-composer textarea::placeholder,
body.theme-light .admin-support-composer textarea::placeholder {
  color: var(--muted) !important;
}

body.theme-light .primary-button,
body.theme-light .primary-button *,
body.theme-light .support-send-button,
body.theme-light .support-send-button *,
body.theme-light .danger-button,
body.theme-light .danger-button *,
body.theme-light .popular-badge,
body.theme-light .admin-support-user em,
body.theme-light .brand-mark {
  color: #ffffff !important;
}

body.theme-light .menu-button {
  border-color: rgba(19, 138, 36, 0.18) !important;
  background: #ffffff !important;
  box-shadow:
    0 14px 30px rgba(11, 91, 30, 0.18),
    0 1px 0 rgba(19, 138, 36, 0.08) !important;
}

body.theme-light .menu-button span {
  background: var(--green) !important;
  box-shadow: none !important;
}

body.theme-light .bottom-nav a,
body.theme-light .bottom-nav button {
  color: #374151 !important;
}

body.theme-light .bottom-nav .active,
body.theme-light .bottom-nav .active i,
body.theme-light .bottom-nav .active span {
  color: var(--green) !important;
}

body.theme-light .bottom-nav {
  background: #ffffff !important;
  box-shadow:
    0 -18px 34px rgba(0, 0, 0, 0.16),
    0 -1px 0 rgba(19, 138, 36, 0.08) !important;
}

body.theme-light .welcome-card,
body.theme-light .mining-banner,
body.theme-light .section-panel,
body.theme-light .wallet-box,
body.theme-light .quick-card,
body.theme-light .nav-card,
body.theme-light .mobile-profile-card,
body.theme-light .mobile-balance-grid a,
body.theme-light .mobile-transfer-row a,
body.theme-light .mobile-action-grid a,
body.theme-light .mobile-mining-card,
body.theme-light .mobile-install-card,
body.theme-light .mobile-overview-card,
body.theme-light .mobile-refer-banner {
  box-shadow:
    0 22px 34px rgba(0, 0, 0, 0.18),
    0 1px 0 rgba(19, 138, 36, 0.08) !important;
}

body.theme-dark .welcome-card,
body.theme-dark .mining-banner,
body.theme-dark .section-panel,
body.theme-dark .wallet-box,
body.theme-dark .quick-card,
body.theme-dark .nav-card,
body.theme-dark .mobile-profile-card,
body.theme-dark .mobile-balance-grid a,
body.theme-dark .mobile-transfer-row a,
body.theme-dark .mobile-action-grid a,
body.theme-dark .mobile-mining-card,
body.theme-dark .mobile-install-card,
body.theme-dark .mobile-overview-card,
body.theme-dark .mobile-refer-banner {
  box-shadow:
    0 22px 34px rgba(255, 255, 255, 0.12),
    0 0 30px rgba(116, 248, 73, 0.12) !important;
}

body.theme-light .mobile-balance-grid span,
body.theme-light .mobile-transfer-row span,
body.theme-light .mobile-action-grid span,
body.theme-light .mobile-mining-card h2 {
  color: #374151 !important;
}

body.theme-light .mobile-install-card {
  border-color: rgba(19, 138, 36, 0.24) !important;
  background:
    radial-gradient(circle at 20% 50%, rgba(124, 255, 143, 0.24), transparent 118px),
    linear-gradient(135deg, #15c872 0%, #079453 52%, #026532 100%) !important;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.7) inset !important;
}

body.theme-dark .mobile-install-card {
  border-color: rgba(116, 248, 73, 0.34) !important;
  background:
    radial-gradient(circle at 20% 50%, rgba(116, 248, 73, 0.32), transparent 118px),
    linear-gradient(135deg, rgba(13, 173, 88, 0.96) 0%, rgba(3, 113, 57, 0.98) 54%, rgba(0, 47, 24, 0.98) 100%) !important;
}

body.theme-light .mobile-install-title,
body.theme-light .mobile-install-card h2,
body.theme-dark .mobile-install-title,
body.theme-dark .mobile-install-card h2 {
  color: #ffffff !important;
}

body.theme-light .mobile-install-card h2,
body.theme-dark .mobile-install-card h2 {
  color: rgba(255, 255, 255, 0.82) !important;
}

body.theme-light .mobile-install-icon,
body.theme-dark .mobile-install-icon {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16) !important;
}

body.theme-light .mobile-install-card button,
body.theme-dark .mobile-install-card button {
  border-color: transparent !important;
  color: #0b7d23 !important;
  background: #ffffff !important;
}

body.theme-light .drawer nav a,
body.theme-light .drawer nav button {
  border-color: rgb(99 224 103 / 46%) !important;
  color: #111827 !important;
  background: #ffffff !important;
}

.profile-grid .profile-panel:first-child {
  align-content: start;
  gap: 6px;
}

.profile-grid .profile-panel:first-child h1,
.profile-grid .profile-panel:first-child h2,
.profile-grid .profile-panel:first-child > span {
  margin: 0;
  line-height: 1.08;
}

.profile-grid .profile-panel:first-child .avatar {
  margin-bottom: 8px;
}

.profile-grid .profile-panel:first-child .primary-button {
  margin-top: 8px;
}

body.theme-light .field-list span,
body.theme-light .field-list strong {
  color: #111827 !important;
}

body.theme-light.support-view .chat-bubble strong,
body.theme-light.support-view .chat-bubble p,
body.theme-light.support-view .chat-bubble small {
  color: #111827 !important;
}

body.theme-light.auth-view .auth-welcome-title {
  color: #111827 !important;
}

body.theme-light.landing-view .landing-section h2 {
  color: #111827 !important;
}

@media (min-width: 761px) {
  .landing-view .how-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
  }

  .landing-view .how-grid article {
    min-height: 240px;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 14px;
    padding: 24px 20px;
    text-align: center;
  }

  .landing-view .how-grid article > span {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .landing-view .how-grid h3 {
    max-width: 170px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.24;
    text-align: center;
  }

  .landing-view .how-grid p {
    max-width: 210px;
    margin: 0 auto;
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .landing-view .public-hero {
    position: relative;
    min-height: 420px;
    padding-bottom: 32px;
  }

  .landing-view .hero-copy,
  .landing-view .hero-actions {
    position: relative;
    z-index: 2;
  }

  .landing-view .landing-coin-scene {
    position: absolute;
    top: 252px;
    right: 0;
    z-index: 1;
    width: min(148px, 48vw);
    min-height: 0;
    margin-top: 0;
    padding-right: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
  }

  .landing-view .hero-coin-image.public-coin,
  .landing-view .public-coin {
    width: min(148px, 48vw);
  }

  .landing-view .landing-coin {
    width: min(148px, 48vw);
    height: min(148px, 48vw);
  }

  body.theme-light.landing-view .landing-section h2 {
    color: #111827 !important;
  }

  .landing-view .how-grid {
    gap: 12px;
  }

  .landing-view .how-grid article {
    min-height: auto;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 12px;
    padding: 14px;
    text-align: left;
  }

  .landing-view .how-grid article > span {
    grid-row: 1;
  }

  .landing-view .how-grid h3 {
    justify-self: start;
    max-width: none;
    margin: 0;
    color: var(--green);
    font-size: 0.96rem;
    line-height: 1.24;
    text-align: left;
  }

  .landing-view .how-grid p {
    grid-column: 1 / -1;
    margin: 0;
    color: #374151;
    font-size: 0.84rem;
    line-height: 1.42;
    text-align: left;
  }
}
