/**
 * PaidVests Demo - Classic PTC-inspired theme
 * Emerald / charcoal / white. Bootstrap 5 overrides.
 */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #20B85A;
  --color-primary-hover: #17994A;
  --color-primary-dark: #107A3A;
  --color-primary-light: #EAF9F0;
  --color-accent: #35D46F;
  --color-nav: #20252B;
  --color-heading: #252A30;
  --color-text: #4B535C;
  --color-muted: #7A848E;
  --color-background: #2AAD62;
  --bg-pattern: url('../images/bg-pattern.png');
  --bg-pattern-size: 160px auto;
  --bg-pattern-row: 160px;
  --color-surface: #FFFFFF;
  --color-border: #DDE4E0;
  --color-border-green: #B8E6C8;
  --color-success: #16A34A;
  --color-warning: #F59E0B;
  --color-danger: #DC3545;
  --color-info: #2388D8;

  --font-sans: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-subtle: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-section: 0 12px 36px rgba(8, 60, 30, 0.16), 0 2px 8px rgba(8, 60, 30, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(20, 40, 30, 0.08);
  --shadow-modal: 0 24px 60px rgba(0, 0, 0, 0.18);
  --header-h: 64px;
  --sidebar-w: 260px;
  --sidebar-gap: 1rem;
  --sidebar-radius: 18px;
  --transition: 160ms ease;
  --container-max: 1440px;
}

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

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  background-color: var(--color-background);
}
body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  background-color: var(--color-background);
  background-image: none;
  -webkit-font-smoothing: antialiased;
}

/* Full-page icon pattern: row opacity 0 → 0.2 → … → 0.8 then stays at 0.8 */
body::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: var(--bg-pattern);
  background-repeat: repeat;
  background-size: var(--bg-pattern-size);
  background-position: top left;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) calc(var(--bg-pattern-row) * 1),
    rgba(0, 0, 0, 0.2) calc(var(--bg-pattern-row) * 1),
    rgba(0, 0, 0, 0.2) calc(var(--bg-pattern-row) * 2),
    rgba(0, 0, 0, 0.4) calc(var(--bg-pattern-row) * 2),
    rgba(0, 0, 0, 0.4) calc(var(--bg-pattern-row) * 3),
    rgba(0, 0, 0, 0.6) calc(var(--bg-pattern-row) * 3),
    rgba(0, 0, 0, 0.6) calc(var(--bg-pattern-row) * 4),
    rgba(0, 0, 0, 0.8) calc(var(--bg-pattern-row) * 4),
    rgba(0, 0, 0, 0.8) calc(var(--bg-pattern-row) * 5),
    rgba(0, 0, 0, 0.8) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0) calc(var(--bg-pattern-row) * 1),
    rgba(0, 0, 0, 0.2) calc(var(--bg-pattern-row) * 1),
    rgba(0, 0, 0, 0.2) calc(var(--bg-pattern-row) * 2),
    rgba(0, 0, 0, 0.4) calc(var(--bg-pattern-row) * 2),
    rgba(0, 0, 0, 0.4) calc(var(--bg-pattern-row) * 3),
    rgba(0, 0, 0, 0.6) calc(var(--bg-pattern-row) * 3),
    rgba(0, 0, 0, 0.6) calc(var(--bg-pattern-row) * 4),
    rgba(0, 0, 0, 0.8) calc(var(--bg-pattern-row) * 4),
    rgba(0, 0, 0, 0.8) calc(var(--bg-pattern-row) * 5),
    rgba(0, 0, 0, 0.8) 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
main { flex: 1; }
h1, h2, h3, h4, h5, h6, .page-title, .section-title {
  color: var(--color-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.page-title { font-size: clamp(1.35rem, 2.5vw, 1.85rem); margin-bottom: 0.25rem; }
.page-subtitle { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.pv-public-main > .page-title,
.pv-content > .page-title,
.pv-public-main > h1:first-child,
.pv-content > h1:first-child {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 40, 20, 0.2);
}
.pv-public-main > .page-subtitle,
.pv-content > .page-subtitle {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 1px rgba(0, 40, 20, 0.15);
}
.section-title { font-size: 1.1rem; margin-bottom: 0.75rem; }
a { color: var(--color-primary-dark); }
a:hover { color: var(--color-primary-hover); }
.text-muted, .form-text { color: var(--color-muted) !important; }
.money, .font-tabular {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

/* Bootstrap primary → emerald */
.btn-primary {
  --bs-btn-bg: var(--color-primary);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-bg: var(--color-primary-hover);
  --bs-btn-hover-border-color: var(--color-primary-hover);
  --bs-btn-active-bg: var(--color-primary-dark);
  --bs-btn-active-border-color: var(--color-primary-dark);
  --bs-btn-disabled-bg: #9ad4b0;
  --bs-btn-disabled-border-color: #9ad4b0;
  font-weight: 600;
}
.btn-outline-primary {
  --bs-btn-color: var(--color-primary-dark);
  --bs-btn-border-color: var(--color-primary);
  --bs-btn-hover-bg: var(--color-primary-light);
  --bs-btn-hover-border-color: var(--color-primary);
  --bs-btn-hover-color: var(--color-primary-dark);
  --bs-btn-active-bg: var(--color-primary);
  --bs-btn-active-border-color: var(--color-primary);
  font-weight: 600;
}
.btn-secondary {
  --bs-btn-bg: var(--color-nav);
  --bs-btn-border-color: var(--color-nav);
  --bs-btn-hover-bg: #2c333b;
  --bs-btn-hover-border-color: #2c333b;
  font-weight: 600;
}
.btn {
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  min-height: 42px;
  padding: 0.45rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.btn-sm { min-height: 34px; padding: 0.3rem 0.7rem; font-size: 0.875rem; }
.btn-lg { min-height: 48px; padding: 0.6rem 1.25rem; }
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  box-shadow: none;
}

/* Forms */
.form-control, .form-select {
  border-color: var(--color-border);
  border-radius: var(--radius-sm);
  min-height: 44px;
  font-size: 0.95rem;
  color: var(--color-heading);
}
.form-control:focus, .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(32, 184, 90, 0.2);
}
.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-heading);
  margin-bottom: 0.35rem;
}
.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Cards */
.card, .pv-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
}
.card-header, .pv-card-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
  color: var(--color-heading);
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
}
.card-body { padding: 1.15rem; }
.pv-card {
  background: #ffffff;
  border: 1px solid rgba(232, 236, 234, 0.95);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(8, 60, 30, 0.07);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.pv-card:hover {
  border-color: rgba(68, 187, 119, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(8, 60, 30, 0.1);
}
.pv-card .card-header {
  border-bottom: 1px solid rgba(68, 187, 119, 0.12);
}
.pv-card .card-header.pv-card-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.15rem 0.9rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
  border-bottom: 1px solid rgba(68, 187, 119, 0.12);
  font-family: 'Sora', var(--font-sans);
}
.pv-card-head::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 3px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #44BB77, #2fa866);
}
.pv-card-head__main {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.pv-card-head__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(68, 187, 119, 0.24);
}
.pv-card-head__title {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #152019;
}
.pv-card-head__extra {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
}
.pv-card-head__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.1);
  border: 1px solid rgba(68, 187, 119, 0.18);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #237a4a;
  font-variant-numeric: tabular-nums;
}
.pv-card-head__badge strong {
  font-weight: 800;
  color: #107a3a;
}
.pv-card-head__badge--active {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.24);
  color: #15803d;
}
.pv-card-head__badge--gold {
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(245, 158, 11, 0.28);
  color: #92400e;
}
.pv-card-head__stats {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.pv-card-head__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #237a4a;
  text-decoration: none;
  white-space: nowrap;
}
.pv-card-head__link:hover {
  color: #107a3a;
  text-decoration: underline;
}
.pv-card-head--gold::after {
  background: linear-gradient(180deg, #fbbf24, #d97706);
}
.pv-card-head--gold .pv-card-head__icon {
  background: linear-gradient(145deg, #fbbf24, #d97706);
  box-shadow: 0 3px 10px rgba(217, 119, 6, 0.28);
}
.pv-card-head--orange::after {
  background: linear-gradient(180deg, #ffb020, #e88a00);
}
.pv-card-head--orange .pv-card-head__icon {
  background: linear-gradient(145deg, #fb923c, #ea580c);
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.24);
}
.pv-card-head--blue::after {
  background: linear-gradient(180deg, #5b9fd4, #4a8bc2);
}
.pv-card-head--blue .pv-card-head__icon {
  background: linear-gradient(145deg, #5b9fd4, #4a8bc2);
  box-shadow: 0 3px 10px rgba(74, 139, 194, 0.24);
}
.pv-card .card-header .btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(68, 187, 119, 0.28);
  color: #237a4a;
  box-shadow: 0 2px 6px rgba(8, 60, 30, 0.05);
}
.pv-card .card-header .btn-sm:hover {
  background: #fff;
  border-color: rgba(68, 187, 119, 0.38);
  color: #107a3a;
}
.pv-card .card-body {
  padding: 1.2rem;
}
.pv-snapshot {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.35rem 1.1rem 1rem;
}
.pv-snapshot__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(232, 236, 234, 0.95);
  background: transparent;
  box-shadow: none;
}
.pv-snapshot__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pv-snapshot__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-snapshot__label i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
  border-radius: 7px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
  color: #44BB77;
  font-size: 0.72rem;
  line-height: 1;
}
.pv-snapshot__value {
  flex-shrink: 0;
  max-width: 58%;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  color: #152019;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pv-snapshot__value--accent {
  color: #2fa866;
}
.pv-snapshot__value--money {
  color: #107a3a;
}
.pv-snapshot__value--code {
  padding: 0.18rem 0.48rem;
  border-radius: 7px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
  color: #237a4a;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}
.pv-dashboard-aside .pv-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 102, 0.16), transparent 52%),
    radial-gradient(circle at 0% 100%, rgba(15, 122, 56, 0.08), transparent 55%),
    linear-gradient(165deg, #d8e8de 0%, #cfe3d6 52%, #c2dcc8 100%);
  border-color: rgba(68, 187, 119, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(47, 120, 80, 0.08),
    0 12px 28px rgba(8, 60, 30, 0.1);
}
.pv-dashboard-aside .pv-card .card-header.pv-card-head {
  background: rgba(255, 255, 255, 0.38);
  border-bottom-color: rgba(47, 120, 80, 0.16);
}
.pv-dashboard-aside .pv-aside-panel .card-body {
  padding: 0.95rem;
}
.pv-aside-panel__link {
  font-size: 0.72rem;
  font-weight: 700;
  color: #237a4a;
  text-decoration: none;
}
.pv-aside-panel__link:hover {
  color: #107a3a;
}
.pv-aside-overview {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pv-aside-wallet {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.1), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 4px 14px rgba(8, 60, 30, 0.06);
}
.pv-aside-wallet__main {
  flex: 1 1 160px;
  min-width: 0;
}
.pv-aside-wallet__bonus {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(68, 187, 119, 0.22);
  background: rgba(68, 187, 119, 0.08);
}
.pv-aside-wallet__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-aside-wallet__label i {
  color: #44BB77;
  font-size: 0.78rem;
}
.pv-aside-wallet__amount {
  margin-top: 0.2rem;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #107a3a;
}
.pv-aside-wallet__bonus-value {
  font-family: 'Sora', var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  color: #2d9960;
}
.pv-aside-level {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.pv-aside-level:hover {
  border-color: rgba(68, 187, 119, 0.35);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.12);
  transform: translateY(-1px);
  color: inherit;
}
.pv-aside-level__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.55rem;
}
.pv-aside-level__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.12);
  border: 1px solid rgba(68, 187, 119, 0.24);
  font-size: 0.72rem;
  font-weight: 800;
  color: #107a3a;
}
.pv-aside-level__badge i {
  color: #44BB77;
}
.pv-aside-level__target {
  font-size: 0.76rem;
  font-weight: 700;
  color: #2d9960;
}
.pv-aside-level__bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.12);
  overflow: hidden;
}
.pv-aside-level__bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #44BB77, #2fa866);
  transition: width 240ms ease;
}
.pv-aside-level__hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #74808a;
}
.pv-aside-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.pv-aside-metric {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.72rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.pv-aside-metric:hover {
  border-color: rgba(68, 187, 119, 0.35);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.1);
  transform: translateY(-1px);
  color: inherit;
}
.pv-aside-metric--wide {
  grid-column: 1 / -1;
  align-items: center;
}
.pv-aside-metric__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
  color: #44BB77;
  font-size: 0.9rem;
}
.pv-aside-metric__body {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  flex: 1;
}
.pv-aside-metric__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-aside-metric__value {
  font-size: 0.88rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.25;
}
.pv-aside-metric__hint {
  font-size: 0.72rem;
  font-weight: 600;
  color: #5a6760;
  line-height: 1.35;
}
.pv-aside-metric__pill {
  flex-shrink: 0;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.pv-aside-feed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pv-aside-feed__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.pv-aside-feed__item:hover {
  border-color: rgba(68, 187, 119, 0.35);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.1);
  transform: translateY(-1px);
  color: inherit;
}
.pv-aside-feed__date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(68, 187, 119, 0.1);
  border: 1px solid rgba(68, 187, 119, 0.22);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  color: #107a3a;
  letter-spacing: 0.01em;
}
.pv-aside-feed__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  flex: 1;
}
.pv-aside-feed__title {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv-aside-feed__meta {
  font-size: 0.68rem;
  font-weight: 600;
  color: #74808a;
}
.pv-aside-feed__arrow {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: #44BB77;
  opacity: 0.55;
  transition: opacity 180ms ease, transform 180ms ease;
}
.pv-aside-feed__item:hover .pv-aside-feed__arrow {
  opacity: 1;
  transform: translateX(2px);
}
@media (max-width: 575.98px) {
  .pv-aside-wallet {
    flex-direction: column;
  }
  .pv-aside-wallet__bonus {
    width: 100%;
  }
}
.pv-card .btn-outline-primary {
  border-radius: 12px;
  font-weight: 700;
  border-color: rgba(68, 187, 119, 0.28);
  color: #237a4a;
  background: rgba(255, 255, 255, 0.82);
}
.pv-card .btn-outline-primary:hover {
  background: #fff;
  border-color: rgba(68, 187, 119, 0.38);
  color: #107a3a;
}
.pv-card .btn-primary {
  border-radius: 10px;
  font-weight: 700;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(68, 187, 119, 0.22);
}
.pv-card .btn-primary:hover {
  background: linear-gradient(145deg, #3daf6d, #289a5c);
  border-color: transparent;
}
.pv-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.pv-quick-actions__btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.35rem;
  padding: 0.82rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 180, 160, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(94, 234, 212, 0.35), transparent 52%),
    linear-gradient(135deg, #ecfdf8 0%, #dff8f0 46%, #d0f2ea 100%);
  color: #0f4a3a;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 4px 16px rgba(45, 160, 140, 0.12);
  transition:
    transform 280ms cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
}
.pv-quick-actions__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.62) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  pointer-events: none;
  transition: transform 650ms ease;
}
.pv-quick-actions__btn::after {
  content: '';
  position: absolute;
  top: -24px;
  right: -18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.28) 0%, rgba(45, 212, 191, 0) 72%);
  pointer-events: none;
  transition: transform 280ms ease, opacity 280ms ease;
}
.pv-quick-actions__btn:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(20, 184, 166, 0.45);
  background:
    radial-gradient(circle at 100% 0%, rgba(94, 234, 212, 0.48), transparent 52%),
    linear-gradient(135deg, #f3fefb 0%, #e6faf3 46%, #d7f5ec 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 28px rgba(45, 160, 140, 0.2);
}
.pv-quick-actions__btn:hover::before {
  transform: translateX(130%);
}
.pv-quick-actions__btn:hover::after {
  transform: scale(1.15);
  opacity: 1;
}
.pv-quick-actions__btn:hover .pv-quick-actions__ico {
  transform: scale(1.1) rotate(-6deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 6px 14px rgba(15, 118, 110, 0.18);
}
.pv-quick-actions__btn:hover .pv-quick-actions__arrow {
  opacity: 1;
  transform: translateX(4px);
  color: #fff;
  background: linear-gradient(145deg, #2dd4bf, #14b8a6);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.35);
}
.pv-quick-actions__btn:active {
  transform: translateY(-1px) scale(1.005);
  transition-duration: 120ms;
}
.pv-quick-actions__btn:focus-visible {
  outline: 2px solid #2dd4bf;
  outline-offset: 2px;
}
.pv-quick-actions__ico {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #ccfbf1 0%, #99f6e4 100%);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #0f766e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 3px 8px rgba(20, 184, 166, 0.14);
  transition:
    transform 280ms cubic-bezier(0.34, 1.4, 0.64, 1),
    background 280ms ease,
    border-color 280ms ease,
    color 280ms ease,
    box-shadow 280ms ease;
}
.pv-quick-actions__btn:nth-child(1) .pv-quick-actions__ico {
  background: linear-gradient(145deg, #ccfbf1 0%, #5eead4 100%);
  border-color: rgba(20, 184, 166, 0.35);
  color: #0d9488;
}
.pv-quick-actions__btn:nth-child(2) .pv-quick-actions__ico {
  background: linear-gradient(145deg, #cffafe 0%, #67e8f9 100%);
  border-color: rgba(6, 182, 212, 0.35);
  color: #0891b2;
}
.pv-quick-actions__btn:nth-child(3) .pv-quick-actions__ico {
  background: linear-gradient(145deg, #d1fae5 0%, #6ee7b7 100%);
  border-color: rgba(16, 185, 129, 0.35);
  color: #059669;
}
.pv-quick-actions__btn:nth-child(4) .pv-quick-actions__ico {
  background: linear-gradient(145deg, #ccfbf1 0%, #2dd4bf 100%);
  border-color: rgba(13, 148, 136, 0.35);
  color: #0f766e;
}
.pv-quick-actions__btn:nth-child(5) .pv-quick-actions__ico {
  background: linear-gradient(145deg, #ecfeff 0%, #a5f3fc 100%);
  border-color: rgba(34, 211, 238, 0.35);
  color: #0e7490;
}
.pv-quick-actions__btn:nth-child(6) .pv-quick-actions__ico {
  background: linear-gradient(145deg, #dcfce7 0%, #86efac 100%);
  border-color: rgba(34, 197, 94, 0.35);
  color: #16a34a;
}
.pv-quick-actions__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1 1 auto;
}
.pv-quick-actions__label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f3d32;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 280ms ease;
}
.pv-quick-actions__btn:hover .pv-quick-actions__label {
  color: #064e3b;
}
.pv-quick-actions__hint {
  font-size: 0.68rem;
  font-weight: 500;
  color: #3d7a6a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-quick-actions__ico i {
  font-size: 0.92rem;
  line-height: 1;
  transition: transform 280ms cubic-bezier(0.34, 1.4, 0.64, 1);
}
.pv-quick-actions__btn:hover .pv-quick-actions__ico i {
  transform: scale(1.08);
}
.pv-quick-actions__arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(45, 212, 191, 0.28);
  font-size: 0.72rem;
  color: #14b8a6;
  opacity: 0.85;
  transform: translateX(-2px);
  transition:
    opacity 280ms ease,
    transform 280ms cubic-bezier(0.34, 1.3, 0.64, 1),
    color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}
@media (max-width: 767.98px) {
  .pv-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- Dashboard compact levels strip ---------- */
.pv-dash-levels {
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(221, 228, 224, 0.85);
}

.pv-dash-levels__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pv-dash-levels__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a848e;
  margin-bottom: 0.2rem;
}

.pv-dash-levels__eyebrow i {
  color: #2fa866;
}

.pv-dash-levels__title {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #152019;
  letter-spacing: -0.02em;
}

.pv-dash-levels__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #107a3a;
  text-decoration: none;
  white-space: nowrap;
}

.pv-dash-levels__link:hover {
  color: #2fa866;
}

.pv-dash-levels__progress {
  margin-bottom: 0.75rem;
}

.pv-dash-levels__progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
}

.pv-dash-levels__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(221, 228, 224, 0.85);
  overflow: hidden;
}

.pv-dash-levels__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #44BB77, #99f6e4);
  transition: width 0.35s ease;
}

.pv-dash-levels__strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.75rem, 1fr));
  gap: 0.6rem;
}

.pv-dash-levels__chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.38rem;
  padding: 0.62rem 0.48rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(210, 218, 214, 0.95);
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  overflow: hidden;
}

.pv-dash-levels__chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
}

.pv-dash-levels__chip-lvl {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #152019;
  padding-bottom: 0.28rem;
  margin-bottom: 0.08rem;
  border-bottom: 1px solid rgba(221, 228, 224, 0.9);
}

.pv-dash-levels__chip-stat {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.32rem 0.35rem;
  border-radius: 9px;
  border: 1px solid transparent;
}

.pv-dash-levels__chip-stat:first-of-type {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border-color: rgba(251, 146, 60, 0.22);
}

.pv-dash-levels__chip-stat:last-of-type {
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(59, 130, 246, 0.2);
}

.pv-dash-levels__chip-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
}

.pv-dash-levels__chip-stat:first-of-type .pv-dash-levels__chip-label {
  color: #c2410c;
}

.pv-dash-levels__chip-stat:last-of-type .pv-dash-levels__chip-label {
  color: #1d4ed8;
}

.pv-dash-levels__chip-bonus {
  font-size: 0.86rem;
  font-weight: 800;
  color: #9a3412;
  line-height: 1.2;
}

.pv-dash-levels__chip-xp {
  font-size: 0.82rem;
  font-weight: 800;
  color: #1e40af;
  line-height: 1.2;
}

.pv-dash-levels__chip-you {
  position: absolute;
  top: 0.38rem;
  right: 0.38rem;
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.2rem 0.48rem 0.2rem 0.38rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(135deg, #15803d 0%, #22c55e 45%, #4ade80 100%);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 2px 8px rgba(16, 122, 58, 0.4),
    0 0 0 1px rgba(34, 197, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  z-index: 2;
}

.pv-dash-levels__chip-you i {
  font-size: 0.52rem;
  color: #fef08a;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

.pv-dash-levels__chip.is-unlocked {
  border-color: rgba(68, 187, 119, 0.4);
  background: linear-gradient(165deg, #ecfdf5 0%, #ffffff 55%, #f0fdf4 100%);
  box-shadow: 0 3px 12px rgba(16, 122, 58, 0.12);
}

.pv-dash-levels__chip.is-unlocked::before {
  background: linear-gradient(90deg, #44BB77, #99f6e4);
}

.pv-dash-levels__chip.is-unlocked .pv-dash-levels__chip-lvl {
  color: #047857;
  border-bottom-color: rgba(68, 187, 119, 0.3);
}

.pv-dash-levels__chip.is-unlocked .pv-dash-levels__chip-stat:first-of-type {
  background: linear-gradient(180deg, #d1fae5 0%, #a7f3d0 100%);
  border-color: rgba(16, 185, 129, 0.35);
}

.pv-dash-levels__chip.is-unlocked .pv-dash-levels__chip-stat:last-of-type {
  background: linear-gradient(180deg, #ccfbf1 0%, #99f6e4 100%);
  border-color: rgba(20, 184, 166, 0.35);
}

.pv-dash-levels__chip.is-unlocked .pv-dash-levels__chip-stat:first-of-type .pv-dash-levels__chip-label {
  color: #047857;
}

.pv-dash-levels__chip.is-unlocked .pv-dash-levels__chip-stat:last-of-type .pv-dash-levels__chip-label {
  color: #0f766e;
}

.pv-dash-levels__chip.is-unlocked .pv-dash-levels__chip-bonus {
  color: #065f46;
}

.pv-dash-levels__chip.is-unlocked .pv-dash-levels__chip-xp {
  color: #115e59;
}

.pv-dash-levels__chip.is-current {
  border-color: rgba(68, 187, 119, 0.65);
  background: linear-gradient(165deg, #bbf7d0 0%, #ecfdf5 40%, #ffffff 100%);
  box-shadow: 0 6px 20px rgba(16, 122, 58, 0.22);
  transform: translateY(-2px);
}

.pv-dash-levels__chip.is-current::before {
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #44BB77, #99f6e4);
}

.pv-dash-levels__chip.is-current .pv-dash-levels__chip-lvl {
  padding-right: 2.4rem;
  color: #14532d;
  border-bottom-color: rgba(68, 187, 119, 0.45);
}

.pv-dash-levels__chip.is-current .pv-dash-levels__chip-stat:first-of-type {
  background: linear-gradient(180deg, #86efac 0%, #4ade80 100%);
  border-color: rgba(22, 163, 74, 0.45);
}

.pv-dash-levels__chip.is-current .pv-dash-levels__chip-stat:last-of-type {
  background: linear-gradient(180deg, #5eead4 0%, #2dd4bf 100%);
  border-color: rgba(13, 148, 136, 0.45);
}

.pv-dash-levels__chip.is-current .pv-dash-levels__chip-stat:first-of-type .pv-dash-levels__chip-label,
.pv-dash-levels__chip.is-current .pv-dash-levels__chip-stat:last-of-type .pv-dash-levels__chip-label {
  color: #14532d;
}

.pv-dash-levels__chip.is-current .pv-dash-levels__chip-bonus,
.pv-dash-levels__chip.is-current .pv-dash-levels__chip-xp {
  color: #052e16;
}

.pv-dash-levels__chip.is-locked {
  border-color: rgba(148, 163, 184, 0.45);
  background: linear-gradient(165deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
  box-shadow: 0 2px 6px rgba(51, 65, 85, 0.06);
}

.pv-dash-levels__chip.is-locked::before {
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}

.pv-dash-levels__chip.is-locked .pv-dash-levels__chip-lvl {
  color: #334155;
}

.pv-dash-levels__chip.is-locked .pv-dash-levels__chip-stat:first-of-type {
  background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
  border-color: rgba(217, 119, 6, 0.25);
}

.pv-dash-levels__chip.is-locked .pv-dash-levels__chip-stat:last-of-type {
  background: linear-gradient(180deg, #e0e7ff 0%, #c7d2fe 100%);
  border-color: rgba(99, 102, 241, 0.25);
}

.pv-dash-levels__chip.is-locked .pv-dash-levels__chip-stat:first-of-type .pv-dash-levels__chip-label {
  color: #b45309;
}

.pv-dash-levels__chip.is-locked .pv-dash-levels__chip-stat:last-of-type .pv-dash-levels__chip-label {
  color: #4338ca;
}

.pv-dash-levels__chip.is-locked .pv-dash-levels__chip-bonus {
  color: #92400e;
}

.pv-dash-levels__chip.is-locked .pv-dash-levels__chip-xp {
  color: #3730a3;
}

.pv-dash-levels__chip.is-soon {
  justify-content: center;
  min-height: 5.5rem;
  border-style: dashed;
  border-color: rgba(139, 92, 246, 0.45);
  background: linear-gradient(165deg, #f5f3ff 0%, #faf5ff 45%, #ffffff 100%);
  box-shadow: none;
  opacity: 0.92;
}

.pv-dash-levels__chip.is-soon::before {
  background: linear-gradient(90deg, #a78bfa, #c4b5fd);
}

.pv-dash-levels__chip.is-soon .pv-dash-levels__chip-lvl {
  color: #6d28d9;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.35rem;
}

.pv-dash-levels__chip-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6d28d9;
  background: rgba(167, 139, 250, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.pv-dash-levels__chip-soon i {
  font-size: 0.68rem;
}

@media (max-width: 575.98px) {
  .pv-dash-levels__strip {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .pv-dash-levels__chip {
    flex: 0 0 7.75rem;
  }
}

@media (max-width: 575.98px) {
  .pv-quick-actions {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pv-quick-actions__btn,
  .pv-quick-actions__btn::before,
  .pv-quick-actions__btn::after,
  .pv-quick-actions__ico,
  .pv-quick-actions__ico i,
  .pv-quick-actions__arrow {
    transition: none;
  }
  .pv-quick-actions__btn:hover {
    transform: none;
  }
  .pv-quick-actions__btn:hover::before {
    transform: none;
  }
  .pv-quick-actions__btn:hover .pv-quick-actions__ico {
    transform: none;
  }
  .pv-quick-actions__btn:hover .pv-quick-actions__arrow {
    transform: none;
  }
}

.pv-dash-referral .card-body {
  padding: 1.15rem 1.25rem 1.25rem;
}
.pv-dash-referral__manage {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}
.pv-dash-referral__manage:hover {
  color: #0d9488;
}
.pv-dash-referral__intro {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #74808a;
}
.pv-dash-referral__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.pv-dash-referral__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(94, 234, 212, 0.2), transparent 55%),
    linear-gradient(180deg, #f3fefb 0%, #e8faf4 100%);
}
.pv-dash-referral__stat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d7a6a;
}
.pv-dash-referral__stat-label i {
  color: #14b8a6;
  font-size: 0.72rem;
}
.pv-dash-referral__stat-value {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  color: #0f4a3a;
}
.pv-dash-referral__code-row {
  margin-bottom: 0.65rem;
}
.pv-dash-referral__code {
  display: block;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #107a3a;
}
.pv-dash-referral__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
}
.pv-dash-referral__link {
  flex: 1 1 200px;
  margin: 0;
  font-size: 0.78rem;
}
.pv-dash-referral__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(145deg, #2dd4bf, #14b8a6);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.28);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}
.pv-dash-referral__copy-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, #5eead4, #2dd4bf);
  box-shadow: 0 10px 22px rgba(20, 184, 166, 0.32);
}
.pv-dash-referral__copy-btn.is-copied {
  background: linear-gradient(145deg, #34d399, #10b981);
}
@media (max-width: 767.98px) {
  .pv-dash-referral__stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .pv-dash-referral__copy-btn {
    width: 100%;
  }
}
.pv-card .progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.12);
  overflow: hidden;
}
.pv-card .progress-bar {
  background: linear-gradient(90deg, #44BB77, #2fa866);
  border-radius: 999px;
}
.pv-card .list-group-item {
  padding: 0.9rem 1.2rem;
  border-color: rgba(232, 236, 234, 0.95);
  background: transparent;
}
.pv-card .list-group-item:first-child {
  border-top: none;
}
.pv-card .list-group-item a {
  display: block;
  font-weight: 700;
  color: #237a4a;
  text-decoration: none;
}
.pv-card .list-group-item a:hover {
  color: #107a3a;
}
.pv-card-header-green,
.card-header.pv-card-header-green {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}
.pv-card-header-green::before,
.card-header.pv-card-header-green::before {
  display: none;
}
.pv-card-clickable {
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.pv-card-clickable:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-1px);
  color: inherit;
}
.pv-card-clickable:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Tables */
.table {
  --bs-table-color: var(--color-text);
  --bs-table-border-color: var(--color-border);
  margin-bottom: 0;
}
.table > :not(caption) > * > * { padding: 0.7rem 0.85rem; }
.table thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  font-weight: 700;
  background: #f8faf9;
  border-bottom-width: 1px;
  white-space: nowrap;
}
.table-hover > tbody > tr:hover { --bs-table-hover-bg: var(--color-primary-light); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; }
.table-primary, .table-primary > th, .table-primary > td {
  --bs-table-bg: var(--color-primary-light);
  --bs-table-color: var(--color-heading);
}

/* Alerts / badges */
.alert {
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 0.925rem;
}
.alert-success { background: var(--color-primary-light); border-color: var(--color-border-green); color: var(--color-primary-dark); }
.alert-danger { background: #fde8ea; border-color: #f5c2c7; color: #842029; }
.alert-info { background: #e8f4fc; border-color: #b6d9f2; color: #0c5460; }
.alert-warning { background: #fff8e6; border-color: #ffe2a8; color: #664d03; }
.badge {
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 0.35em 0.55em;
}
.badge-available { background: var(--color-primary-light); color: var(--color-primary-dark); }
.badge-done { background: #e8ecef; color: var(--color-muted); }
.badge-pending { background: #fff4d9; color: #92600a; }
.badge-active { background: var(--color-primary); color: #fff; }
.badge-rejected {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.22);
}
.pv-withdraw-history-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
}
.pv-withdraw-history-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: 50%;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.pv-withdraw-history-help:hover,
.pv-withdraw-history-help:focus {
  background: #fecaca;
  color: #991b1b;
  outline: none;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}
.pv-wd-reject-panel {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none;
}
.pv-wd-reject-panel.is-open {
  pointer-events: auto;
}
.pv-wd-reject-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 220ms ease;
}
.pv-wd-reject-panel.is-open .pv-wd-reject-panel__backdrop {
  opacity: 1;
}
.pv-wd-reject-panel__card {
  position: relative;
  width: min(100%, 22rem);
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fffbfb 100%);
  border: 1px solid rgba(239, 68, 68, 0.12);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.18),
    0 8px 20px rgba(239, 68, 68, 0.08);
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}
.pv-wd-reject-panel.is-open .pv-wd-reject-panel__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.pv-wd-reject-panel__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #f8faf9;
  color: #64748b;
  font-size: 0.82rem;
  transition: background 160ms ease, color 160ms ease;
}
.pv-wd-reject-panel__close:hover {
  background: #f1f5f4;
  color: #334155;
}
.pv-wd-reject-panel__hero {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.pv-wd-reject-panel__hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fee2e2, #fecaca);
  border: 1px solid rgba(239, 68, 68, 0.18);
  color: #dc2626;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.15);
}
.pv-wd-reject-panel__title {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #152019;
}
.pv-wd-reject-panel__lead {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #74808a;
}
.pv-wd-reject-panel__note {
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid rgba(239, 68, 68, 0.14);
}
.pv-wd-reject-panel__note-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #b91c1c;
}
.pv-wd-reject-panel__note-label i {
  font-size: 0.72rem;
}
.pv-wd-reject-panel__note-text {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 600;
  color: #334155;
  word-break: break-word;
}
.pv-wd-reject-panel__refund {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #f0fdf4;
  border: 1px solid rgba(68, 187, 119, 0.2);
  font-size: 0.76rem;
  font-weight: 700;
  color: #107a3a;
}
.pv-wd-reject-panel__refund i {
  font-size: 0.9rem;
}
body.pv-wd-reject-open {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .pv-wd-reject-panel__backdrop,
  .pv-wd-reject-panel__card {
    transition: none;
  }
}

/* ========== Pagination (member + admin) ========== */
.pv-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}
.pv-pagination__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  width: 100%;
}
.pv-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-height: 2rem;
  padding: 0.35rem 0.72rem;
  border-radius: 10px;
  border: 1px solid rgba(68, 187, 119, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #237a4a;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}
.pv-pagination__btn i {
  font-size: 0.72rem;
  line-height: 1;
}
.pv-pagination__btn:hover {
  background: #fff;
  border-color: rgba(68, 187, 119, 0.42);
  color: #107a3a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.12);
}
.pv-pagination__btn.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.pv-pagination__pages {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.28rem;
  margin: 0;
  padding: 0.22rem;
  list-style: none;
  border-radius: 12px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
}
.pv-pagination__page {
  margin: 0;
}
.pv-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0 0.45rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #5f6d66;
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}
a.pv-pagination__link:hover {
  background: #fff;
  border-color: rgba(68, 187, 119, 0.22);
  color: #107a3a;
}
.pv-pagination__page.is-active .pv-pagination__link {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.28);
}
.pv-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  min-height: 2rem;
  color: #a8b4ae;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  user-select: none;
}
.pv-pagination__meta {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #8a9690;
  font-variant-numeric: tabular-nums;
}
.pv-deposit-history__footer,
.pv-withdraw-history__footer,
.pv-ad-campaigns-panel__footer {
  display: flex;
  justify-content: center;
}
.pv-proofs-page__pagination {
  display: flex;
  justify-content: center;
  padding: 0 1.15rem 1.15rem;
}
@media (max-width: 575.98px) {
  .pv-pagination__bar {
    gap: 0.35rem;
  }
  .pv-pagination__btn span {
    display: none;
  }
  .pv-pagination__btn {
    min-width: 2rem;
    padding-inline: 0.55rem;
  }
}

/* ========== PUBLIC HEADER ========== */
.pv-public-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(68, 187, 119, 0.15);
  box-shadow: 0 8px 24px rgba(8, 60, 30, 0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.pv-public-header .navbar { padding: 0.55rem 0; min-height: var(--header-h); }

.pv-public-nav {
  align-items: center;
  gap: 0.85rem;
}

.pv-public-nav__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto 0 0.85rem !important;
  padding: 0.28rem;
  border-radius: 999px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
}

@media (min-width: 992px) {
  .pv-public-nav__links {
    margin-left: 1.15rem !important;
  }
}

.pv-public-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
  color: #4a5a52 !important;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pv-public-nav__link:hover {
  color: #152019 !important;
  background: rgba(255, 255, 255, 0.85);
}

.pv-public-nav__link.active {
  color: #fff !important;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.28);
}

.pv-public-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.pv-public-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.pv-public-nav__btn--ghost {
  color: #152019;
  background: #fff;
  border-color: rgba(68, 187, 119, 0.3);
  box-shadow: 0 2px 8px rgba(68, 187, 119, 0.08);
}

.pv-public-nav__btn--ghost:hover {
  color: #152019;
  background: #f4fbf7;
  border-color: rgba(68, 187, 119, 0.45);
  transform: translateY(-1px);
}

.pv-public-nav__btn--primary {
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.28);
}

.pv-public-nav__btn--primary:hover {
  color: #fff;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(68, 187, 119, 0.34);
}

.pv-public-nav__btn:focus-visible,
.pv-public-nav__link:focus-visible {
  outline: 2px solid #44BB77;
  outline-offset: 2px;
}

@media (max-width: 991.98px) {
  .pv-public-nav {
    padding: 0.75rem 0 0.35rem;
  }

  .pv-public-nav__links {
    width: 100%;
    margin: 0 0 0.65rem !important;
    margin-left: 0 !important;
    padding: 0.35rem;
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .pv-public-nav__link {
    justify-content: center;
    width: 100%;
    border-radius: 10px;
  }

  .pv-public-nav__actions {
    width: 100%;
    margin-left: 0;
  }

  .pv-public-nav__btn {
    flex: 1;
  }
}

.pv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-heading) !important;
  text-decoration: none;
}

.pv-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pv-logo--header {
  height: 38px;
  max-width: 160px;
}

.pv-logo--footer {
  height: 42px;
  max-width: 180px;
}

.pv-logo--hero {
  height: clamp(2.75rem, 5.5vw, 4rem);
  max-width: min(100%, 280px);
}

.pv-logo--auth {
  height: 48px;
  max-width: 200px;
  margin: 0 auto 0.35rem;
}

.pv-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.pv-public-main { padding: 1.5rem 0 2.5rem; overflow-x: clip; }

/* ========== AUTH LAYOUT ========== */
.pv-auth-body {
  background: transparent;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.pv-auth-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem) clamp(0.75rem, 2.5vw, 1rem);
  width: 100%;
}
.pv-auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 22px 56px rgba(8, 60, 30, 0.14);
  border: 1px solid rgba(68, 187, 119, 0.16);
  overflow: hidden;
  position: relative;
}
.pv-auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #44BB77, #2fa866, #44BB77);
}
.pv-auth-card-wide {
  max-width: 520px;
}
.pv-auth-card--register {
  max-width: 480px;
}
.pv-auth-card--login {
  max-width: 440px;
}
.pv-auth-brand {
  text-align: center;
  padding: 1.65rem 1.5rem 0.85rem;
  background:
    radial-gradient(ellipse 90% 80% at 50% -20%, rgba(68, 187, 119, 0.12), transparent 60%),
    linear-gradient(180deg, #f8fcf9 0%, #fff 100%);
  border-bottom: 1px solid #edf1ef;
}
.pv-auth-brand .pv-logo--auth {
  margin: 0 auto 0.65rem;
}
.pv-auth-brand p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #152019;
}
.pv-auth-body-inner {
  padding: 1.35rem 1.5rem 1.25rem;
}
.pv-auth-alert,
.pv-auth-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.pv-auth-alert i,
.pv-auth-notice i {
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pv-auth-form .form-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #3f4b44;
  margin-bottom: 0.4rem;
}
.pv-auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.pv-auth-input-wrap > i {
  position: absolute;
  left: 0.85rem;
  color: #74808a;
  font-size: 0.92rem;
  pointer-events: none;
  z-index: 1;
}
.pv-auth-input-wrap .form-control {
  padding-left: 2.45rem;
  min-height: 46px;
  border-radius: 12px;
  border-color: #dde4df;
  background: #fafcfb;
}
.pv-auth-input-wrap .form-control:focus {
  background: #fff;
  border-color: #44BB77;
  box-shadow: 0 0 0 3px rgba(68, 187, 119, 0.15);
}
.pv-auth-input-wrap--toggle .form-control {
  padding-right: 2.75rem;
}
.pv-auth-input-toggle {
  position: absolute;
  right: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #74808a;
  transition: color 160ms ease, background 160ms ease;
}
.pv-auth-input-toggle:hover {
  color: #152019;
  background: #eef2ef;
}
.pv-auth-form .form-text {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: #74808a;
}
.pv-auth-form .pw-strength {
  margin-top: 0.45rem;
  height: 5px;
  border-radius: 999px;
  background: #edf1ef;
}
.pv-auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 48px;
  margin-top: 0.35rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(68, 187, 119, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.pv-auth-submit:hover {
  color: #fff;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(68, 187, 119, 0.34);
}
.pv-auth-submit:focus-visible {
  outline: 2px solid #44BB77;
  outline-offset: 2px;
}
.pv-auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pv-auth-options .form-check-label {
  font-size: 0.86rem;
  color: #4a5a52;
}
.pv-auth-forgot {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2d9960;
  text-decoration: none;
  white-space: nowrap;
}
.pv-auth-forgot:hover {
  color: #44BB77;
  text-decoration: underline;
}
.pv-auth-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.5rem 1.35rem;
  text-align: center;
  background: linear-gradient(180deg, #fafcfb 0%, #f4f8f5 100%);
  border-top: 1px solid #e8ecea;
}
.pv-auth-footer__text {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #5a6760;
}
.pv-auth-footer__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: min(100%, 220px);
  padding: 0.5rem 1rem;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #dde4df;
  color: #152019;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
}
.pv-auth-footer__action--solo {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.24);
}
.pv-auth-footer__action--solo:hover,
.pv-auth-footer__action--solo:focus-visible {
  color: #fff;
  background: linear-gradient(145deg, #4ecf8a, #38bd72);
  border-color: transparent;
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(68, 187, 119, 0.32);
}
.pv-auth-footer__action:not(.pv-auth-footer__action--solo):hover {
  color: #152019;
  background: #f4fbf7;
  border-color: rgba(68, 187, 119, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 575.98px) {
  .pv-auth-body-inner {
    padding: 1.15rem 1.15rem 1rem;
  }
  .pv-auth-brand {
    padding: 1.35rem 1.15rem 0.75rem;
  }
  .pv-auth-footer {
    padding: 0.9rem 1.15rem 1.15rem;
  }
  .pv-auth-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

/* ========== MEMBER APP SHELL ========== */
.pv-app { display: flex; flex-direction: column; min-height: 100vh; background: transparent; }
.pv-topbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 236, 234, 0.95);
  border-top: 3px solid var(--color-primary);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 1040;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 18px rgba(8, 60, 30, 0.04);
}
.pv-topbar--member {
  border-top-color: #44BB77;
}
.pv-topbar-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.55rem 0.28rem 0.35rem;
  border-radius: 11px;
  border: 1px solid rgba(68, 187, 119, 0.18);
  background: linear-gradient(145deg, #f8fbf9 0%, #f2f8f4 100%);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}
.pv-topbar-stat:hover {
  border-color: rgba(68, 187, 119, 0.32);
  background: #fff;
  transform: translateY(-1px);
}
.pv-topbar-stat--purchase {
  border-color: rgba(232, 236, 234, 0.95);
  background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
}
.pv-topbar-stat--purchase .pv-topbar-stat__ico {
  background: linear-gradient(145deg, #64748b, #475569);
  box-shadow: 0 3px 8px rgba(71, 85, 105, 0.2);
}
.pv-topbar-stat__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.78rem;
  box-shadow: 0 3px 8px rgba(68, 187, 119, 0.22);
}
.pv-topbar-stat__body {
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
  line-height: 1.1;
}
.pv-topbar-stat__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-topbar-stat__body strong {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  color: #107a3a;
  font-variant-numeric: tabular-nums;
}
.pv-topbar-stat--purchase .pv-topbar-stat__body strong {
  color: #334155;
}
@media (max-width: 575.98px) {
  .pv-topbar-stat .hide-xs {
    display: none;
  }
}
.pv-topbar-deposit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.15rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pv-topbar-deposit:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.3);
}
.pv-topbar-withdraw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.15rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 40, 36, 0.14);
  background: linear-gradient(145deg, #2d3339, #202824);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}
.pv-topbar-withdraw:hover {
  color: #fff;
  transform: translateY(-1px);
  opacity: 0.92;
}
.pv-topbar-admin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.15rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 40, 36, 0.14);
  background: linear-gradient(145deg, #2d3339, #202824);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}
.pv-topbar-admin:hover {
  color: #fff;
  opacity: 0.92;
  transform: translateY(-1px);
}
.pv-user-chip__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.15;
}
.pv-user-chip__meta strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #152019;
}
.pv-user-chip__meta small {
  font-size: 0.62rem;
  font-weight: 700;
  color: #ff9f1a;
  letter-spacing: 0.02em;
}
.pv-topbar-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.pv-topbar-left { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.pv-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
}
.pv-topbar-balances {
  align-items: center;
  gap: 0.45rem;
}
.pv-topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.pv-topbar-actions__label {
  white-space: nowrap;
}
.pv-topbar-dropdown {
  --pv-dd-radius: 13px;
  --pv-dd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 14.75rem;
  padding: 0.32rem;
  margin-top: 0.35rem !important;
  border: 1px solid rgba(68, 187, 119, 0.16);
  border-radius: var(--pv-dd-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 28px rgba(8, 60, 30, 0.11);
  overflow: hidden;
  transform-origin: top right;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  transition:
    opacity 220ms var(--pv-dd-ease),
    transform 220ms var(--pv-dd-ease),
    box-shadow 220ms var(--pv-dd-ease);
  pointer-events: none;
  will-change: opacity, transform;
}
.pv-topbar-dropdown.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .pv-topbar-dropdown {
    transform: none;
    transition: opacity 120ms ease;
  }
  .pv-topbar-dropdown.show {
    transform: none;
  }
}
.pv-topbar-dropdown > li {
  list-style: none;
}
.pv-topbar-dropdown__hero {
  padding: 0.42rem 0.45rem 0.48rem;
  border-radius: 10px;
  background:
    radial-gradient(circle at 0% 0%, rgba(68, 187, 119, 0.1), transparent 55%),
    linear-gradient(145deg, #f4fbf7 0%, #eef8f2 100%);
  border: 1px solid rgba(68, 187, 119, 0.12);
}
.pv-topbar-dropdown__profile {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  margin-bottom: 0.4rem;
}
.pv-topbar-dropdown__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 9px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 3px 9px rgba(68, 187, 119, 0.24);
}
.pv-topbar-dropdown__profile-text {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  min-width: 0;
}
.pv-topbar-dropdown__profile-text strong {
  font-size: 0.8rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-topbar-dropdown__profile-text span {
  font-size: 0.64rem;
  font-weight: 700;
  color: #107a3a;
  letter-spacing: 0.02em;
}
.pv-topbar-dropdown__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}
.pv-topbar-dropdown__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(68, 187, 119, 0.18);
  font-size: 0.62rem;
  font-weight: 800;
  color: #237a4a;
  font-variant-numeric: tabular-nums;
}
.pv-topbar-dropdown__chip i {
  color: #ff9f1a;
  font-size: 0.64rem;
}
.pv-topbar-dropdown__chip--muted {
  color: #64748b;
  border-color: rgba(148, 163, 184, 0.35);
}
.pv-topbar-dropdown__chip--muted i {
  color: #94a3b8;
}
.pv-topbar-dropdown__wallets-wrap {
  padding: 0.32rem 0.06rem 0.1rem;
}
.pv-topbar-dropdown-wallets {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.pv-topbar-dropdown-wallet {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.48rem;
  border-radius: 9px;
  border: 1px solid rgba(68, 187, 119, 0.16);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 1px 5px rgba(8, 60, 30, 0.04);
  transition:
    border-color 220ms var(--pv-dd-ease),
    background 220ms var(--pv-dd-ease),
    transform 220ms var(--pv-dd-ease),
    box-shadow 220ms var(--pv-dd-ease);
}
.pv-topbar-dropdown-wallet:hover {
  border-color: rgba(68, 187, 119, 0.32);
  background: #f8fbf9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.09);
}
.pv-topbar-dropdown-wallet--purchase strong {
  color: #334155;
}
.pv-topbar-dropdown-wallet__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.74rem;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(68, 187, 119, 0.2);
}
.pv-topbar-dropdown-wallet__ico--purchase {
  background: linear-gradient(145deg, #64748b, #475569);
  box-shadow: 0 2px 6px rgba(71, 85, 105, 0.2);
}
.pv-topbar-dropdown-wallet__body {
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
  min-width: 0;
  flex: 1;
}
.pv-topbar-dropdown-wallet__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-topbar-dropdown-wallet__body strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: #107a3a;
  font-variant-numeric: tabular-nums;
}
.pv-topbar-dropdown-wallet__arrow {
  flex-shrink: 0;
  color: #cbd5d0;
  font-size: 0.68rem;
  transition: color 220ms var(--pv-dd-ease), transform 220ms var(--pv-dd-ease);
}
.pv-topbar-dropdown-wallet:hover .pv-topbar-dropdown-wallet__arrow {
  color: #44BB77;
  transform: translateX(2px);
}
.pv-topbar-dropdown__divider {
  height: 1px;
  margin: 0.26rem 0.12rem;
  background: linear-gradient(90deg, transparent, rgba(68, 187, 119, 0.16), transparent);
  list-style: none;
}
.pv-topbar-dropdown__nav {
  padding: 0.04rem 0;
}
.pv-topbar-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.42rem;
  border-radius: 8px;
  color: #152019;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 220ms var(--pv-dd-ease),
    color 220ms var(--pv-dd-ease),
    border-color 220ms var(--pv-dd-ease);
}
.pv-topbar-dropdown__item:hover {
  background: rgba(68, 187, 119, 0.1);
  color: #107a3a;
}
.pv-topbar-dropdown__item-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
  border-radius: 7px;
  background: rgba(68, 187, 119, 0.12);
  color: #2fa866;
  font-size: 0.76rem;
  line-height: 1;
  transition: background 220ms var(--pv-dd-ease), color 220ms var(--pv-dd-ease);
}
.pv-topbar-dropdown__item-label {
  flex: 1;
  min-width: 0;
}
.pv-topbar-dropdown__item-arrow {
  flex-shrink: 0;
  color: #cbd5d0;
  font-size: 0.68rem;
  transition: color 220ms var(--pv-dd-ease), transform 220ms var(--pv-dd-ease);
}
.pv-topbar-dropdown__item:hover .pv-topbar-dropdown__item-arrow {
  color: #44BB77;
  transform: translateX(2px);
}
.pv-topbar-dropdown__item--admin {
  background: rgba(32, 40, 36, 0.04);
  border: 1px solid rgba(32, 40, 36, 0.08);
}
.pv-topbar-dropdown__item--admin:hover {
  background: linear-gradient(145deg, #2d3339, #202824);
  color: #fff;
}
.pv-topbar-dropdown__item--admin .pv-topbar-dropdown__item-ico {
  background: linear-gradient(145deg, #2d3339, #202824);
  color: #fff;
}
.pv-topbar-dropdown__item--admin:hover .pv-topbar-dropdown__item-ico {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.pv-topbar-dropdown__item--logout {
  color: #b42318;
}
.pv-topbar-dropdown__item--logout .pv-topbar-dropdown__item-ico {
  background: rgba(180, 35, 24, 0.1);
  color: #b42318;
}
.pv-topbar-dropdown__item--logout:hover {
  background: rgba(180, 35, 24, 0.08);
  color: #991b1b;
}
.pv-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-nav);
  border: 1px solid var(--color-nav);
  color: #fff;
  font-weight: 600;
}
.pv-admin-btn:hover,
.pv-admin-btn:focus {
  background: #2d3339;
  border-color: #2d3339;
  color: #fff;
}
.pv-nav-link--admin {
  margin-top: 0.35rem;
  background: linear-gradient(145deg, rgba(32, 40, 36, 0.06), rgba(32, 40, 36, 0.02));
  border: 1px solid rgba(32, 40, 36, 0.12);
}
.pv-nav-link--admin:hover,
.pv-nav-link--admin:focus {
  background: var(--color-nav);
  border-color: var(--color-nav);
  color: #fff;
}
.pv-nav-link--admin:hover .pv-nav-link__ico,
.pv-nav-link--admin:focus .pv-nav-link__ico {
  color: #fff;
}
.pv-balance-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary-light);
  border: 1px solid var(--color-border-green);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  color: var(--color-heading);
  text-decoration: none;
}
.pv-balance-pill strong {
  color: var(--color-primary-dark);
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
}
.pv-balance-pill span.label { color: var(--color-muted); font-weight: 600; text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.04em; }
.pv-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.22rem 0.55rem 0.22rem 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  color: var(--color-heading);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.pv-user-chip:hover {
  border-color: rgba(68, 187, 119, 0.28);
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.06);
}
.pv-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.pv-menu-btn {
  display: none;
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--color-heading);
}
.pv-menu-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.pv-shell {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 1rem;
  padding: var(--sidebar-gap) 1rem calc(var(--sidebar-gap) + 0.25rem);
  position: relative;
  align-items: flex-start;
}
.pv-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-h) + var(--sidebar-gap));
  max-height: calc(100vh - var(--header-h) - (var(--sidebar-gap) * 2.5));
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.85rem;
  border-radius: var(--sidebar-radius);
  border: 1px solid rgba(68, 187, 119, 0.18);
  background:
    radial-gradient(ellipse 120% 70% at 100% 0%, rgba(68, 187, 119, 0.12), transparent 58%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(15, 122, 56, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
  box-shadow:
    0 18px 44px rgba(8, 60, 30, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  scrollbar-width: thin;
  scrollbar-color: rgba(68, 187, 119, 0.45) transparent;
}
.pv-sidebar::-webkit-scrollbar {
  width: 6px;
}
.pv-sidebar::-webkit-scrollbar-thumb {
  background: rgba(68, 187, 119, 0.35);
  border-radius: 999px;
}
.pv-sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pv-sidebar__profile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f0faf4 48%, #e8f5ee 100%);
  border: 1px solid rgba(68, 187, 119, 0.22);
  box-shadow:
    0 6px 16px rgba(8, 60, 30, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #152019;
}

.pv-sidebar__profile-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pv-sidebar__profile-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
}

.pv-sidebar__profile-orb--1 {
  width: 52px;
  height: 52px;
  top: -18px;
  right: -8px;
  background: rgba(68, 187, 119, 0.45);
}

.pv-sidebar__profile-orb--2 {
  width: 40px;
  height: 40px;
  bottom: -14px;
  left: 28%;
  background: rgba(56, 189, 248, 0.28);
}

.pv-sidebar__avatar {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #44BB77 0%, #1f9d57 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 4px 10px rgba(68, 187, 119, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.pv-sidebar__profile-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
  flex: 1;
}

.pv-sidebar__profile-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.pv-sidebar__profile-text strong {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #152019;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pv-sidebar__profile-tag {
  flex-shrink: 0;
  padding: 0.1rem 0.38rem;
  border-radius: 999px;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(145deg, #2f373f, #1a2228);
  border: 0;
  box-shadow: 0 2px 6px rgba(26, 34, 40, 0.18);
}

.pv-sidebar__profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  min-width: 0;
}

.pv-sidebar__profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  max-width: 100%;
  padding: 0.14rem 0.4rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
}

.pv-sidebar__profile-chip i {
  font-size: 0.56rem;
  line-height: 1;
}

.pv-sidebar__profile-chip--level {
  color: #9a3412;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: 0 1px 4px rgba(249, 115, 22, 0.12);
}

.pv-sidebar__profile-chip--level i {
  color: #ea580c;
}

.pv-sidebar__profile-chip--xp {
  color: #5b21b6;
  background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow: 0 1px 4px rgba(139, 92, 246, 0.12);
}

.pv-sidebar__profile-chip--xp i {
  color: #7c3aed;
}
.pv-sidebar__group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pv-sidebar-section {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #74808a;
  padding: 0.35rem 0.55rem 0.15rem;
}
.pv-sidebar-section::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 0 0 2px rgba(68, 187, 119, 0.18);
  flex-shrink: 0;
}
.pv-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 236, 234, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.pv-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.52rem 0.6rem;
  border-radius: 10px;
  color: #3f4b44;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.pv-nav-link__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  border-radius: 9px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
  color: #5a6760;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.pv-nav-link__ico i {
  font-size: 0.92rem;
  line-height: 1;
}
.pv-nav-link__label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-nav-link__free {
  display: inline-block;
  margin-left: 0.28rem;
  padding: 0.06rem 0.38rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  color: #15803d;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
}
.pv-nav-link.active .pv-nav-link__free {
  color: #166534;
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.3);
}
.pv-nav-link__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 999px;
  color: #b45309;
  background: linear-gradient(145deg, #fff7d6 0%, #fde68a 55%, #fbbf24 100%);
  border: 1px solid rgba(245, 158, 11, 0.38);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.22);
  animation: pv-nav-hint-glow 2.6s ease-in-out infinite;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pv-nav-link__hint i {
  font-size: 0.72rem;
  line-height: 1;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45));
}
.pv-nav-link--guide:not(.active) {
  background: linear-gradient(90deg, rgba(254, 243, 199, 0.42) 0%, rgba(255, 255, 255, 0) 62%);
  border-color: rgba(245, 158, 11, 0.14);
}
.pv-nav-link--guide:not(.active):hover {
  background: linear-gradient(90deg, rgba(254, 243, 199, 0.55) 0%, #f4fbf7 68%);
  border-color: rgba(245, 158, 11, 0.22);
}
.pv-nav-link--guide:not(.active):hover .pv-nav-link__hint {
  transform: scale(1.06);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.28);
}
.pv-nav-link.active .pv-nav-link__hint {
  color: #fef3c7;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
  animation: none;
}
@keyframes pv-nav-hint-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.22), 0 0 0 0 rgba(251, 191, 36, 0.28);
  }
  50% {
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3), 0 0 0 4px rgba(251, 191, 36, 0.14);
  }
}
.pv-nav-link:hover {
  color: #152019;
  background: #f4fbf7;
  border-color: rgba(68, 187, 119, 0.18);
  transform: translateX(2px);
}
.pv-nav-link:hover .pv-nav-link__ico {
  color: #2d9960;
  background: rgba(68, 187, 119, 0.12);
  border-color: rgba(68, 187, 119, 0.28);
}
.pv-nav-link.active {
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.24);
}
.pv-nav-link.active .pv-nav-link__ico {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
.pv-nav-link:focus-visible {
  outline: 2px solid #44BB77;
  outline-offset: 2px;
}
.pv-sidebar__foot {
  margin-top: auto;
  padding-top: 0.35rem;
}
.pv-sidebar__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 40px;
  padding: 0.5rem 0.75rem;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #dde4df;
  color: #152019;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
}
.pv-sidebar__home i {
  color: #44BB77;
}
.pv-sidebar__home:hover {
  color: #152019;
  background: #f4fbf7;
  border-color: rgba(68, 187, 119, 0.35);
  transform: translateY(-1px);
}

.pv-content {
  flex: 1;
  min-width: 0;
  padding: 0.25rem 0.25rem 1.5rem;
}
.pv-app > .pv-footer {
  margin: 0 1rem 1rem;
  border-radius: var(--sidebar-radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 28px rgba(8, 60, 30, 0.08);
  overflow: hidden;
}
.pv-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(32, 37, 43, 0.45);
  z-index: 1035;
}

.pv-footer {
  margin-top: auto;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.pv-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary-dark));
  opacity: 0.85;
}
.pv-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 1.25rem;
}
.pv-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(221, 228, 224, 0.9);
}
.pv-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 280px;
}
.pv-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--color-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.pv-footer__brand-link:hover {
  color: var(--color-primary-dark);
}
.pv-footer__tagline {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}
.pv-footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.15rem;
  padding: 0.3rem 0.55rem;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border-green);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 650;
}
.pv-footer__col-title {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-heading);
}
.pv-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pv-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
  padding: 0.15rem 0;
  border-radius: 4px;
  transition: color 160ms ease, transform 160ms ease;
}
.pv-footer__links a i {
  color: var(--color-muted);
  font-size: 0.9rem;
  width: 1rem;
  text-align: center;
}
.pv-footer__links a:hover {
  color: var(--color-primary-dark);
  transform: translateX(2px);
}
.pv-footer__links a:hover i {
  color: var(--color-primary);
}
.pv-footer__links a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.pv-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding-top: 1rem;
  color: var(--color-muted);
  font-size: 0.82rem;
}
.pv-footer__copy {
  margin: 0;
  line-height: 1.45;
}
.pv-footer__bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}
.pv-footer__bottom-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
}
.pv-footer__bottom-links a i {
  font-size: 0.88rem;
  color: var(--color-muted);
}
.pv-footer__bottom-links a:hover {
  color: var(--color-primary-dark);
}
.pv-footer__bottom-links a:hover i {
  color: var(--color-primary);
}
.pv-footer--compact .pv-footer__inner {
  padding: 1.25rem 1rem 1rem;
}
.pv-footer--compact .pv-footer__grid {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
}
.pv-footer--compact .pv-footer__col {
  display: none;
}
.pv-footer--auth {
  background: transparent;
  border-top: none;
  margin-top: 0.5rem;
}
.pv-footer--auth::before { display: none; }
.pv-footer--auth .pv-footer__inner {
  max-width: min(520px, calc(100% - 1.5rem));
  margin-inline: auto;
  padding: 0 clamp(0.65rem, 2.5vw, 1rem) clamp(1rem, 3vw, 1.35rem);
}
.pv-footer--auth .pv-footer__grid,
.pv-footer--auth .pv-footer__col {
  display: none;
}
.pv-footer__auth-dock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1rem 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 16px 40px rgba(8, 60, 30, 0.14),
    0 0 0 1px rgba(68, 187, 119, 0.08) inset;
  text-align: center;
}
.pv-footer__auth-dock-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.pv-footer__auth-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}
.pv-footer__auth-logo:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.pv-footer__auth-logo .pv-logo--footer {
  height: 34px;
  max-width: 140px;
}
.pv-footer__auth-tagline {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-footer__auth-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  width: 100%;
}
.pv-footer__auth-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 72px;
  padding: 0.55rem 0.35rem;
  border-radius: 14px;
  background: #f4f8f5;
  border: 1px solid #e4ebe6;
  color: #152019;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.pv-footer__auth-tile:hover {
  color: #152019;
  background: #eaf7ef;
  border-color: rgba(68, 187, 119, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.12);
}
.pv-footer__auth-tile-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(68, 187, 119, 0.22);
}
.pv-footer__auth-tile-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #3f4b44;
}
.pv-footer__auth-copy {
  margin: 0;
  padding-top: 0.15rem;
  width: 100%;
  border-top: 1px solid #edf1ef;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a9690;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .pv-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .pv-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}
@media (max-width: 575.98px) {
  .pv-footer__inner {
    padding: 1.5rem 1rem 1.1rem;
  }
  .pv-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .pv-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .pv-footer--auth .pv-footer__inner {
    max-width: min(480px, calc(100% - 1.25rem));
    padding-inline: 0.65rem;
    padding-bottom: 1rem;
  }
  .pv-footer__auth-dock {
    padding: 0.9rem 0.75rem 0.75rem;
    border-radius: 16px;
  }
  .pv-footer__auth-tiles {
    gap: 0.4rem;
  }
  .pv-footer__auth-tile {
    min-height: 68px;
    padding: 0.5rem 0.25rem;
  }
  .pv-footer__auth-tile-ico {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.88rem;
    border-radius: 9px;
  }
  .pv-footer__auth-tile-label {
    font-size: 0.64rem;
  }
}
@media (max-width: 360px) {
  .pv-footer__auth-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }
  .pv-footer__auth-tile {
    min-height: 74px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pv-footer__links a {
    transition: none;
  }
  .pv-footer__links a:hover {
    transform: none;
  }
}

/* Mobile sidebar */
@media (max-width: 991.98px) {
  .pv-menu-btn { display: inline-flex; }
  .pv-topbar {
    height: auto;
    min-height: var(--header-h);
  }
  .pv-topbar-inner {
    padding: 0.45rem 0.65rem;
    gap: 0.45rem;
  }
  .pv-topbar-left {
    gap: 0.45rem;
    flex-shrink: 1;
    min-width: 0;
  }
  .pv-topbar-right {
    gap: 0.3rem;
  }
  .pv-topbar-actions {
    gap: 0.25rem;
  }
  .pv-topbar-deposit,
  .pv-topbar-withdraw,
  .pv-topbar-admin {
    min-width: auto;
    min-height: 1.85rem;
    padding: 0.26rem 0.48rem;
    font-size: 0.68rem;
    gap: 0.22rem;
  }
  .pv-topbar-deposit i,
  .pv-topbar-withdraw i,
  .pv-topbar-admin i {
    font-size: 0.78rem;
  }
  .pv-topbar-actions__label {
    display: inline;
    font-size: 0.68rem;
    font-weight: 700;
  }
  .pv-logo--header {
    max-height: 1.65rem;
    width: auto;
  }
  .pv-brand {
    min-width: 0;
  }
  .pv-user-chip {
    padding: 0.12rem;
    gap: 0;
  }
  .pv-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.68rem;
  }
  .pv-shell {
    padding: 0.75rem 0.85rem 1rem;
    gap: 0;
  }
  .pv-sidebar {
    position: fixed;
    left: 0.75rem;
    top: calc(var(--header-h) + 0.65rem);
    bottom: 0.75rem;
    height: auto;
    max-height: calc(100vh - var(--header-h) - 1.4rem);
    z-index: 1045;
    transform: translateX(calc(-100% - 1rem));
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow:
      0 24px 56px rgba(8, 60, 30, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.75) inset;
    padding: 0.85rem;
    width: min(88vw, 300px);
  }
  .pv-sidebar.is-open {
    transform: translateX(0);
  }
  .pv-sidebar-backdrop.is-open { display: block; }
  body.pv-nav-open { overflow: hidden; }
  .pv-balance-pill .hide-xs { display: none; }
  .pv-content { padding: 0.15rem 0 1.25rem; }
  .pv-app > .pv-footer {
    margin: 0 0.85rem 0.85rem;
  }
}

/* ========== COMPONENTS ========== */
.pv-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.35rem;
}
@media (max-width: 1199.98px) { .pv-stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .pv-stat-grid { grid-template-columns: 1fr; } }

.pv-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: #ffffff;
  border: 1px solid rgba(232, 236, 234, 0.95);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(8, 60, 30, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.pv-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(68, 187, 119, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(8, 60, 30, 0.1);
}
.pv-stat-card::before {
  display: none;
}
.pv-stat-card .pv-stat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0;
  padding: 0.28rem 0.58rem 0.28rem 0.32rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #eaf9f0 0%, #dff3e7 100%);
  border: 1px solid rgba(68, 187, 119, 0.28);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #237a4a;
}
.pv-stat-card .pv-stat-label i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
}
.pv-stat-card .pv-stat-value {
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #152019;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.pv-stat-card .pv-stat-hint {
  font-size: 0.78rem;
  color: #74808a;
  margin-top: 0.05rem;
  line-height: 1.35;
}
.pv-stat-card.earnings .pv-stat-label {
  background: linear-gradient(145deg, #dff3e7 0%, #d0ecd9 100%);
}
.pv-stat-card.earnings .pv-stat-value {
  color: #107a3a;
}
.pv-stat-value-of {
  color: #152019;
  font-weight: 700;
}
.pv-stat-card .pv-stat-hint .pv-stat-value-of {
  font-weight: 600;
}
.pv-stat-value-cap {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-muted);
}
}

.pv-welcome {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
  padding: 1.35rem 1.45rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(232, 236, 234, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(8, 60, 30, 0.07);
}
.pv-welcome::before,
.pv-welcome::after {
  display: none;
}
.pv-welcome > div:first-child,
.pv-welcome__main {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1 1 240px;
}
.pv-welcome .page-title {
  margin-bottom: 0.35rem;
}
.pv-welcome .page-subtitle {
  margin-bottom: 0;
  color: #5a6760;
}
.pv-welcome > .pv-balance-pill,
.pv-welcome > span,
.pv-welcome-actions,
.pv-welcome-metrics {
  position: relative;
  z-index: 1;
}
.pv-welcome .pv-balance-pill {
  background: var(--color-primary-light);
  border-color: var(--color-border-green);
  box-shadow: none;
}
.pv-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex-shrink: 0;
}
.pv-welcome__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d9960;
}
.pv-welcome__eyebrow i {
  font-size: 0.72rem;
}
.pv-welcome__title {
  margin: 0 0 0.8rem;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #152019;
}
.pv-welcome__title span {
  color: #237a4a;
}
.pv-welcome__desc {
  margin: -0.45rem 0 0.75rem;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #5a6760;
}
.pv-welcome__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pv-welcome__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #237a4a;
  background: linear-gradient(145deg, #eaf9f0 0%, #dff3e7 100%);
  border: 1px solid rgba(68, 187, 119, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
.pv-welcome__stat i {
  font-size: 0.78rem;
  color: #2fa866;
  line-height: 1;
}
.pv-welcome__stat--bonus {
  background: linear-gradient(145deg, #dff3e7 0%, #d0ecd9 100%);
  color: #107a3a;
}
.pv-welcome-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0.62rem 1.05rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}
.pv-welcome-btn i {
  font-size: 0.95rem;
  line-height: 1;
}
.pv-welcome-btn--primary {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.28);
}
.pv-welcome-btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(68, 187, 119, 0.34);
}
.pv-welcome-btn--ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(68, 187, 119, 0.28);
  color: #237a4a;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
}
.pv-welcome-btn--ghost:hover {
  background: #fff;
  color: #107A3A;
  border-color: rgba(68, 187, 119, 0.38);
  transform: translateY(-1px);
}
.pv-welcome--compact {
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(68, 187, 119, 0.12);
  background:
    radial-gradient(circle at 0% 0%, rgba(68, 187, 119, 0.08), transparent 46%),
    radial-gradient(circle at 100% 100%, rgba(91, 159, 212, 0.06), transparent 42%),
    linear-gradient(145deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 12px 28px rgba(8, 60, 30, 0.07);
}
.pv-welcome--compact .pv-welcome__eyebrow {
  margin: 0 0 0.35rem;
  padding: 0.2rem 0.55rem 0.2rem 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(68, 187, 119, 0.18);
  backdrop-filter: blur(6px);
}
.pv-welcome--compact .pv-welcome__title {
  margin: 0 0 0.2rem;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}
.pv-welcome--compact .pv-welcome__desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #74808a;
}
.pv-welcome--compact .pv-welcome__stats {
  flex-shrink: 0;
  align-items: flex-start;
  gap: 0.45rem;
}
.pv-welcome--compact .pv-welcome__stat {
  gap: 0.45rem;
  padding: 0.32rem 0.62rem 0.32rem 0.32rem;
  border-radius: 12px;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(68, 187, 119, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 4px 12px rgba(8, 60, 30, 0.04);
  backdrop-filter: blur(6px);
}
.pv-welcome--compact .pv-welcome__stat i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(68, 187, 119, 0.22);
}
.pv-welcome--compact .pv-welcome__stat--bonus {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(68, 187, 119, 0.22);
  color: #107a3a;
}
.pv-welcome--compact .pv-welcome__stat--bonus i {
  background: linear-gradient(145deg, #ffb347, #ff9f1a);
  box-shadow: 0 3px 8px rgba(255, 159, 26, 0.22);
}
.pv-welcome--compact .pv-welcome-btn {
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  flex-shrink: 0;
  border-radius: 12px;
}
@media (max-width: 767.98px) {
  .pv-welcome--compact {
    border-radius: 18px;
    padding: 0.9rem 1rem;
  }
  .pv-welcome--compact .pv-welcome__stats {
    width: 100%;
  }
}

/* Dashboard welcome hero */
.pv-welcome--dashboard {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.85rem;
  border-radius: 22px;
  border: 1px solid rgba(68, 187, 119, 0.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(68, 187, 119, 0.11), transparent 44%),
    radial-gradient(circle at 100% 100%, rgba(255, 159, 26, 0.09), transparent 42%),
    linear-gradient(145deg, #ffffff 0%, #fbfdfb 55%, #f3f9f5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 1px rgba(255, 255, 255, 0.65),
    0 16px 36px rgba(8, 60, 30, 0.09);
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.pv-welcome--dashboard:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 1px rgba(255, 255, 255, 0.65),
    0 20px 42px rgba(8, 60, 30, 0.11);
}
.pv-welcome--dashboard .pv-welcome__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(68, 187, 119, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 187, 119, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 0%, transparent 100%);
}
.pv-welcome--dashboard .pv-welcome__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1.25rem 1.35rem;
}
.pv-welcome--dashboard .pv-welcome__main {
  flex: 1 1 280px;
}
.pv-welcome--dashboard .pv-welcome__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.5rem;
}
.pv-welcome--dashboard .pv-welcome__eyebrow {
  margin: 0;
  padding: 0.24rem 0.6rem 0.24rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(68, 187, 119, 0.2);
  backdrop-filter: blur(6px);
}
.pv-welcome--dashboard .pv-welcome__progress-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 159, 26, 0.24);
  font-size: 0.66rem;
  font-weight: 700;
  color: #b36a00;
  backdrop-filter: blur(6px);
}
.pv-welcome--dashboard .pv-welcome__title {
  margin: 0 0 0.9rem;
}
.pv-welcome--dashboard .pv-welcome__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pv-welcome--dashboard .pv-welcome-chip {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 6px 16px rgba(8, 60, 30, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.pv-welcome--dashboard .pv-welcome-chip:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 22px rgba(8, 60, 30, 0.08);
}
.pv-welcome--dashboard .pv-welcome__bar {
  height: 7px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(68, 187, 119, 0.12);
  overflow: hidden;
  max-width: 24rem;
  box-shadow: inset 0 1px 2px rgba(8, 60, 30, 0.04);
}
.pv-welcome--dashboard .pv-welcome__bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #44BB77, #3cc985 70%, #ffd666 100%);
  box-shadow: 0 0 12px rgba(68, 187, 119, 0.35);
  transition: width 320ms ease;
}
.pv-welcome--dashboard .pv-welcome-actions {
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  min-width: min(100%, 230px);
  padding: 0.65rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 20px rgba(8, 60, 30, 0.05);
}
.pv-welcome--dashboard .pv-welcome-btn {
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  width: 100%;
  min-height: 0;
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  text-align: left;
}
.pv-welcome--dashboard .pv-welcome-btn--primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 8px 18px rgba(68, 187, 119, 0.28);
}
.pv-welcome--dashboard .pv-welcome-btn--ghost {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(68, 187, 119, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.pv-welcome-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.04);
}
.pv-welcome-chip__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 11px;
  font-size: 0.9rem;
  color: #fff;
}
.pv-welcome-chip--level .pv-welcome-chip__ico {
  background: linear-gradient(145deg, #ffb347, #ff9f1a);
  box-shadow: 0 4px 10px rgba(255, 159, 26, 0.24);
}
.pv-welcome-chip--xp .pv-welcome-chip__ico {
  background: linear-gradient(145deg, #5b9fd4, #4a8bc2);
  box-shadow: 0 4px 10px rgba(74, 139, 194, 0.22);
}
.pv-welcome-chip--bonus .pv-welcome-chip__ico {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 4px 10px rgba(68, 187, 119, 0.22);
}
.pv-welcome-chip__body {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.pv-welcome-chip__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-welcome-chip__body strong {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  color: #152019;
  font-variant-numeric: tabular-nums;
}
.pv-welcome-chip__of {
  font-size: 0.78rem;
  font-weight: 700;
  color: #74808a;
}
.pv-welcome-chip--bonus .pv-welcome-chip__body strong {
  color: #107a3a;
}
.pv-welcome--dashboard .pv-welcome-btn__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: 11px;
  font-size: 1rem;
}
.pv-welcome--dashboard .pv-welcome-btn--primary .pv-welcome-btn__ico {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.pv-welcome--dashboard .pv-welcome-btn--ghost .pv-welcome-btn__ico {
  background: linear-gradient(145deg, #eaf9f0, #dff3e7);
  border: 1px solid rgba(68, 187, 119, 0.22);
  color: #107a3a;
}
.pv-welcome-btn__text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}
.pv-welcome-btn__text strong {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}
.pv-welcome-btn__text small {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.82;
  line-height: 1.2;
}
.pv-welcome--dashboard .pv-welcome-btn--ghost .pv-welcome-btn__text small {
  color: #5a7767;
  opacity: 1;
}
@media (max-width: 767.98px) {
  .pv-welcome--dashboard {
    margin-bottom: 1.35rem;
    border-radius: 18px;
  }
  .pv-welcome--dashboard .pv-welcome__grid {
    padding: 1rem;
  }
  .pv-welcome--dashboard .pv-welcome-actions {
    flex-direction: row;
    width: 100%;
    border-radius: 16px;
  }
  .pv-welcome--dashboard .pv-welcome-btn {
    flex: 1 1 140px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.65rem 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pv-welcome--dashboard:hover,
  .pv-welcome--dashboard .pv-welcome-chip:hover {
    transform: none;
  }
  .pv-topbar-stat:hover,
  .pv-topbar-deposit:hover,
  .pv-topbar-withdraw:hover,
  .pv-topbar-admin:hover,
  .pv-welcome-btn--primary:hover,
  .pv-welcome-btn--ghost:hover {
    transform: none;
  }
}

.pv-welcome-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex-shrink: 0;
  width: min(100%, 220px);
}
.pv-welcome-metric {
  padding: 0.72rem 0.82rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.06), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 2px 8px rgba(8, 60, 30, 0.04);
}
.pv-welcome-metric__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}
.pv-welcome-metric__label {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-welcome-metric__label i {
  color: #44BB77;
  font-size: 0.72rem;
}
.pv-welcome-metric__head strong {
  font-size: 0.84rem;
  font-weight: 800;
  color: #152019;
  font-variant-numeric: tabular-nums;
}
.pv-welcome-metric__track {
  height: 6px;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.12);
  overflow: hidden;
}
.pv-welcome-metric__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #44BB77, #2fa866);
  transition: width 240ms ease;
}
.pv-welcome-metric__hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #2d9960;
}
@media (max-width: 575.98px) {
  .pv-welcome {
    padding: 1.15rem 1.1rem;
  }
  .pv-welcome-metrics {
    width: 100%;
  }
  .pv-welcome-actions {
    width: 100%;
  }
  .pv-welcome-btn {
    flex: 1 1 calc(50% - 0.3rem);
  }
}

.pv-ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.pv-ad-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.06), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(8, 60, 30, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.pv-ad-card:hover {
  transform: translateY(-2px);
  border-color: rgba(68, 187, 119, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(8, 60, 30, 0.1);
}
.pv-ad-card.is-done {
  opacity: 0.88;
  background: linear-gradient(180deg, #f8faf9 0%, #f3f6f4 100%);
}
.pv-ad-card.is-locked {
  opacity: 0.92;
}
.pv-ad-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.pv-ad-card__status {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pv-ad-card__status--available {
  color: #237a4a;
  background: linear-gradient(145deg, #eaf9f0 0%, #dff3e7 100%);
  border: 1px solid rgba(68, 187, 119, 0.28);
}
.pv-ad-card__status--done {
  color: #5a6760;
  background: #eef1ef;
  border: 1px solid #dde4e0;
}
.pv-ad-card__status--locked {
  color: #74808a;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
}
.pv-ad-card__time {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #74808a;
}
.pv-ad-card__time i {
  color: #44BB77;
  font-size: 0.78rem;
}
.pv-ad-card__reward {
  font-family: 'Sora', var(--font-sans);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #107a3a;
  font-variant-numeric: tabular-nums;
}
.pv-ad-card__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: #152019;
}
.pv-ad-card__meta {
  margin: 0;
  font-size: 0.78rem;
  color: #74808a;
}
.pv-ad-card__actions {
  margin-top: auto;
  padding-top: 0.45rem;
}
.pv-ad-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 2.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 11px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}
.pv-ad-card__btn:not(.pv-ad-card__btn--done):not(.pv-ad-card__btn--locked) {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  box-shadow: 0 6px 14px rgba(68, 187, 119, 0.22);
}
.pv-ad-card__btn:not(.pv-ad-card__btn--done):not(.pv-ad-card__btn--locked):hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.28);
}
.pv-ad-card__btn--done,
.pv-ad-card__btn--locked {
  background: #f3f6f4;
  border-color: #e4ebe6;
  color: #74808a;
  cursor: not-allowed;
  box-shadow: none;
}
.pv-ad-reward {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.pv-ad-meta { font-size: 0.8rem; color: var(--color-muted); }
.pv-ad-title { font-weight: 700; color: var(--color-heading); font-size: 0.95rem; }
.pv-ad-actions { margin-top: auto; padding-top: 0.5rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }

.timer-box {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  font-variant-numeric: tabular-nums;
}
.ad-frame {
  min-height: 200px;
  background: #f8faf9;
  border: 1px dashed rgba(68, 187, 119, 0.28);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full-page free ad view */
.pv-ad-view-body {
  margin: 0;
  overflow: hidden;
  background: #0f1412;
}

.pv-ad-view {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
}

.pv-ad-view__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
  border-bottom: 1px solid rgba(68, 187, 119, 0.22);
  box-shadow: 0 4px 18px rgba(8, 60, 30, 0.08);
  z-index: 2;
}

.pv-ad-view__bar-start {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.pv-ad-view__bar-center {
  display: flex;
  justify-content: center;
}

.pv-ad-view__bar-end {
  display: flex;
  justify-content: flex-end;
}

.pv-ad-view__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4ebe6;
  color: #152019;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pv-ad-view__back:hover {
  color: #152019;
  background: #eef8f1;
  border-color: rgba(68, 187, 119, 0.35);
  transform: translateY(-1px);
}

.pv-ad-view__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pv-ad-view__title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #152019;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-ad-view__reward {
  font-size: 0.72rem;
  font-weight: 700;
  color: #2d9960;
}

.pv-ad-view__timer {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #dbe5df;
  color: #152019;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.pv-ad-view__timer-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(#44BB77 0deg, #dbe5df 0deg);
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  transform: rotate(-90deg);
  transition: background 200ms linear;
}

.pv-ad-view__timer-value {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pv-ad-view__timer-label {
  margin-top: 0.1rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #74808a;
}

.pv-ad-view__timer.is-ready {
  border-color: rgba(68, 187, 119, 0.55);
  background: #ecfdf3;
}

.pv-ad-view__timer.is-ready .pv-ad-view__timer-value {
  color: #15803d;
}

.pv-ad-view__timer.is-ready .pv-ad-view__timer-label {
  color: #2d9960;
}

.pv-ad-view__claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pv-ad-view__claim.is-ready:not(:disabled) {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  box-shadow: 0 8px 20px rgba(68, 187, 119, 0.28);
  cursor: pointer;
}

.pv-ad-view__claim.is-ready:not(:disabled):hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.pv-ad-view__notice {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.pv-ad-view__notice.is-success {
  background: #ecfdf3;
  color: #166534;
  border-bottom: 1px solid rgba(68, 187, 119, 0.22);
}

.pv-ad-view__notice.is-error {
  background: #fef2f2;
  color: #991b1b;
  border-bottom: 1px solid rgba(239, 68, 68, 0.22);
}

.pv-ad-view__frame {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  border: 0;
  background: #fff;
}

@media (max-width: 767.98px) {
  .pv-ad-view__bar {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "start end"
      "center center";
  }

  .pv-ad-view__bar-start {
    grid-area: start;
  }

  .pv-ad-view__bar-center {
    grid-area: center;
    padding-top: 0.15rem;
  }

  .pv-ad-view__bar-end {
    grid-area: end;
  }

  .pv-ad-view__info {
    display: none;
  }
}

/* Dashboard — daily earnings widget */
.pv-dash-daily {
  overflow: hidden;
  border: 1px solid rgba(68, 187, 119, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.07), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 20px rgba(8, 60, 30, 0.06);
}
.pv-dash-daily__inner {
  padding: 0.85rem 1rem 0.9rem;
}
.pv-dash-daily__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}
.pv-dash-daily__info {
  flex: 1 1 180px;
  min-width: 0;
}
.pv-dash-daily__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}
.pv-dash-daily__label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5a7767;
}
.pv-dash-daily__label i {
  color: #44BB77;
  font-size: 0.72rem;
}
.pv-dash-daily__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pv-dash-daily__badge.is-live {
  color: #107a3a;
  background: #eaf9f0;
  border: 1px solid rgba(68, 187, 119, 0.28);
}
.pv-dash-daily__badge.is-done {
  color: #5a6760;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
}
.pv-dash-daily__badge-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #44BB77;
  box-shadow: 0 0 0 0 rgba(68, 187, 119, 0.45);
  animation: pv-dash-daily-pulse 1.8s ease infinite;
}
.pv-dash-daily__amount-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
}
.pv-dash-daily__amount {
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #107a3a;
}
.pv-dash-daily__count {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #f0f7f3;
  border: 1px solid rgba(68, 187, 119, 0.18);
  font-size: 0.68rem;
  font-weight: 700;
  color: #2d9960;
}
.pv-dash-daily__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a9690;
}
.pv-dash-daily__meta i {
  margin-right: 0.15rem;
  color: #44BB77;
  font-size: 0.68rem;
}
.pv-dash-daily__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}
.pv-dash-daily__next {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #74808a;
}
.pv-dash-daily__next strong {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  color: #107a3a;
}
.pv-dash-daily__claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.24);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.pv-dash-daily__claim:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.3);
}
.pv-dash-daily__complete {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #eaf9f0;
  border: 1px solid rgba(68, 187, 119, 0.22);
  font-size: 0.74rem;
  font-weight: 700;
  color: #107a3a;
}
.pv-dash-daily__complete i {
  font-size: 0.9rem;
}
.pv-dash-daily__link {
  font-size: 0.72rem;
  font-weight: 700;
  color: #74808a;
  text-decoration: none;
  transition: color 160ms ease;
}
.pv-dash-daily__link:hover {
  color: #107a3a;
}
.pv-dash-daily__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.7rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(232, 236, 234, 0.95);
}
.pv-dash-daily__slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 8px;
  border: 1px solid #e4ebe6;
  background: #f8faf9;
  font-size: 0.62rem;
  font-weight: 800;
  color: #9aa5a0;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}
.pv-dash-daily__slot i {
  font-size: 0.62rem;
  line-height: 1;
}
.pv-dash-daily__slot.is-claimed {
  border-color: rgba(68, 187, 119, 0.28);
  background: #dff3e7;
  color: #107a3a;
}
.pv-dash-daily__slot.is-next {
  border-color: rgba(68, 187, 119, 0.45);
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  box-shadow: 0 3px 10px rgba(68, 187, 119, 0.28);
  animation: pv-dash-daily-slot-pulse 2s ease infinite;
}
.pv-dash-daily__foot {
  margin-top: 0.6rem;
}
.pv-dash-daily__progress {
  height: 5px;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.12);
  overflow: hidden;
}
.pv-dash-daily__progress > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #44BB77, #2fa866);
  transition: width 280ms ease;
}
.pv-dash-daily__progress.is-full > span {
  background: linear-gradient(90deg, #44BB77, #3cc985);
}
.pv-dash-daily__foot-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #8a9690;
}
.pv-dash-daily__badge.is-scheduled {
  color: #92600a;
  background: #fff8eb;
  border: 1px solid rgba(234, 179, 8, 0.28);
}
.pv-dash-daily__badge.is-scheduled i {
  font-size: 0.62rem;
}
.pv-dash-daily__badge.is-preparing {
  color: #92400e;
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, 0.28);
}
.pv-dash-daily__badge.is-preparing i {
  font-size: 0.62rem;
}
.pv-daily-pending-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.65rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  background:
    radial-gradient(circle at 0% 0%, rgba(249, 115, 22, 0.12), transparent 52%),
    linear-gradient(180deg, #fffaf5 0%, #fff4eb 100%);
  box-shadow: 0 8px 20px rgba(120, 53, 15, 0.08);
}
.pv-daily-pending-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #fb923c, #ea580c);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.24);
}
.pv-daily-pending-notice__title {
  display: block;
  margin: 0 0 0.25rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #152019;
}
.pv-daily-pending-notice__text {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #64748b;
}
.pv-dash-daily__empty-countdown.is-preparing strong,
.pv-dash-daily__empty-countdown.is-preparing .pv-dash-daily__empty-countdown-value {
  color: #c2410c;
  font-size: 0.92rem;
  line-height: 1.25;
  text-align: right;
}
.pv-dash-daily__empty-countdown.is-preparing .pv-dash-daily__empty-countdown-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #8a9690;
  text-align: right;
  line-height: 1.35;
}
.pv-dash-daily__empty-inner {
  padding: 0.85rem 1rem 0.9rem;
}
.pv-dash-daily__empty-head {
  margin-bottom: 0.75rem;
}
.pv-dash-daily__empty-lead {
  margin: 0.35rem 0 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #74808a;
  max-width: 38rem;
}
.pv-dash-daily__empty-schedule {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(68, 187, 119, 0.1), transparent 52%),
    linear-gradient(135deg, #f7fcf9 0%, #eef8f2 100%);
  border: 1px solid rgba(68, 187, 119, 0.18);
}
.pv-dash-daily__empty-time-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a9690;
  margin-bottom: 0.25rem;
}
.pv-dash-daily__empty-time-24 {
  display: block;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #107a3a;
}
.pv-dash-daily__empty-time-12 {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5f6d66;
}
.pv-dash-daily__empty-countdown {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-left: 1rem;
  border-left: 1px solid rgba(68, 187, 119, 0.16);
  min-width: 6.5rem;
}
.pv-dash-daily__empty-countdown-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-dash-daily__empty-countdown-value {
  margin-top: 0.2rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.02rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #152019;
  white-space: nowrap;
}
.pv-dash-daily__empty-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(68, 187, 119, 0.1);
}
.pv-dash-daily__empty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pv-dash-daily__empty-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(68, 187, 119, 0.16);
  font-size: 0.68rem;
  font-weight: 600;
  color: #5f6d66;
}
.pv-dash-daily__empty-chip i {
  color: #44BB77;
  font-size: 0.72rem;
}
.pv-dash-daily__empty-chip strong {
  color: #107a3a;
}
.pv-server-clock {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #152019;
}
.pv-dash-daily__empty .pv-dash-daily__link {
  margin-left: auto;
  flex-shrink: 0;
}
@keyframes pv-dash-daily-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(68, 187, 119, 0.45); }
  50% { box-shadow: 0 0 0 4px rgba(68, 187, 119, 0); }
}
@keyframes pv-dash-daily-slot-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@media (max-width: 575.98px) {
  .pv-dash-daily__inner {
    padding: 0.75rem 0.85rem 0.8rem;
  }
  .pv-dash-daily__side {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  .pv-dash-daily__empty-schedule {
    grid-template-columns: 1fr;
  }
  .pv-dash-daily__empty-countdown {
    align-items: flex-start;
    padding-left: 0;
    padding-top: 0.65rem;
    border-left: none;
    border-top: 1px solid rgba(68, 187, 119, 0.16);
    min-width: 0;
    width: 100%;
  }
  .pv-dash-daily__empty-foot {
    flex-direction: column;
    align-items: stretch;
  }
  .pv-dash-daily__empty .pv-dash-daily__link {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pv-dash-daily__badge-dot,
  .pv-dash-daily__slot.is-next {
    animation: none;
  }
  .pv-dash-daily__claim:hover {
    transform: none;
  }
}

/* Daily earnings page */
.pv-daily-page {
  align-items: flex-start;
}
.pv-daily-summary {
  overflow: hidden;
  border: 1px solid rgba(68, 187, 119, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.07), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}
.pv-daily-summary__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 1rem 1.15rem;
}
.pv-daily-summary__main {
  flex: 1 1 240px;
  min-width: 0;
}
.pv-daily-summary__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.pv-daily-summary__label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5a7767;
}
.pv-daily-summary__label i {
  color: #44BB77;
}
.pv-daily-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pv-daily-summary__badge.is-live {
  color: #107a3a;
  background: #eaf9f0;
  border: 1px solid rgba(68, 187, 119, 0.28);
}
.pv-daily-summary__badge.is-done {
  color: #5a6760;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
}
.pv-daily-summary__badge-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #44BB77;
  box-shadow: 0 0 0 0 rgba(68, 187, 119, 0.45);
  animation: pv-dash-daily-pulse 1.8s ease infinite;
}
.pv-daily-summary__amount-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
}
.pv-daily-summary__amount {
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #107a3a;
}
.pv-daily-summary__count {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #f0f7f3;
  border: 1px solid rgba(68, 187, 119, 0.18);
  font-size: 0.7rem;
  font-weight: 700;
  color: #2d9960;
}
.pv-daily-summary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0.35rem 0 0.65rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #8a9690;
}
.pv-daily-summary__meta i {
  margin-right: 0.15rem;
  color: #44BB77;
  font-size: 0.72rem;
}
.pv-daily-summary__progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.12);
  overflow: hidden;
}
.pv-daily-summary__progress > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #44BB77, #2fa866);
  transition: width 280ms ease;
}
.pv-daily-summary__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}
.pv-daily-summary__next {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #74808a;
}
.pv-daily-summary__next strong {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  color: #107a3a;
}
.pv-daily-summary__claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(68, 187, 119, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pv-daily-summary__claim:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(68, 187, 119, 0.32);
}
.pv-daily-summary__complete {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #eaf9f0;
  border: 1px solid rgba(68, 187, 119, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
  color: #107a3a;
}
.pv-daily-section-head,
.pv-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(68, 187, 119, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.06), transparent 52%),
    linear-gradient(145deg, #ffffff 0%, #f8fbf9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 6px 16px rgba(8, 60, 30, 0.04);
}
.pv-daily-section-head__title,
.pv-section-head__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.2;
}
.pv-section-head__title::before,
.pv-daily-section-head__title::before {
  content: '';
  display: inline-block;
  width: 0.28rem;
  height: 1rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #44BB77, #2fa866);
  box-shadow: 0 0 0 2px rgba(68, 187, 119, 0.12);
}
.pv-daily-section-head__desc,
.pv-section-head__desc {
  margin: 0.18rem 0 0 0.73rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #74808a;
}
.pv-section-head__aside {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.08);
  border: 1px solid rgba(68, 187, 119, 0.16);
  font-size: 0.68rem;
  font-weight: 700;
  color: #107a3a;
}
.pv-section-head__aside i {
  font-size: 0.72rem;
}
@media (max-width: 575.98px) {
  .pv-daily-section-head,
  .pv-section-head {
    border-radius: 14px;
    padding: 0.75rem 0.85rem;
  }
}
.pv-daily-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.85rem;
}
.pv-daily-slot {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 20px rgba(8, 60, 30, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.pv-daily-slot.is-next {
  border-color: rgba(68, 187, 119, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 0 0 2px rgba(68, 187, 119, 0.1),
    0 10px 24px rgba(68, 187, 119, 0.12);
}
.pv-daily-slot.is-claimed {
  opacity: 0.92;
  background: linear-gradient(180deg, #f8fbf9 0%, #f3f7f4 100%);
}
.pv-daily-slot.is-waiting {
  opacity: 0.88;
}
.pv-daily-slot__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.pv-daily-slot__status {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pv-daily-slot.is-next .pv-daily-slot__status {
  color: #107a3a;
  background: #eaf9f0;
  border: 1px solid rgba(68, 187, 119, 0.28);
}
.pv-daily-slot.is-claimed .pv-daily-slot__status {
  color: #5a6760;
  background: #eef1ef;
  border: 1px solid #dde4e0;
}
.pv-daily-slot.is-waiting .pv-daily-slot__status {
  color: #74808a;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
}
.pv-daily-slot__num {
  font-size: 0.68rem;
  font-weight: 700;
  color: #9aa5a0;
}
.pv-daily-slot__reward {
  font-family: 'Sora', var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #107a3a;
}
.pv-daily-slot.is-waiting .pv-daily-slot__reward {
  color: #74808a;
}
.pv-daily-slot__meta {
  margin: 0;
  flex: 1;
  font-size: 0.76rem;
  line-height: 1.4;
  color: #74808a;
}
.pv-daily-slot__actions {
  margin-top: auto;
  padding-top: 0.15rem;
}
.pv-daily-slot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 2.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 11px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pv-daily-slot__btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.28);
}
.pv-daily-slot__btn--done,
.pv-daily-slot__btn--locked {
  background: #eef1ef;
  border-color: #dde4e0;
  color: #74808a;
  box-shadow: none;
  cursor: not-allowed;
}
.pv-daily-slot__btn--done {
  color: #2d9960;
  background: #eaf9f0;
  border-color: rgba(68, 187, 119, 0.22);
}
.pv-daily-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2rem 1.25rem;
}
.pv-daily-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #eaf9f0 0%, #dff3e7 100%);
  border: 1px solid rgba(68, 187, 119, 0.28);
  color: #44BB77;
  font-size: 1.25rem;
}
.pv-daily-empty strong {
  font-size: 1rem;
  color: #152019;
}
.pv-daily-empty p {
  max-width: 32rem;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #74808a;
}
.pv-daily-empty__tips {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  max-width: 22rem;
  text-align: left;
}
.pv-daily-empty__tips li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: #f8faf9;
  border: 1px solid #e8ecea;
  font-size: 0.78rem;
  font-weight: 600;
  color: #5a6760;
}
.pv-daily-empty__tips i {
  color: #44BB77;
  font-size: 0.9rem;
}
.pv-daily-empty__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.24);
}
.pv-daily-empty__link:hover {
  color: #fff;
}
.pv-daily-aside-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pv-daily-aside {
  overflow: hidden;
  border: 1px solid rgba(232, 236, 234, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 20px rgba(8, 60, 30, 0.05);
}
.pv-daily-aside .card-header.pv-card-head {
  background: #fff;
  border-bottom-color: rgba(232, 236, 234, 0.95);
}
.pv-daily-aside--schedule .card-header.pv-card-head {
  background: linear-gradient(180deg, #fffdf5 0%, #fff9eb 100%);
  border-bottom-color: rgba(234, 179, 8, 0.2);
}
.pv-daily-aside--schedule .pv-card-head::after {
  background: linear-gradient(180deg, #facc15, #ca8a04);
}
.pv-daily-aside--schedule .pv-card-head__icon {
  background: linear-gradient(145deg, #facc15, #ca8a04);
  box-shadow: 0 3px 10px rgba(202, 138, 4, 0.24);
}
.pv-daily-aside--level .card-header.pv-card-head {
  background: linear-gradient(180deg, #fffaf3 0%, #fff6e8 100%);
  border-bottom-color: rgba(255, 159, 26, 0.22);
}
.pv-daily-aside--level .pv-card-head::after {
  background: linear-gradient(180deg, #ffb020, #e88a00);
}
.pv-daily-aside--level .pv-card-head__icon {
  background: linear-gradient(145deg, #fb923c, #ea580c);
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.24);
}
.pv-daily-aside--guide .card-header.pv-card-head {
  background: linear-gradient(180deg, #f8fbff 0%, #f0f7ff 100%);
  border-bottom-color: rgba(91, 159, 212, 0.22);
}
.pv-daily-aside--guide .pv-card-head::after {
  background: linear-gradient(180deg, #5b9fd4, #4a8bc2);
}
.pv-daily-aside--guide .pv-card-head__icon {
  background: linear-gradient(145deg, #5b9fd4, #4a8bc2);
  box-shadow: 0 3px 10px rgba(74, 139, 194, 0.24);
}
.pv-daily-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pv-daily-schedule__block {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(68, 187, 119, 0.1), transparent 52%),
    linear-gradient(135deg, #f7fcf9 0%, #eef8f2 100%);
  border: 1px solid rgba(68, 187, 119, 0.18);
  text-align: center;
}
.pv-daily-schedule__eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a9690;
  margin-bottom: 0.25rem;
}
.pv-daily-schedule__time {
  display: block;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #107a3a;
}
.pv-daily-schedule__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5f6d66;
}
.pv-daily-schedule__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: #f8faf9;
  border: 1px solid #e8ecea;
}
.pv-daily-schedule__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #74808a;
}
.pv-daily-schedule__label i {
  color: #44BB77;
}
.pv-daily-schedule__clock {
  font-variant-numeric: tabular-nums;
  font-size: 0.82rem;
  font-weight: 800;
  color: #152019;
}
.pv-daily-schedule__countdown {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(68, 187, 119, 0.16);
  text-align: center;
}
.pv-daily-schedule__countdown.is-expiry {
  background: #fff8eb;
  border-color: rgba(234, 179, 8, 0.28);
}
.pv-daily-schedule__countdown.is-open {
  background: #f0fdf4;
  border-color: rgba(68, 187, 119, 0.22);
}
.pv-daily-schedule__countdown.is-open strong {
  color: #107a3a;
}
.pv-daily-schedule__countdown.is-preparing {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, 0.24);
}
.pv-daily-schedule__countdown.is-preparing strong {
  color: #c2410c;
}
.pv-daily-schedule__countdown-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-daily-schedule__countdown strong {
  display: block;
  margin-top: 0.2rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #152019;
}
.pv-daily-schedule__countdown.is-expiry strong {
  color: #92600a;
}
.pv-daily-schedule__countdown-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #8a9690;
  line-height: 1.4;
}
.pv-countdown {
  font-variant-numeric: tabular-nums;
}
.pv-welcome__stat .pv-countdown,
.pv-dash-daily__meta .pv-countdown {
  color: inherit;
}
.pv-daily-page .pv-dash-daily__empty .pv-dash-daily__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff !important;
  font-size: 0.78rem;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pv-daily-page .pv-dash-daily__empty .pv-dash-daily__link:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.3);
}
.pv-daily-aside__body {
  padding: 0.9rem 1rem 1rem !important;
}
.pv-daily-level-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pv-daily-level-card__hero {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 159, 26, 0.12), transparent 55%),
    linear-gradient(145deg, #fffaf3 0%, #fff6e8 100%);
  border: 1px solid rgba(255, 159, 26, 0.2);
}
.pv-daily-level-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffb347, #ff9f1a);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(255, 159, 26, 0.28);
}
.pv-daily-level-card__main {
  flex: 1;
  min-width: 0;
}
.pv-daily-level-card__eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a67c3a;
}
.pv-daily-level-card__main strong {
  display: block;
  margin-top: 0.1rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.2;
}
.pv-daily-level-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 159, 26, 0.14);
  border: 1px solid rgba(255, 159, 26, 0.28);
  font-family: 'Sora', var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  color: #b36a00;
  white-space: nowrap;
}
.pv-daily-level-card__stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #eaf9f0 0%, #dff3e7 100%);
  border: 1px solid rgba(68, 187, 119, 0.22);
}
.pv-daily-level-card__stat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(68, 187, 119, 0.22);
}
.pv-daily-level-card__stat-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a7767;
}
.pv-daily-level-card__stat-value {
  display: block;
  margin-top: 0.08rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: #107a3a;
  line-height: 1.1;
}
.pv-daily-level-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 11px;
  background: #fff;
  border: 1px solid rgba(68, 187, 119, 0.22);
  font-size: 0.76rem;
  font-weight: 700;
  color: #107a3a;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}
.pv-daily-level-card__link i {
  font-size: 0.9rem;
  transition: transform 160ms ease;
}
.pv-daily-level-card__link:hover {
  background: #f5fbf7;
  border-color: rgba(68, 187, 119, 0.35);
  color: #0d6330;
}
.pv-daily-level-card__link:hover i {
  transform: translateX(2px);
}
.pv-daily-guide {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pv-daily-guide__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.65rem 0 0.65rem 0.15rem;
}
.pv-daily-guide__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.05rem;
  top: 2.55rem;
  bottom: -0.15rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(68, 187, 119, 0.28), rgba(68, 187, 119, 0.08));
}
.pv-daily-guide__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  border-radius: 11px;
  font-size: 0.88rem;
  box-shadow: 0 4px 10px rgba(8, 60, 30, 0.08);
}
.pv-daily-guide__num {
  position: absolute;
  top: -0.28rem;
  right: -0.28rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.95rem;
  height: 0.95rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: #152019;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(8, 60, 30, 0.18);
}
.pv-daily-guide__step.is-distribute .pv-daily-guide__marker {
  background: linear-gradient(145deg, #dbeafe, #bfdbfe);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #2563eb;
}
.pv-daily-guide__step.is-watch .pv-daily-guide__marker {
  background: linear-gradient(145deg, #eaf9f0, #dff3e7);
  border: 1px solid rgba(68, 187, 119, 0.28);
  color: #107a3a;
}
.pv-daily-guide__step.is-earn .pv-daily-guide__marker {
  background: linear-gradient(145deg, #fef3c7, #fde68a);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #b45309;
}
.pv-daily-guide__step.is-expire .pv-daily-guide__marker {
  background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
  border: 1px solid rgba(107, 114, 128, 0.22);
  color: #6b7280;
}
.pv-daily-guide__content {
  flex: 1;
  min-width: 0;
  padding-top: 0.1rem;
}
.pv-daily-guide__content strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.25;
}
.pv-daily-guide__content span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.73rem;
  line-height: 1.45;
  color: #74808a;
}
@media (max-width: 991.98px) {
  .pv-daily-summary__side {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 575.98px) {
  .pv-daily-grid {
    grid-template-columns: 1fr;
  }
  .pv-daily-summary__inner {
    padding: 0.9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pv-daily-summary__badge-dot,
  .pv-daily-summary__claim:hover,
  .pv-daily-slot__btn:hover {
    animation: none;
    transform: none;
  }
}

.pv-daily-status {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.pv-daily-status__main {
  flex: 1 1 260px;
  min-width: 0;
}
.pv-daily-status__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-daily-status__amount {
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #107a3a;
}
.pv-daily-status__meta {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.82rem;
  color: #74808a;
}
.pv-daily-status__progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.12);
  overflow: hidden;
}
.pv-daily-status__progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #44BB77, #2fa866);
  transition: width 240ms ease;
}
.pv-daily-status__hint {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2d9960;
}
.pv-daily-status__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  flex-shrink: 0;
}
.pv-daily-status__complete {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: linear-gradient(145deg, #eaf9f0 0%, #dff3e7 100%);
  border: 1px solid rgba(68, 187, 119, 0.28);
  font-size: 0.84rem;
  font-weight: 700;
  color: #107a3a;
}
.pv-daily-status__complete i {
  font-size: 1rem;
}
.pv-daily-note {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 236, 234, 0.95);
  font-size: 0.8rem;
  line-height: 1.5;
  color: #74808a;
}
.pv-daily-claim .card-body {
  padding: 1.5rem 1.25rem;
}
.pv-daily-claim__label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-daily-claim__timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  margin: 0 auto 1rem;
  padding: 0.5rem 1rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #eaf9f0 0%, #dff3e7 100%);
  border: 1px solid rgba(68, 187, 119, 0.28);
  font-family: 'Sora', var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: #107a3a;
}
.pv-daily-claim__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: min(100%, 220px);
  min-height: 2.65rem;
  padding: 0.62rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.28);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}
.pv-daily-claim__btn:hover:not(:disabled) {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(68, 187, 119, 0.34);
}
.pv-daily-claim__btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}
.pv-daily-claim__btn--inline {
  width: auto;
  min-width: 0;
}
.pv-daily-claim__result {
  margin-top: 1rem;
}
.pv-daily-claim__result:empty {
  display: none;
}
@media (max-width: 575.98px) {
  .pv-daily-status__side {
    width: 100%;
  }
  .pv-daily-claim__btn--inline {
    width: 100%;
  }
}

.pv-deposit-card .card-body {
  padding: 1.35rem 1.4rem 1.45rem;
}
.pv-deposit-form__intro {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5a6760;
}
.pv-deposit-form__hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.pv-deposit-form__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5a6760;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
}
.pv-deposit-form__hint i {
  color: #44BB77;
  font-size: 0.78rem;
}
.pv-deposit-form .form-label {
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-deposit-form .form-control,
.pv-deposit-form .form-select {
  padding: 0.72rem 0.85rem;
  border-radius: 11px;
  border-color: rgba(232, 236, 234, 0.95);
  font-size: 0.92rem;
}
.pv-deposit-form .form-control:focus,
.pv-deposit-form .form-select:focus {
  border-color: rgba(68, 187, 119, 0.45);
  box-shadow: 0 0 0 3px rgba(68, 187, 119, 0.14);
}
.pv-deposit-form__amount {
  position: relative;
}
.pv-deposit-form__amount-prefix {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  font-weight: 700;
  color: #74808a;
  pointer-events: none;
}
.pv-deposit-form__amount .form-control {
  padding-left: 2.15rem;
  min-height: 3.1rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  color: #152019;
}
.pv-deposit-methods {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.pv-deposit-methods > .form-label {
  float: none;
  width: auto;
  padding: 0;
}
.pv-deposit-methods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
.pv-deposit-method {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 236, 234, 0.98);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.04);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}
.pv-deposit-method:hover {
  border-color: rgba(68, 187, 119, 0.28);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(8, 60, 30, 0.07);
}
.pv-deposit-method__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pv-deposit-method__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.12);
}
.pv-deposit-method--manual .pv-deposit-method__ico {
  background: linear-gradient(145deg, #64748b, #475569);
}
.pv-deposit-method--faucetpay .pv-deposit-method__ico {
  background: linear-gradient(145deg, #44BB77, #2fa866);
}
.pv-deposit-method--paykassa .pv-deposit-method__ico {
  background: linear-gradient(145deg, #5b9fd4, #4a8bc2);
}
.pv-deposit-method__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.pv-deposit-method__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
}
.pv-deposit-method__name {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #152019;
}
.pv-deposit-method__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.pv-deposit-method--faucetpay .pv-deposit-method__tag {
  color: #107a3a;
  background: rgba(68, 187, 119, 0.12);
  border-color: rgba(68, 187, 119, 0.22);
}
.pv-deposit-method--paykassa .pv-deposit-method__tag {
  color: #1d4ed8;
  background: rgba(91, 159, 212, 0.14);
  border-color: rgba(91, 159, 212, 0.28);
}
.pv-deposit-method__desc {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
}
.pv-deposit-method__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1.5px solid #d0d8d3;
  background: #fff;
  color: transparent;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.pv-deposit-method.is-selected,
.pv-deposit-method:has(.pv-deposit-method__input:checked) {
  border-color: rgba(68, 187, 119, 0.45);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.1), transparent 48%),
    linear-gradient(180deg, #f4fbf7 0%, #ffffff 100%);
  box-shadow:
    0 0 0 1px rgba(68, 187, 119, 0.12),
    0 10px 22px rgba(68, 187, 119, 0.12);
}
.pv-deposit-method.is-selected .pv-deposit-method__check,
.pv-deposit-method:has(.pv-deposit-method__input:checked) .pv-deposit-method__check {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 4px 10px rgba(68, 187, 119, 0.28);
}
.pv-deposit-method:focus-within {
  outline: 2px solid rgba(68, 187, 119, 0.45);
  outline-offset: 2px;
}
.pv-deposit-pk {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(91, 159, 212, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 159, 212, 0.1), transparent 48%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}
.pv-deposit-pk__section {
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
  min-width: 0;
}
.pv-deposit-pk__section:last-child {
  margin-bottom: 0;
}
.pv-deposit-pk__section > .form-label {
  float: none;
  width: auto;
  padding: 0;
  margin-bottom: 0.45rem;
}
.pv-deposit-pk__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pv-deposit-pk-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  margin: 0;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}
.pv-deposit-pk-chip:hover {
  border-color: rgba(91, 159, 212, 0.45);
  background: #f8fbff;
}
.pv-deposit-pk-chip.is-selected {
  border-color: rgba(74, 139, 194, 0.55);
  background: linear-gradient(145deg, #5b9fd4, #4a8bc2);
  box-shadow: 0 6px 14px rgba(74, 139, 194, 0.22);
  color: #fff;
}
.pv-deposit-pk-chip--network.is-selected {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border-color: rgba(47, 168, 102, 0.5);
  box-shadow: 0 6px 14px rgba(68, 187, 119, 0.22);
}
.pv-deposit-pk-chip__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pv-deposit-pk-chip__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.pv-deposit-pk__hint {
  margin: 0.5rem 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #64748b;
}
.pv-withdraw-history-item__pay {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: none;
}
.pv-withdraw-history-item__pay:hover {
  text-decoration: underline;
  color: #1e40af;
}
.pv-pay {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: pvPayIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes pvPayIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.pv-pay__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: stretch;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(91, 159, 212, 0.18);
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(91, 159, 212, 0.16), transparent 55%),
    linear-gradient(145deg, #f4f9fd 0%, #ffffff 48%, #f7fbf8 100%);
  box-shadow: 0 10px 28px rgba(15, 40, 60, 0.06);
}
.pv-pay__back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4a7a62;
  text-decoration: none;
}
.pv-pay__back:hover {
  color: #1d6b45;
  text-decoration: underline;
}
.pv-pay__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4a8bc2;
}
.pv-pay__title {
  margin: 0;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #152019;
  line-height: 1.2;
}
.pv-pay__desc {
  margin: 0.45rem 0 0;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #5a6b62;
}
.pv-pay__hero-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 11.5rem;
}
.pv-pay__amount-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: linear-gradient(160deg, #1a3a52 0%, #2a5f86 55%, #3a7aad 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(42, 95, 134, 0.28);
}
.pv-pay__amount-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}
.pv-pay__amount {
  font-family: 'Sora', var(--font-sans);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.pv-pay__amount-asset {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.88;
}
.pv-pay__amount-rate {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.75;
}
.pv-pay__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.pv-pay__status--pending {
  color: #9a5b12;
  background: #fff7e8;
  border: 1px solid rgba(245, 158, 11, 0.28);
}
.pv-pay__status--pending i {
  animation: pvPayPulse 1.6s ease-in-out infinite;
}
.pv-pay__status--done {
  color: #107a3a;
  background: #eaf9f0;
  border: 1px solid rgba(68, 187, 119, 0.28);
}
.pv-pay__status--rejected {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid rgba(240, 68, 56, 0.22);
}
@keyframes pvPayPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.pv-pay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
  gap: 1rem;
  align-items: start;
}
.pv-pay-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.pv-pay-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.pv-pay-meta__item {
  position: relative;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.pv-pay-meta__item--accent {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #eef8f2 0%, #f7fcf9 100%);
  border-color: rgba(68, 187, 119, 0.28);
}
.pv-pay-meta__item span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}
.pv-pay-meta__item strong {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.95rem;
  color: #152019;
  word-break: break-word;
}
.pv-pay-meta__item--accent strong {
  font-size: 1.15rem;
  color: #0f5c32;
}
.pv-pay-address {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(91, 159, 212, 0.24);
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.95) 0%, #fff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.pv-pay-address--tag {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(180deg, #fffbf3 0%, #fff 100%);
}
.pv-pay-address__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.pv-pay-address__head span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.pv-pay-address__value {
  display: block;
  word-break: break-all;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.pv-pay-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(91, 159, 212, 0.3);
  background: #fff;
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.pv-pay-copy:hover {
  background: #eff6ff;
  transform: translateY(-1px);
}
.pv-pay-copy--inline {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
}
.pv-pay-copy.is-copied {
  color: #107a3a;
  border-color: rgba(68, 187, 119, 0.4);
  background: #eaf9f0;
}
.pv-pay-warn {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #9a3412;
  font-size: 0.78rem;
  line-height: 1.45;
}
.pv-pay-warn--soft {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #475569;
}
.pv-pay__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(145deg, #5b9fd4, #3f7fb8);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(74, 139, 194, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pv-pay__cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(74, 139, 194, 0.34);
}
.pv-pay__cta--ghost {
  width: auto;
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #237a4a;
  border-color: rgba(68, 187, 119, 0.35);
  box-shadow: none;
}
.pv-pay__cta--ghost:hover {
  color: #1a5f38;
  background: #f3faf6;
}
.pv-pay-side__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pv-pay-qr {
  display: flex;
  justify-content: center;
}
.pv-pay-qr__frame {
  padding: 0.85rem;
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(91, 159, 212, 0.55), rgba(68, 187, 119, 0.4)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 10px 24px rgba(15, 40, 60, 0.08);
}
.pv-pay-qr img {
  display: block;
  border-radius: 10px;
  width: 100%;
  max-width: 240px;
  height: auto;
}
.pv-pay-side__note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.pv-pay-side__note strong {
  color: #152019;
}
.pv-pay-checklist {
  margin: 0;
  padding: 0.7rem 0.8rem;
  list-style: none;
  border-radius: 12px;
  background: #f8faf9;
  border: 1px solid #e6eee9;
}
.pv-pay-checklist li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #3f4b44;
}
.pv-pay-checklist li + li {
  margin-top: 0.35rem;
}
.pv-pay-checklist i {
  color: #2fa866;
  font-size: 0.9rem;
}
.pv-pay-side__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #237a4a;
  text-decoration: none;
}
.pv-pay-side__back:hover {
  text-decoration: underline;
}
.pv-pay-done__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1rem;
}
.pv-pay-done__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pv-pay-done__body p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: #64748b;
}
@media (max-width: 991.98px) {
  .pv-pay-layout {
    grid-template-columns: 1fr;
  }
  .pv-pay__hero {
    grid-template-columns: 1fr;
  }
  .pv-pay__hero-aside {
    flex-direction: row;
    align-items: stretch;
    min-width: 0;
  }
  .pv-pay__amount-card {
    flex: 1;
  }
}
@media (max-width: 575.98px) {
  .pv-pay-meta {
    grid-template-columns: 1fr;
  }
  .pv-pay__hero-aside {
    flex-direction: column;
  }
  .pv-pay__hero {
    padding: 1rem;
  }
}
.pv-deposit-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.85rem;
  margin-top: 0.25rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.28);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.pv-deposit-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(68, 187, 119, 0.34);
}
.pv-withdraw-address__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
}
.pv-withdraw-address__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #eaf9f0;
  border: 1px solid rgba(68, 187, 119, 0.22);
  font-size: 0.68rem;
  font-weight: 700;
  color: #107a3a;
  white-space: nowrap;
}
.pv-withdraw-address__wrap {
  position: relative;
}
.pv-withdraw-address__ico {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #44BB77;
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
}
.pv-withdraw-address__wrap .form-control {
  padding-left: 2.35rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}
.pv-withdraw-address__example {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  margin-top: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: #f8faf9;
  border: 1px dashed rgba(68, 187, 119, 0.28);
}
.pv-withdraw-address__example-label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-withdraw-address__example-label i {
  color: #44BB77;
  font-size: 0.72rem;
}
.pv-withdraw-address__example-value {
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e4ebe6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.04em;
}
.pv-withdraw-address__hint {
  margin: 0.45rem 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #74808a;
}
.pv-withdraw-form-wrap {
  position: relative;
}
.pv-withdraw-form-block {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.pv-withdraw-form-block__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  opacity: 0;
  transition: opacity 220ms ease;
}
.pv-withdraw-form-block.is-open .pv-withdraw-form-block__backdrop {
  opacity: 1;
}
.pv-withdraw-form-block__box {
  position: relative;
  width: min(100%, 22rem);
  padding: 1.15rem 1.1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(234, 179, 8, 0.28);
  background:
    radial-gradient(circle at 0% 0%, rgba(234, 179, 8, 0.12), transparent 52%),
    linear-gradient(180deg, #fffdf5 0%, #fff9eb 100%);
  box-shadow:
    0 24px 48px rgba(120, 80, 8, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  text-align: center;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}
.pv-withdraw-form-block.is-open .pv-withdraw-form-block__box {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.pv-withdraw-form-block__close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #64748b;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.pv-withdraw-form-block__close:hover {
  background: #fff;
  color: #152019;
}
body.pv-withdraw-block-open {
  overflow: hidden;
}
.pv-withdraw-form-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.55rem;
  border-radius: 11px;
  background: linear-gradient(145deg, #facc15, #ca8a04);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 6px 14px rgba(202, 138, 4, 0.24);
}
.pv-withdraw-form-block__title {
  display: block;
  margin: 0 0 0.35rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #152019;
}
.pv-withdraw-form-block__text {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
}
.pv-withdraw-form-block__meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 179, 8, 0.22);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #92400e;
  font-variant-numeric: tabular-nums;
}
.pv-withdraw-history__head {
  /* legacy alias — uses pv-card-head */
}
.pv-withdraw-history .card-header.pv-card-head::before,
.pv-withdraw-history .card-header.pv-card-head > .pv-withdraw-history__title::before,
.pv-withdraw-history .card-header.pv-card-head > .pv-withdraw-history__count::before {
  content: none !important;
  display: none !important;
}
.pv-withdraw-history-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pv-withdraw-history-item {
  padding: 0.8rem 1rem;
  border-radius: 0;
  background: #fff;
  border: none;
  border-bottom: 1px solid #e8ecea;
  box-shadow: none;
  transition: background 160ms ease;
}
.pv-withdraw-history-item:last-child {
  border-bottom: none;
}
.pv-withdraw-history-item:hover {
  background: #f8faf9;
}
.pv-withdraw-history-item__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}
.pv-withdraw-history-item__info {
  min-width: 0;
  flex: 1;
}
.pv-withdraw-history-item__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.28rem;
}
.pv-withdraw-history-item__id {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  font-size: 0.72rem;
  font-weight: 800;
  color: #152019;
  font-variant-numeric: tabular-nums;
}
.pv-withdraw-history-item__method {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}
.pv-withdraw-history-item__method::before {
  content: "·";
  margin-right: 0.65rem;
  color: #cbd5d0;
  font-weight: 700;
}
.pv-withdraw-history-item__date {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.71rem;
  font-weight: 600;
  color: #8a9690;
  font-variant-numeric: tabular-nums;
}
.pv-withdraw-history-item__date i {
  color: #a8b4ae;
  font-size: 0.7rem;
}
.pv-withdraw-history-item__meta {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
}
.pv-withdraw-history-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-width: 0;
  max-width: 100%;
  font-size: 0.71rem;
  font-weight: 600;
  color: #5f6d66;
  text-decoration: none;
}
.pv-withdraw-history-item__link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-withdraw-history-item__link:hover {
  color: #237a4a;
}
.pv-withdraw-history-item__link i {
  color: #a8b4ae;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.pv-withdraw-history-item__method i {
  margin-right: 0.2rem;
  color: #a8b4ae;
  font-size: 0.68rem;
}
.pv-withdraw-history-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.32rem;
  flex-shrink: 0;
}
.pv-withdraw-history-item__amount {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  color: #152019;
  font-variant-numeric: tabular-nums;
}
.pv-withdraw-history-item--rejected .pv-withdraw-history-item__amount {
  color: #64748b;
}
.pv-withdraw-history__footer {
  padding: 0.75rem 1rem 0.9rem;
  background: #fafbfb;
  border-top: 1px solid #e8ecea;
}
.pv-deposit-table thead th {
  background: #f8fcf9;
}
.pv-deposit-table tbody td {
  vertical-align: middle;
}
.pv-deposit-history__footer {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(232, 236, 234, 0.95);
}
.pv-ledger-card .card-header {
  border-bottom: 1px solid rgba(68, 187, 119, 0.14);
}
.pv-ledger-table tbody td {
  font-size: 0.84rem;
}
.pv-ledger-type {
  display: inline-block;
  max-width: 9rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #3f4b44;
  line-height: 1.3;
}
.pv-ledger-desc {
  max-width: 14rem;
  font-size: 0.8rem;
  color: #74808a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-ledger-date {
  font-size: 0.78rem;
  color: #74808a;
  white-space: nowrap;
}
.pv-ledger-amount--credit {
  color: #107a3a;
  font-weight: 700;
}
.pv-ledger-amount--debit {
  color: #b42318;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .pv-ledger-table .pv-ledger-desc,
  .pv-ledger-table th:nth-child(5),
  .pv-ledger-table td:nth-child(5),
  .pv-ledger-table th:nth-child(6),
  .pv-ledger-table td:nth-child(6) {
    display: none;
  }
}

.pv-referral-link .card-body {
  padding: 1.25rem 1.35rem;
}
.pv-referral-link__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.pv-referral-link__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-referral-link__code {
  display: block;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #107a3a;
}
.pv-referral-link__box {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(68, 187, 119, 0.24);
  background: linear-gradient(145deg, #eefbf3 0%, #e3f7ea 100%);
  font-size: 0.82rem;
  line-height: 1.45;
  color: #237a4a;
  word-break: break-all;
}
.pv-referral-link__box--inline {
  display: inline-block;
  padding: 0.45rem 0.65rem;
  font-size: 0.72rem;
  max-width: 100%;
}
.pv-referral-link__note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #74808a;
}
.pv-referral-campaigns .card-body {
  padding: 1.25rem 1.35rem 1.35rem;
}
.pv-referral-campaigns__form .pv-deposit-form__submit {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .pv-referral-campaigns__form .pv-deposit-form__submit {
    width: 100%;
  }
}

.pv-profile-alert {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  border-radius: 12px;
}
.pv-profile-email .form-control[readonly] {
  background: #f3f6f4;
  border-color: #e4ebe6;
  color: #3f4b44;
  cursor: default;
}
.pv-profile-email__notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(68, 187, 119, 0.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.1), transparent 55%),
    linear-gradient(180deg, #f4fbf7 0%, #eef8f2 100%);
}
.pv-profile-email__notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(68, 187, 119, 0.22);
}
.pv-profile-email__notice-body strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
  color: #152019;
}
.pv-profile-email__notice-body p {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #5a6760;
}
.pv-profile-email__notice-body p strong {
  display: inline;
  margin: 0;
  color: #107a3a;
}
.pv-profile-email__notice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(68, 187, 119, 0.32);
  color: #107a3a;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.pv-profile-email__notice-link:hover {
  background: #fff;
  border-color: rgba(68, 187, 119, 0.45);
  color: #0a5c2a;
  transform: translateY(-1px);
}
.pv-profile-info__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.pv-profile-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.72rem 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.04);
}
.pv-profile-info__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-profile-info__label i {
  color: #14b8a6;
  font-size: 0.72rem;
}
.pv-profile-info__value {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  color: #152019;
  word-break: break-word;
}
.pv-profile-info__value--code {
  font-family: 'Sora', var(--font-sans);
  letter-spacing: 0.06em;
  color: #107a3a;
}
.pv-profile-wallet {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pv-profile-wallet__row {
  padding: 0.75rem 0.82rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
}
.pv-profile-wallet__row--accent {
  border-color: rgba(45, 212, 191, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(94, 234, 212, 0.18), transparent 55%),
    linear-gradient(180deg, #f3fefb 0%, #e8faf4 100%);
}
.pv-profile-wallet__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-profile-wallet__label i {
  color: #14b8a6;
}
.pv-profile-wallet__value {
  display: block;
  margin-top: 0.15rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: #107a3a;
}
.pv-profile-wallet__hint {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #74808a;
}
.pv-profile-referral__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f4a3a;
}
.pv-profile-referral__link {
  margin-bottom: 0.55rem;
  font-size: 0.74rem;
}
.pv-profile-activity {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pv-profile-activity__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.62rem 0.72rem;
  border-radius: 10px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.04);
}
.pv-profile-activity__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5a6760;
}
.pv-profile-activity__label i {
  color: #14b8a6;
}
.pv-profile-activity__row strong {
  font-size: 0.78rem;
  font-weight: 800;
  color: #152019;
  text-align: right;
}
.pv-profile-activity__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.pv-profile-activity__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  background: rgba(45, 212, 191, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}
.pv-profile-activity__link:hover {
  background: rgba(45, 212, 191, 0.16);
  border-color: rgba(45, 212, 191, 0.4);
  color: #0d9488;
}
.pv-deposit-form .pv-auth-input-wrap {
  position: relative;
}
.pv-deposit-form .pv-auth-input-wrap > i:first-child {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #14b8a6;
  z-index: 2;
  pointer-events: none;
}
.pv-deposit-form .pv-auth-input-wrap .form-control {
  padding-left: 2.35rem;
}
.pv-deposit-form .pv-auth-input-wrap--toggle .form-control {
  padding-right: 2.5rem;
}
@media (max-width: 767.98px) {
  .pv-profile-info__grid {
    grid-template-columns: 1fr;
  }
}

.pv-banner-order-summary {
  margin: 0 0 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
  font-size: 0.82rem;
  color: #5a6760;
}
.pv-banner-order-summary strong {
  color: #107a3a;
}

/* Ad campaigns panel (Buy Ads page) */
.pv-ad-campaigns-panel .card-header.pv-card-head {
  /* uses shared pv-card-head */
}
.pv-ad-campaigns-panel__stats,
.pv-card-head__stats {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.pv-ad-campaigns-panel__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.24rem 0.52rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4ebe6;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #74808a;
  white-space: nowrap;
}
.pv-ad-campaigns-panel__stat strong {
  font-size: 0.74rem;
  font-weight: 800;
  color: #152019;
  font-variant-numeric: tabular-nums;
}
.pv-ad-campaigns-panel__stat--active {
  background: rgba(68, 187, 119, 0.1);
  border-color: rgba(68, 187, 119, 0.28);
  color: #107a3a;
}
.pv-ad-campaigns-panel__stat--active strong {
  color: #107a3a;
}
@media (max-width: 575.98px) {
  .pv-ad-campaigns-panel__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .pv-ad-campaigns-panel__stats {
    width: 100%;
  }
}
.pv-ad-campaign-list {
  display: flex;
  flex-direction: column;
}
.pv-ad-campaign-item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #e8ecea;
  background: #fff;
  transition: background 160ms ease;
}
.pv-ad-campaign-item:last-child {
  border-bottom: none;
}
.pv-ad-campaign-item:hover {
  background: #f8faf9;
}
.pv-ad-campaign-item--active {
  background:
    linear-gradient(180deg, rgba(68, 187, 119, 0.06) 0%, #fff 42%);
}
.pv-ad-campaign-item--active:hover {
  background:
    linear-gradient(180deg, rgba(68, 187, 119, 0.08) 0%, #f8faf9 42%);
}
.pv-ad-campaign-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}
.pv-ad-campaign-item__id {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #74808a;
}
.pv-ad-campaign-item__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  padding: 0.55rem 1.85rem 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #e4ebe6;
  background: linear-gradient(180deg, #fafcfb 0%, #f3f6f4 100%);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.pv-ad-campaign-item__link:hover {
  border-color: rgba(68, 187, 119, 0.35);
  background: linear-gradient(180deg, #f4fbf7 0%, #eaf9f0 100%);
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.1);
}
.pv-ad-campaign-item__host {
  font-size: 0.84rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-ad-campaign-item__url {
  font-size: 0.7rem;
  font-weight: 600;
  color: #74808a;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pv-ad-campaign-item__ext {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  font-size: 0.72rem;
  color: #a8b4ae;
  transition: color 160ms ease, transform 160ms ease;
}
.pv-ad-campaign-item__link:hover .pv-ad-campaign-item__ext {
  color: #44BB77;
  transform: translate(1px, -1px);
}
.pv-ad-campaign-item__progress {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pv-ad-campaign-item__progress-track {
  position: relative;
  height: 0.42rem;
  border-radius: 999px;
  background: #e8eeea;
  overflow: hidden;
}
.pv-ad-campaign-item__progress-fill {
  display: block;
  height: 100%;
  min-width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #44BB77, #2fa866);
  box-shadow: 0 0 8px rgba(68, 187, 119, 0.35);
  transition: width 320ms ease;
}
.pv-ad-campaign-item--expired .pv-ad-campaign-item__progress-fill,
.pv-ad-campaign-item--rejected .pv-ad-campaign-item__progress-fill {
  background: linear-gradient(90deg, #94a3b8, #64748b);
  box-shadow: none;
}
.pv-ad-campaign-item__progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.71rem;
  font-weight: 700;
  color: #5f6d66;
}
.pv-ad-campaign-item__views {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}
.pv-ad-campaign-item__views i {
  color: #44BB77;
  font-size: 0.72rem;
}
.pv-ad-campaign-item__pct {
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  color: #107a3a;
}
.pv-ad-campaign-item--expired .pv-ad-campaign-item__pct,
.pv-ad-campaign-item--rejected .pv-ad-campaign-item__pct {
  color: #64748b;
}
.pv-ad-campaign-item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding-top: 0.1rem;
}
.pv-ad-campaign-item__paid {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  color: #152019;
  font-variant-numeric: tabular-nums;
}
.pv-ad-campaign-item__date {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #8a9690;
  font-variant-numeric: tabular-nums;
}
.pv-ad-campaign-item__date i {
  color: #a8b4ae;
  font-size: 0.66rem;
}
.pv-ad-campaigns-panel__footer {
  padding: 0.75rem 1rem 0.9rem;
  background: #fafbfb;
  border-top: 1px solid #e8ecea;
}
@media (max-width: 575.98px) {
  .pv-ad-campaign-item__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.pv-support-chat {
  --chat-bg: #eef6f2;
  --chat-panel: #ffffff;
  --chat-user: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
  --chat-staff: #ffffff;
  margin-bottom: 0.5rem;
}
.pv-support-chat__alert {
  margin-bottom: 0.75rem;
}
.pv-support-chat__layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  min-height: min(72vh, 680px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background: var(--chat-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 40px rgba(8, 60, 30, 0.1);
}
.pv-support-chat__sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-right: 1px solid rgba(232, 236, 234, 0.95);
  background:
    radial-gradient(circle at 0% 0%, rgba(94, 234, 212, 0.12), transparent 55%),
    linear-gradient(180deg, #f7fdfa 0%, #eef8f3 100%);
}
.pv-support-chat__sidebar-top {
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(232, 236, 234, 0.95);
}
.pv-support-chat__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pv-support-chat__brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border: 1px solid rgba(68, 187, 119, 0.28);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.24);
}
.pv-support-chat__brand strong {
  display: block;
  font-size: 0.95rem;
  color: #152019;
}
.pv-support-chat__brand span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #74808a;
}
.pv-support-chat__threads {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0.55rem;
}
.pv-support-thread {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.72rem 0.75rem;
  margin-bottom: 0.35rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: inherit;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.pv-support-thread:hover {
  background: #fff;
  border-color: rgba(45, 212, 191, 0.28);
  transform: translateX(2px);
  color: inherit;
}
.pv-support-thread--unread {
  background: #fff;
  border-color: rgba(68, 187, 119, 0.24);
  box-shadow: 0 4px 14px rgba(68, 187, 119, 0.1);
}
.pv-support-thread__emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(232, 236, 234, 0.95);
  font-size: 1.15rem;
  line-height: 1;
}
.pv-support-thread__body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  flex: 1;
}
.pv-support-thread__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem;
}
.pv-support-thread__title {
  font-size: 0.84rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.25;
}
.pv-support-thread__time {
  flex-shrink: 0;
  font-size: 0.64rem;
  font-weight: 700;
  color: #74808a;
}
.pv-support-thread__preview {
  font-size: 0.74rem;
  line-height: 1.35;
  color: #5a6760;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv-support-thread__status {
  align-self: flex-start;
  margin-top: 0.15rem;
  font-size: 0.62rem;
}
.pv-support-chat__sidebar-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #74808a;
}
.pv-support-chat__sidebar-empty span {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.pv-support-chat__sidebar-empty p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}
.pv-support-chat__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.1rem 1.15rem 1.15rem;
  background: var(--chat-bg);
}
.pv-support-chat__panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pv-support-chat__panel-emoji {
  font-size: 1.6rem;
  line-height: 1;
}
.pv-support-chat__panel-head strong {
  display: block;
  font-size: 1rem;
  color: #152019;
}
.pv-support-chat__panel-head span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.78rem;
  color: #74808a;
}
.pv-support-subjects {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.pv-support-subject {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 5.1rem;
  padding: 0.65rem 0.45rem;
  border: 1px solid rgba(232, 236, 234, 0.95);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.pv-support-subject:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.12);
}
.pv-support-subject.is-active {
  border-color: rgba(20, 184, 166, 0.45);
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 234, 212, 0.22), transparent 60%),
    linear-gradient(180deg, #f3fefb 0%, #e6faf3 100%);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.16);
}
.pv-support-subject__emoji {
  font-size: 1.65rem;
  line-height: 1;
}
.pv-support-subject__label {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #0f4a3a;
}
.pv-support-subjects--pulse {
  animation: pvSupportPulse 0.9s ease;
}
@keyframes pvSupportPulse {
  0%, 100% { box-shadow: none; }
  35% { box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.22); border-radius: 14px; }
}
.pv-support-chat__compose-box {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  box-shadow: 0 4px 16px rgba(8, 60, 30, 0.06);
}
.pv-support-chat__email {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.76rem;
  color: #74808a;
}
.pv-support-chat__email a {
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}
.pv-support-chat__email a:hover {
  color: #0d9488;
}
.pv-support-chat--thread .pv-support-chat__window {
  display: flex;
  flex-direction: column;
  min-height: min(72vh, 680px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background: var(--chat-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 40px rgba(8, 60, 30, 0.1);
}
.pv-support-chat__topbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(232, 236, 234, 0.95);
  background:
    radial-gradient(circle at 100% 0%, rgba(94, 234, 212, 0.16), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5fbf8 100%);
}
.pv-support-chat__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  color: #0f766e;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}
.pv-support-chat__back:hover {
  background: #f0faf6;
  border-color: rgba(45, 212, 191, 0.35);
  color: #0d9488;
}
.pv-support-chat__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(232, 236, 234, 0.95);
  font-size: 1.2rem;
  line-height: 1;
}
.pv-support-chat__topbar-main {
  min-width: 0;
  flex: 1;
}
.pv-support-chat__topbar-title {
  display: block;
  font-size: 0.92rem;
  color: #152019;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pv-support-chat__topbar-meta {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #74808a;
}
.pv-support-chat__online {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(68, 187, 119, 0.12);
  border: 1px solid rgba(68, 187, 119, 0.24);
  color: #107a3a;
  font-size: 0.95rem;
}
.pv-support-chat__messages {
  flex: 1 1 auto;
  overflow: auto;
  padding: 1rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background:
    radial-gradient(circle at 0% 100%, rgba(94, 234, 212, 0.08), transparent 45%),
    linear-gradient(180deg, #eef6f2 0%, #e8f3ef 100%);
}
.pv-support-chat__day-divider {
  align-self: center;
  margin: 0.15rem 0 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 236, 234, 0.95);
  font-size: 0.64rem;
  font-weight: 700;
  color: #74808a;
}
.pv-support-bubble-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  max-width: 82%;
}
.pv-support-bubble-wrap--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.pv-support-bubble-wrap--staff {
  align-self: flex-start;
}
.pv-support-bubble__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(232, 236, 234, 0.95);
  font-size: 0.9rem;
  line-height: 1;
}
.pv-support-bubble {
  padding: 0.62rem 0.78rem;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(8, 60, 30, 0.06);
  word-break: break-word;
}
.pv-support-bubble--user {
  background: var(--chat-user);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.pv-support-bubble--staff {
  background: var(--chat-staff);
  border: 1px solid rgba(232, 236, 234, 0.95);
  border-bottom-left-radius: 4px;
}
.pv-support-bubble__name {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #107a3a;
}
.pv-support-bubble__text {
  font-size: 0.86rem;
  line-height: 1.5;
}
.pv-support-bubble--user .pv-support-bubble__text {
  color: #fff;
}
.pv-support-bubble--staff .pv-support-bubble__text {
  color: #3f4b44;
}
.pv-support-bubble__time {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.62rem;
  font-weight: 600;
  opacity: 0.78;
  text-align: right;
}
.pv-support-composer {
  padding: 0.75rem 0.85rem;
  border-top: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
}
.pv-support-composer__form {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
}
.pv-support-composer__input {
  flex: 1 1 auto;
  min-height: 2.65rem;
  max-height: 8rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(232, 236, 234, 0.95);
  border-radius: 14px;
  background: #f8fdfa;
  font-size: 0.86rem;
  line-height: 1.45;
  resize: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.pv-support-composer__input:focus {
  outline: none;
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.14);
  background: #fff;
}
.pv-support-composer__input--new {
  min-height: 5.5rem;
}
.pv-support-composer__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border: none;
  border-radius: 14px;
  background: linear-gradient(145deg, #2dd4bf, #14b8a6);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.pv-support-composer__send:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 184, 166, 0.32);
}
.pv-support-composer__send--wide {
  width: 100%;
  height: auto;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
}
.pv-support-composer--closed {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #74808a;
}
.pv-support-composer--closed a {
  font-weight: 800;
  color: #0f766e;
  text-decoration: none;
}
.pv-support-chat__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 2rem;
  text-align: center;
  color: #74808a;
}
.pv-support-chat__empty-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.pv-support-chat__empty strong {
  color: #152019;
}
.pv-support-chat__back-btn {
  margin-top: 0.75rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #2dd4bf, #14b8a6);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .pv-support-chat__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .pv-support-chat__sidebar {
    max-height: 280px;
    border-right: none;
    border-bottom: 1px solid rgba(232, 236, 234, 0.95);
  }
  .pv-support-bubble-wrap {
    max-width: 92%;
  }
}
@media (max-width: 575.98px) {
  .pv-support-subjects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Landing hero */
.pv-hero {
  --pv-green: #11984a;
  --pv-green-dark: #0a5c2a;
  --pv-green-deep: #063d1c;
  --pv-green-hover: #0c6830;
  --pv-green-light: #e6f6ec;
  --pv-charcoal: #152019;
  --pv-text: #3f4b44;
  --pv-muted: #6b7870;
  --pv-border: #cfe3d6;
  --pv-surface: #ffffff;
  --pv-display: 'Sora', 'Source Sans 3', system-ui, sans-serif;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto 1.25rem;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 1.75rem 0 1.6rem;
  background:
    linear-gradient(145deg, #ffffff 0%, #f7fcf9 42%, #f3fafb 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-section);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.pv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.pv-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 12% 20%, rgba(34, 197, 94, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 55% at 88% 30%, rgba(56, 189, 248, 0.11), transparent 58%),
    radial-gradient(ellipse 45% 50% at 70% 90%, rgba(251, 146, 60, 0.08), transparent 55%);
}

.pv-hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 122, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 122, 58, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, #000 15%, transparent 72%);
  opacity: 0.7;
}

.pv-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.pv-hero__orb--1 {
  width: 240px;
  height: 240px;
  top: -90px;
  left: -50px;
  background: radial-gradient(circle, rgba(134, 239, 172, 0.45) 0%, transparent 70%);
  animation: pvOrbDrift 10s ease-in-out infinite;
}

.pv-hero__orb--2 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: -40px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.4) 0%, transparent 70%);
  animation: pvOrbDrift 12s ease-in-out 0.6s infinite reverse;
}

.pv-hero__orb--3 {
  width: 160px;
  height: 160px;
  bottom: -50px;
  left: 38%;
  background: radial-gradient(circle, rgba(253, 186, 116, 0.28) 0%, transparent 70%);
  animation: pvOrbDrift 11s ease-in-out 1.2s infinite;
}

.pv-hero__arc {
  position: absolute;
  width: 280px;
  height: 280px;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  border: 1.5px solid rgba(34, 197, 94, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(255, 255, 255, 0.35);
}

.pv-hero__dots {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 46%;
  bottom: 12%;
  background-image: radial-gradient(circle, rgba(16, 122, 58, 0.16) 1.5px, transparent 1.8px);
  background-size: 14px 14px;
  opacity: 0.55;
  transform: rotate(-12deg);
}

.pv-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: block;
}

.pv-hero__content {
  animation: pvHeroIn 0.7s ease both;
  max-width: none;
  padding: 0.25rem 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pv-hero__brand {
  margin: 0 0 0.65rem;
  line-height: 0;
}

.pv-hero__brand .pv-logo--hero {
  filter: drop-shadow(0 2px 8px rgba(8, 60, 30, 0.12));
}

.pv-hero__title {
  margin: 0 0 0.5rem;
  max-width: none;
  font-family: var(--pv-display);
  font-size: clamp(1.6rem, 2.9vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #152019;
}

.pv-hero__title-pop {
  display: inline-block;
  padding: 0.05em 0.28em 0.08em;
  border-radius: 0.35em;
  color: #fff;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 45%, #f59e0b 100%);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
  -webkit-text-fill-color: #fff;
}

.pv-hero__lead {
  margin: 0 0 0.55rem;
  max-width: 22rem;
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  line-height: 1.35;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: -0.01em;
}

.pv-hero__note {
  margin: 0 0 1.25rem;
  max-width: 28rem;
  font-size: 0.94rem;
  line-height: 1.5;
  color: #3f4b44;
}

.pv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.pv-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.6rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pv-hero__btn svg { width: 14px; height: 14px; }

.pv-hero__btn:focus-visible {
  outline: 2px solid #11984a;
  outline-offset: 3px;
}

.pv-hero__btn--primary {
  background: linear-gradient(145deg, #22c55e 0%, #11984a 48%, #0a5c2a 100%);
  color: #fff;
  box-shadow:
    0 10px 22px rgba(17, 152, 74, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.pv-hero__btn--primary:hover {
  background: linear-gradient(145deg, #16a34a 0%, #0c6830 55%, #063d1c 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 152, 74, 0.38);
}

.pv-hero__btn--secondary {
  background: linear-gradient(145deg, #fb923c, #f97316);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.28);
}

.pv-hero__btn--secondary:hover {
  background: linear-gradient(145deg, #f97316, #ea580c);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.34);
}

.pv-hero__btn--login {
  background: #e0f2fe;
  color: #0369a1;
  border-color: #bae6fd;
  min-height: 44px;
  padding-inline: 0.95rem;
  font-weight: 700;
  box-shadow: none;
}

.pv-hero__btn--login:hover {
  background: #bae6fd;
  color: #075985;
  transform: translateY(-1px);
  text-decoration: none;
}

.pv-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pv-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 34px;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.pv-hero__chip-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pv-hero__chip-ico svg {
  width: 12px;
  height: 12px;
}

.pv-hero__chip--green {
  color: #166534;
  background: #dcfce7;
  border-color: #bbf7d0;
}
.pv-hero__chip--green .pv-hero__chip-ico {
  color: #fff;
  background: linear-gradient(145deg, #22c55e, #15803d);
}

.pv-hero__chip--blue {
  color: #075985;
  background: #e0f2fe;
  border-color: #bae6fd;
}
.pv-hero__chip--blue .pv-hero__chip-ico {
  color: #fff;
  background: linear-gradient(145deg, #38bdf8, #0284c7);
}

.pv-hero__chip--orange {
  color: #9a3412;
  background: #ffedd5;
  border-color: #fed7aa;
}
.pv-hero__chip--orange .pv-hero__chip-ico {
  color: #fff;
  background: linear-gradient(145deg, #fb923c, #ea580c);
}

.pv-hero__visual {
  position: relative;
  animation: pvHeroIn 0.75s ease 0.1s both;
  min-width: 0;
  display: block;
  align-self: center;
  overflow: hidden;
  border-radius: 14px;
}

.pv-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  object-fit: unset;
}
@keyframes pvHeroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pvOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, 8px) scale(1.05); }
}

@media (max-width: 991.98px) {
  .pv-hero { min-height: 0; padding: 1.6rem 0 1.4rem; }
  .pv-hero__title { font-size: clamp(1.4rem, 3.4vw, 1.9rem); }
}

@media (max-width: 767.98px) {
  .pv-hero { padding: 1.35rem 0 1.25rem; }
  .pv-hero__container {
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }
  .pv-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
  }
  .pv-hero__brand,
  .pv-hero__title,
  .pv-hero__lead,
  .pv-hero__note {
    max-width: 22rem;
  }
  .pv-hero__arc { opacity: 0.55; }
  .pv-hero__dots { display: none; }
  .pv-hero__actions { justify-content: center; width: 100%; }
  .pv-hero__trust { justify-content: center; }
  .pv-hero__visual {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pv-hero__actions { flex-direction: column; }
  .pv-hero__btn { width: 100%; }
  .pv-hero__title { font-size: clamp(1.3rem, 6.5vw, 1.7rem); }
}

@media (prefers-reduced-motion: reduce) {
  .pv-hero__content,
  .pv-hero__visual,
  .pv-hero__orb {
    animation: none !important;
  }
  .pv-hero__btn,
  .pv-hero__btn--primary:hover,
  .pv-hero__btn--secondary:hover,
  .pv-hero__btn--login:hover {
    transition: none;
    transform: none;
  }
}

/* Top 9 earners under hero: column flow 1 4 7 / 2 5 8 / 3 6 9 */
.pv-top9 {
  margin: 0 0 1.25rem;
  padding: 0;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-section);
  overflow: hidden;
}

.pv-top9__head {
  margin: 0;
  padding: 1.35rem 1.25rem 1.05rem;
  text-align: center;
  border-bottom: 1px solid #e8ecef;
  background:
    radial-gradient(ellipse 55% 120% at 50% 0%, rgba(15, 122, 56, 0.06), transparent 70%),
    #fff;
}

.pv-top9__head h2 {
  margin: 0 0 0.35rem;
  font-family: 'Sora', 'Source Sans 3', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: #152019;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.pv-top9__head h2 span {
  color: #44BB77;
}

.pv-top9__head h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 0.65rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #152019, #44BB77);
}

.pv-top9__head p {
  margin: 0.55rem 0 0;
  color: #6b7580;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.pv-top9__grid {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: column;
  gap: 0.55rem 0.75rem;
  padding: 1.1rem 1.2rem 1.2rem;
}

.pv-top9__item {
  display: grid;
  grid-template-columns: 1.35rem auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.8rem;
  border-radius: 12px;
  background: #f7f8f9;
  border: 1px solid #e6eaed;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pv-top9__item:hover {
  background: #fff;
  border-color: #cfe3d6;
  box-shadow: 0 6px 16px rgba(8, 60, 30, 0.08);
}

.pv-top9__item.is-top {
  background: linear-gradient(180deg, #f4fbf6 0%, #eef8f1 100%);
  border-color: #c9e6d4;
}

.pv-top9__item.is-top .pv-top9__rank {
  color: #0a5c2a;
}

.pv-top9__rank {
  min-width: 1.2rem;
  color: #8a939c;
  font-size: 0.88rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
  line-height: 1;
}

.pv-top9__flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.pv-top9__user {
  font-weight: 700;
  color: #1a2228;
  font-size: 0.9rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pv-top9__amount {
  font-weight: 800;
  color: #0a5c2a;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.pv-top9__foot {
  display: flex;
  justify-content: center;
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid #e8ecef;
  background: linear-gradient(180deg, #fafcfb 0%, #f4f8f5 100%);
}

.pv-top9__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  min-width: min(100%, 240px);
  margin-top: 1rem;
  padding: 0.55rem 1.15rem;
  border-radius: 11px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.24);
  transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pv-top9__btn svg {
  width: 13px;
  height: 13px;
}

.pv-top9__btn:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(68, 187, 119, 0.3);
}

.pv-top9__btn:focus-visible {
  outline: 2px solid #44BB77;
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  .pv-top9__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
}

/* Ways section: modern cards + SVG icons + CTA buttons */
.pv-ways {
  margin: 0 0 1.75rem;
  padding: 1.85rem 1.35rem 1.5rem;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at top left, rgba(32, 184, 90, 0.07), transparent 45%),
    linear-gradient(180deg, #fcfdfc 0%, #f4f7f5 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-section);
}

.pv-ways__head {
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.pv-ways__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border-green);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pv-ways__head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--color-heading);
  line-height: 1.15;
}

.pv-ways__head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.pv-ways__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.35rem 1.2rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(221, 228, 224, 0.95);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(20, 40, 30, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pv-ways__card:hover {
  border-color: #c9edd6;
  box-shadow: 0 14px 30px rgba(20, 40, 30, 0.07);
  transform: translateY(-4px);
}

.pv-ways__card--accent {
  background: linear-gradient(180deg, #ffffff 0%, #f3faf6 100%);
  border-color: #c9edd6;
}

.pv-ways__icon-wrap {
  margin-bottom: 0.15rem;
}

.pv-ways__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pv-ways__icon svg {
  width: 26px;
  height: 26px;
}

.pv-ways__icon--green {
  color: #107a3a;
  background: linear-gradient(145deg, #eaf9f0, #d8f3e3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 16px rgba(32, 184, 90, 0.12);
}

.pv-ways__icon--blue {
  color: #1a6fad;
  background: linear-gradient(145deg, #e8f4fc, #d5ebf9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 8px 16px rgba(35, 136, 216, 0.12);
}

.pv-ways__icon--dark {
  color: #fff;
  background: linear-gradient(145deg, #2c333b, #20252b);
  box-shadow: 0 8px 16px rgba(32, 37, 43, 0.18);
}

.pv-ways__card:hover .pv-ways__icon {
  transform: scale(1.05);
}

.pv-ways__card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-heading);
}

.pv-ways__card > p {
  margin: 0;
  flex: 1;
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pv-ways__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 1rem;
  margin-top: 0.35rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pv-ways__btn svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.pv-ways__btn:hover {
  transform: translateY(-1px);
}

.pv-ways__btn:hover svg {
  transform: translateX(2px);
}

.pv-ways__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.pv-ways__btn--green {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(32, 184, 90, 0.22);
}

.pv-ways__btn--green:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.pv-ways__btn--blue {
  background: #2388d8;
  color: #fff;
  box-shadow: 0 6px 14px rgba(35, 136, 216, 0.22);
}

.pv-ways__btn--blue:hover {
  background: #1a6fad;
  color: #fff;
}

.pv-ways__btn--dark {
  background: #252a30;
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 42, 48, 0.18);
}

.pv-ways__btn--dark:hover {
  background: #1a1e23;
  color: #fff;
}

@media (max-width: 991.98px) {
  .pv-ways {
    padding: 1.4rem 1rem 1.15rem;
  }
  .pv-ways__rail {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .pv-ways__card {
    padding: 1.15rem 1.05rem 1.05rem;
  }
  .pv-ways__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pv-ways__card,
  .pv-ways__icon,
  .pv-ways__btn,
  .pv-ways__btn svg {
    transition: none;
  }
  .pv-ways__card:hover,
  .pv-ways__card:hover .pv-ways__icon,
  .pv-ways__btn:hover,
  .pv-ways__btn:hover svg {
    transform: none;
  }
}

/* Home lower panels: levels, steps, news, earners, quick links */
.pv-home-panels {
  --hp-green: #0f7a38;
  --hp-green-mid: #0c6830;
  --hp-green-dark: #084d23;
  --hp-green-soft: #e4f2ea;
  --hp-green-line: #b7dbc6;
  --hp-head-bg: #eef0f2;
  --hp-head-border: #e2e5e8;
  --hp-surface: #f7f8f9;

  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.85fr);
  gap: 1.1rem;
  margin-bottom: 0.5rem;
}

.pv-home-panels__main,
.pv-home-panels__side {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}

.pv-panel {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-section);
}

.pv-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem 1.2rem;
  background: transparent;
  border-bottom: 3px solid #d8dde2;
}

.pv-panel__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.pv-panel__title h2 {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a2228;
}

.pv-panel__title p {
  margin: 0;
  color: #6b7580;
  font-size: 0.82rem;
  line-height: 1.4;
}

.pv-panel__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.pv-panel__icon svg {
  width: 20px;
  height: 20px;
}

.pv-panel__icon i {
  font-size: 1.15rem;
  line-height: 1;
}

.pv-panel__icon--green {
  color: #fff;
  background: linear-gradient(145deg, var(--hp-green), var(--hp-green-dark));
}

.pv-panel__icon--blue {
  color: #fff;
  background: linear-gradient(145deg, #1f6fa8, #15557f);
}

.pv-panel__icon--dark {
  color: #fff;
  background: linear-gradient(145deg, #2f373f, #1c2228);
}

.pv-panel__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--hp-green), var(--hp-green-dark));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  box-shadow: 0 8px 18px rgba(8, 77, 35, 0.22);
  transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pv-panel__btn svg {
  width: 13px;
  height: 13px;
}

.pv-panel__btn:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(8, 77, 35, 0.28);
}

.pv-panel__btn--ghost {
  background: #fff;
  color: var(--hp-green-dark);
  border: 1px solid var(--hp-green-line);
  box-shadow: none;
  filter: none;
}

.pv-panel__btn--ghost:hover {
  background: var(--hp-green-soft);
  color: var(--hp-green-dark);
  filter: none;
  box-shadow: none;
}

.pv-panel__btn:focus-visible {
  outline: 2px solid var(--hp-green);
  outline-offset: 2px;
}

.pv-levels,
.pv-steps,
.pv-news,
.pv-earners {
  padding: 1rem 1.15rem 1.15rem;
}

/* Referral panel: compact hero-style card */
.pv-ref {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(145deg, #f0fdf4 0%, #f7fcf9 38%, #eff8ff 100%);
  border: 1px solid rgba(68, 187, 119, 0.22);
}

.pv-ref__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.pv-ref__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.pv-ref__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(68, 187, 119, 0.28), transparent 58%),
    radial-gradient(ellipse 65% 50% at 0% 100%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 40% at 50% 50%, rgba(251, 146, 60, 0.12), transparent 50%);
}

.pv-ref__orb--1 {
  width: 100px;
  height: 100px;
  top: -35px;
  right: -25px;
  background: radial-gradient(circle, rgba(68, 187, 119, 0.55) 0%, transparent 70%);
}

.pv-ref__orb--2 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: -15px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45) 0%, transparent 70%);
}

.pv-ref__inner {
  position: relative;
  z-index: 1;
  padding: 0.8rem 0.85rem 0.85rem;
}

.pv-ref__head {
  margin: 0 0 0.55rem;
}

.pv-ref__head h2 {
  margin: 0 0 0.2rem;
  font-family: 'Sora', 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  color: #152019;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pv-ref__head h2 span {
  color: #44BB77;
}

.pv-ref__head p {
  margin: 0;
  color: #4a5a52;
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 600;
}

.pv-ref__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  padding: 0;
  list-style: none;
}

.pv-ref__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.25rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid transparent;
}

.pv-ref__step--1 {
  background: linear-gradient(180deg, rgba(68, 187, 119, 0.22), rgba(68, 187, 119, 0.08));
  border-color: rgba(68, 187, 119, 0.35);
}

.pv-ref__step--2 {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.07));
  border-color: rgba(56, 189, 248, 0.3);
}

.pv-ref__step--3 {
  background: linear-gradient(180deg, rgba(251, 146, 60, 0.2), rgba(251, 146, 60, 0.07));
  border-color: rgba(251, 146, 60, 0.32);
}

.pv-ref__step-num {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
}

.pv-ref__step--1 .pv-ref__step-num { background: #44BB77; }
.pv-ref__step--2 .pv-ref__step-num { background: #2388d8; }
.pv-ref__step--3 .pv-ref__step-num { background: #f97316; }

.pv-ref__step-text {
  font-size: 0.66rem;
  font-weight: 700;
  color: #152019;
  line-height: 1.2;
}

.pv-ref__earn {
  margin: 0 0 0.55rem;
}

.pv-ref__block {
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.pv-ref__block--system {
  background: linear-gradient(145deg, rgba(68, 187, 119, 0.18), rgba(68, 187, 119, 0.06));
  border-color: rgba(68, 187, 119, 0.32);
}

.pv-ref__block h3 {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pv-ref__block--system h3 { color: #2d9960; }

.pv-ref__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
}

.pv-ref__tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  padding: 0.28rem 0.15rem;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(68, 187, 119, 0.25);
}

.pv-ref__tier span {
  font-size: 0.55rem;
  font-weight: 800;
  color: #6b7870;
  text-transform: uppercase;
}

.pv-ref__tier strong {
  font-size: 0.78rem;
  font-weight: 800;
  color: #44BB77;
  font-variant-numeric: tabular-nums;
}

.pv-ref__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 36px;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  color: #fff;
  background: linear-gradient(90deg, #44BB77, #2fa866 55%, #2388d8);
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.3);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.pv-ref__cta svg {
  width: 12px;
  height: 12px;
  transition: transform 160ms ease;
}

.pv-ref__cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(68, 187, 119, 0.38);
  filter: brightness(1.04);
}

.pv-ref__cta:hover svg {
  transform: translateX(2px);
}

.pv-ref__cta:focus-visible {
  outline: 2px solid #44BB77;
  outline-offset: 2px;
}

.pv-quick {
  margin: 1rem 1.15rem 1.15rem;
}

.pv-levels {
  border: 1px solid #e4e9e6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.pv-levels__head,
.pv-levels__row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0.95rem;
}

.pv-levels__head {
  background: var(--hp-surface);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #74808a;
  border-bottom: 1px solid #e8ecea;
}

.pv-levels__head span:nth-child(2),
.pv-levels__head span:nth-child(3) {
  text-align: center;
}

.pv-levels__row {
  border-top: 1px solid #edf1ef;
  font-size: 0.9rem;
  transition: background 140ms ease;
}

.pv-levels__row:hover {
  background: #f5faf7;
}

.pv-levels__row.is-current {
  background: linear-gradient(90deg, #dff3e7 0%, #eef8f2 100%);
  box-shadow: inset 3px 0 0 var(--hp-green);
}

.pv-levels__level {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pv-levels__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.65rem;
  padding: 0.32rem 0.55rem;
  border-radius: 9px;
  background: linear-gradient(145deg, #152019, #2a3530);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pv-levels__row.is-current .pv-levels__badge {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 4px 10px rgba(68, 187, 119, 0.25);
}

.pv-levels__you {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--hp-green-dark);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pv-levels__xp {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #1f2a30;
  text-align: center;
}

.pv-levels__bonus {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  color: #2d9960;
  background: linear-gradient(145deg, rgba(68, 187, 119, 0.2), rgba(68, 187, 119, 0.08));
  border: 1px solid rgba(68, 187, 119, 0.35);
  box-shadow: 0 2px 8px rgba(68, 187, 119, 0.12);
}

.pv-levels__row.is-current .pv-levels__bonus {
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.3);
}

.pv-levels__row:hover .pv-levels__bonus {
  border-color: rgba(68, 187, 119, 0.5);
  box-shadow: 0 3px 10px rgba(68, 187, 119, 0.18);
}

/* ========== XP LEVELS PAGE (member) ========== */
.pv-level-progress__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.pv-level-progress__title {
  font-size: 1rem;
  line-height: 1.35;
  color: #152019;
}
.pv-level-progress__title strong {
  font-weight: 800;
}
.pv-level-progress__meta {
  font-size: 0.84rem;
  font-weight: 600;
  color: #2d9960;
}
.pv-level-progress__pct {
  font-family: 'Sora', var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #44BB77;
}
.pv-levels-card {
  padding: 0.35rem 0.35rem 0.5rem;
}
.pv-levels--member {
  margin: 0;
  border-radius: 12px;
}
.pv-levels--member .pv-levels__head,
.pv-levels--member .pv-levels__row {
  padding: 0.82rem 1rem;
}
.pv-level-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.pv-level-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pv-level-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.pv-level-steps__item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.88rem;
  color: #152019;
}
.pv-level-steps__item p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #74808a;
}
@media (max-width: 575.98px) {
  .pv-level-progress__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== PAYMENT PROOFS PAGE ========== */
.pv-proofs-page {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pv-proofs-page__hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(68, 187, 119, 0.22);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(68, 187, 119, 0.14), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  box-shadow: var(--shadow-section);
}

.pv-proofs-page__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pv-proofs-page__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.pv-proofs-page__orb--1 {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -20px;
  background: rgba(68, 187, 119, 0.35);
}

.pv-proofs-page__orb--2 {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: 12%;
  background: rgba(15, 122, 56, 0.15);
}

.pv-proofs-page__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1.35rem 1.4rem;
}

.pv-proofs-page__hero-main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: min(100%, 520px);
}

.pv-proofs-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 8px 20px rgba(68, 187, 119, 0.28);
}

.pv-proofs-page__icon svg {
  width: 26px;
  height: 26px;
}

.pv-proofs-page__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #152019 !important;
  text-shadow: none !important;
}

.pv-proofs-page__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #5a6760;
}

.pv-proofs-page__lead strong {
  color: #2d9960;
  font-weight: 700;
}

.pv-proofs-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.pv-proofs-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4ebe6;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1f2a30;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
}

.pv-proofs-page__chip i {
  color: #44BB77;
  font-size: 0.9rem;
}

.pv-proofs-page__chip--accent {
  background: linear-gradient(145deg, #152019, #2a3530);
  border-color: transparent;
  color: #fff;
}

.pv-proofs-page__chip--accent i {
  color: #ffd166;
}

.pv-proofs-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
  gap: 1.1rem;
  align-items: start;
}

.pv-proofs-page__panel {
  margin: 0;
}

.pv-proofs-page__panel .pv-panel__head {
  border-bottom-color: #e4ebe6;
}

.pv-proofs {
  margin: 0 1.15rem 1.15rem;
  border: 1px solid #e4e9e6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.pv-proofs__head,
.pv-proofs__row {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 0.9fr 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.8rem 1rem;
}

.pv-proofs__head {
  background: #f7f8f9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #74808a;
  border-bottom: 1px solid #e8ecea;
}

.pv-proofs__head span:nth-child(3),
.pv-proofs__head span:nth-child(4) {
  text-align: center;
}

.pv-proofs__row {
  border-top: 1px solid #edf1ef;
  font-size: 0.88rem;
  transition: background 140ms ease;
}

.pv-proofs__row:hover {
  background: #f5faf7;
}

.pv-proofs__time {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.pv-proofs__date {
  font-weight: 700;
  color: #1f2a30;
  font-variant-numeric: tabular-nums;
  font-size: 0.84rem;
}

.pv-proofs__clock {
  font-size: 0.74rem;
  font-weight: 600;
  color: #74808a;
  font-variant-numeric: tabular-nums;
}

.pv-proofs__user {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.pv-proofs__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.pv-proofs__name {
  font-weight: 700;
  color: #152019;
  font-variant-numeric: tabular-nums;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pv-proofs__amount {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  font-size: 0.82rem;
  font-weight: 800;
  color: #2d9960;
  background: linear-gradient(145deg, rgba(68, 187, 119, 0.2), rgba(68, 187, 119, 0.08));
  border: 1px solid rgba(68, 187, 119, 0.35);
  box-shadow: 0 2px 8px rgba(68, 187, 119, 0.12);
}

.pv-proofs__row:hover .pv-proofs__amount {
  border-color: rgba(68, 187, 119, 0.5);
  box-shadow: 0 3px 10px rgba(68, 187, 119, 0.18);
}

.pv-proofs__method {
  justify-self: center;
  min-width: 0;
}

.pv-proofs__method-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  background: #eef0f2;
  border: 1px solid #dde2e6;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4a5a52;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-proofs-page__empty {
  margin: 0 1.15rem 1.15rem;
}

.pv-proofs-page__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.pv-proofs-page__card {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4ebe6;
  box-shadow: 0 4px 16px rgba(8, 60, 30, 0.05);
}

.pv-proofs-page__card-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 800;
  color: #152019;
}

.pv-proofs-page__card-title i {
  color: #44BB77;
}

.pv-proofs-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pv-proofs-page__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #5a6760;
}

.pv-proofs-page__list i {
  color: #44BB77;
  font-size: 0.95rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.pv-proofs-page__methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pv-proofs-page__method-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4a5a52;
}

.pv-proofs-page__side .pv-panel-cta {
  margin: 0;
}

@media (max-width: 991.98px) {
  .pv-proofs-page__grid {
    grid-template-columns: 1fr;
  }

  .pv-proofs-page__hero-inner {
    flex-direction: column;
  }

  .pv-proofs-page__chips {
    width: 100%;
  }

  .pv-proofs__head,
  .pv-proofs__row {
    grid-template-columns: 1fr 1fr;
  }

  .pv-proofs__head span:nth-child(1),
  .pv-proofs__time {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .pv-proofs {
    margin: 0 0.85rem 0.85rem;
  }

  .pv-proofs-page__pagination {
    padding: 0 0.85rem 0.85rem;
  }

  .pv-proofs__head,
  .pv-proofs__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .pv-proofs__head {
    display: none;
  }

  .pv-proofs__row {
    padding: 0.85rem;
  }

  .pv-proofs__amount,
  .pv-proofs__method {
    justify-self: start;
  }
}

/* ========== NEWS PAGE ========== */
.pv-news-page {
  --hp-green: #0f7a38;
  --hp-green-mid: #0c6830;
  --hp-green-dark: #084d23;
  --hp-green-soft: #e4f2ea;
  --hp-green-line: #b7dbc6;
  --hp-surface: #f7f8f9;

  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pv-news-page__hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(68, 187, 119, 0.22);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(68, 187, 119, 0.14), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
  box-shadow: var(--shadow-section);
}

.pv-news-page__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pv-news-page__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.pv-news-page__orb--1 {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -20px;
  background: rgba(68, 187, 119, 0.35);
}

.pv-news-page__orb--2 {
  width: 120px;
  height: 120px;
  bottom: -40px;
  left: 12%;
  background: rgba(15, 122, 56, 0.15);
}

.pv-news-page__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1.35rem 1.4rem;
}

.pv-news-page__hero-inner--article {
  padding-bottom: 1.5rem;
}

.pv-news-page__hero-main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: min(100%, 640px);
}

.pv-news-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 8px 20px rgba(68, 187, 119, 0.28);
}

.pv-news-page__icon svg {
  width: 26px;
  height: 26px;
}

.pv-news-page__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #152019 !important;
  text-shadow: none !important;
  line-height: 1.2;
}

.pv-news-page--article .pv-news-page__title {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin-bottom: 0;
}

.pv-news-page__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #5a6760;
}

.pv-news-page__lead strong {
  color: #2d9960;
  font-weight: 700;
}

.pv-news-page__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #74808a;
}

.pv-news-page__meta i {
  color: #44BB77;
}

.pv-news-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.pv-news-page__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4ebe6;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1f2a30;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.05);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a.pv-news-page__chip:hover {
  color: #1f2a30;
  background: #f4fbf7;
  border-color: rgba(68, 187, 119, 0.35);
  transform: translateY(-1px);
}

.pv-news-page__chip i {
  color: #44BB77;
  font-size: 0.9rem;
}

.pv-news-page__chip--accent {
  background: linear-gradient(145deg, #152019, #2a3530);
  border-color: transparent;
  color: #fff;
}

.pv-news-page__chip--accent i {
  color: #ffd166;
}

.pv-news-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(68, 187, 119, 0.25);
  color: #152019;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.06);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pv-news-page__back:hover {
  color: #152019;
  background: #f4fbf7;
  border-color: rgba(68, 187, 119, 0.45);
  transform: translateY(-1px);
}

.pv-news-page__back--top {
  margin-bottom: -0.35rem;
}

.pv-news-page__alert {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pv-news-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
  gap: 1.1rem;
  align-items: start;
}

.pv-news-page__panel {
  margin: 0;
}

.pv-news-page__panel .pv-panel__head {
  border-bottom-color: #e4ebe6;
}

.pv-news-page__panel .pv-panel__icon {
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.pv-news-page__panel .pv-panel__icon--green {
  color: #44BB77;
  background: none;
}

.pv-news-page__panel .pv-panel__icon i {
  font-size: 1.4rem;
}

.pv-news--page {
  margin: 0 1.15rem 1.15rem;
  gap: 0.65rem;
}

.pv-news__item--page {
  align-items: flex-start;
  padding: 1rem 1.05rem;
  background: #fff;
}

.pv-news__item-main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.pv-news__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(68, 187, 119, 0.18), rgba(68, 187, 119, 0.08));
  border: 1px solid rgba(68, 187, 119, 0.25);
  color: #2d9960;
  font-size: 0.95rem;
}

.pv-news__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.pv-news__excerpt {
  display: block;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #5a6760;
}

.pv-news__item-end {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

.pv-news__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: #eef0f2;
  color: #4a5a52;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.pv-news__arrow svg {
  width: 12px;
  height: 12px;
}

.pv-news__item--page:hover .pv-news__arrow {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  transform: translateX(2px);
}

.pv-news--compact {
  gap: 0.45rem;
}

.pv-news--compact .pv-news__item {
  padding: 0.75rem 0.85rem;
  background: #fff;
}

.pv-news-page__empty {
  margin: 0 1.15rem 1.15rem;
}

.pv-news-page__article-panel {
  border-color: rgba(68, 187, 119, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #fafcfb 100%);
}

.pv-news-page__article-head {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(68, 187, 119, 0.14);
  background:
    radial-gradient(ellipse 75% 90% at 100% 0%, rgba(68, 187, 119, 0.12), transparent 58%),
    linear-gradient(135deg, #ffffff 0%, #f4fbf7 100%);
}

.pv-news-page__article-head-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pv-news-page__article-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.55;
}

.pv-news-page__article-orb--1 {
  width: 160px;
  height: 160px;
  top: -70px;
  right: -30px;
  background: rgba(68, 187, 119, 0.32);
}

.pv-news-page__article-orb--2 {
  width: 110px;
  height: 110px;
  bottom: -45px;
  left: 8%;
  background: rgba(15, 122, 56, 0.14);
}

.pv-news-page__article-head-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.35rem 1.45rem 1.25rem;
}

.pv-news-page__article-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(68, 187, 119, 0.28);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2d9960;
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.06);
}

.pv-news-page__article-badge i {
  font-size: 0.72rem;
}

.pv-news-page__article-title {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: #152019;
}

.pv-news-page__article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pv-news-page__article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e4ebe6;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5a6760;
}

.pv-news-page__article-meta-item i {
  color: #44BB77;
  font-size: 0.82rem;
}

.pv-news-page__article-body {
  padding: 1.15rem 1.15rem 1.1rem;
}

.pv-news-page__article-content {
  position: relative;
  padding: 1.25rem 1.35rem 1.2rem 1.5rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eeea;
  box-shadow: inset 4px 0 0 #44BB77, 0 4px 18px rgba(8, 60, 30, 0.05);
}

.pv-news-page__article-content::before {
  content: "\201C";
  position: absolute;
  top: 0.15rem;
  left: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(68, 187, 119, 0.22);
  pointer-events: none;
}

.pv-news-page__body {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.78;
  color: #243029;
}

.pv-news-page__article-panel .pv-news-page__body {
  font-size: 1.02rem;
}

.pv-news-page__body p {
  margin-bottom: 0.85rem;
}

.pv-news-page__article-foot {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.95rem;
  padding-top: 0.15rem;
}

.pv-news-page__article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
  color: #152019;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pv-news-page__article-back:hover {
  color: #152019;
  background: var(--hp-green-soft, #e4f2ea);
  border-color: var(--hp-green-line, #b7dbc6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.08);
}

.pv-news-page__article-back i {
  color: #44BB77;
}

.pv-news-page__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.pv-news-page__card {
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4ebe6;
  box-shadow: 0 4px 16px rgba(8, 60, 30, 0.05);
}

.pv-news-page__card-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 800;
  color: #152019;
}

.pv-news-page__card-title i {
  color: #44BB77;
}

.pv-news-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pv-news-page__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #5a6760;
}

.pv-news-page__list i {
  color: #44BB77;
  font-size: 0.95rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.pv-news-page__links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pv-news-page__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: #f3f6f4;
  border: 1px solid #e4ebe6;
  color: #152019;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pv-news-page__links a:hover {
  background: var(--hp-green-soft);
  border-color: var(--hp-green-line);
  color: #152019;
  transform: translateY(-1px);
}

.pv-news-page__links a i {
  color: #44BB77;
}

.pv-news-page__side .pv-panel-cta {
  margin: 0;
}

@media (max-width: 991.98px) {
  .pv-news-page__grid {
    grid-template-columns: 1fr;
  }

  .pv-news-page__hero-inner {
    flex-direction: column;
  }

  .pv-news-page__chips {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .pv-news--page {
    margin: 0 0.85rem 0.85rem;
  }

  .pv-news-page__empty {
    margin: 0 0.85rem 0.85rem;
  }

  .pv-news__item--page {
    flex-direction: column;
    gap: 0.65rem;
  }

  .pv-news__item-end {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .pv-news-page__article-head-inner {
    padding: 1.1rem 1.05rem 1rem;
  }

  .pv-news-page__article-body {
    padding: 0.85rem;
  }

  .pv-news-page__article-content {
    padding: 1rem 0.95rem 0.95rem 1.1rem;
  }
}

.pv-panel-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin-top: 0;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(68, 187, 119, 0.22);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(68, 187, 119, 0.1), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6fcf9 100%);
  box-shadow: 0 4px 14px rgba(68, 187, 119, 0.08);
}

.pv-panel-cta__text {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3f4b44;
  line-height: 1.45;
  text-align: center;
}

.pv-panel-cta__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.pv-panel-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border: 1px solid transparent;
  box-shadow: 0 6px 14px rgba(68, 187, 119, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
}

.pv-panel-cta__btn--ghost {
  color: #152019;
  background: #fff;
  border-color: rgba(68, 187, 119, 0.35);
  box-shadow: 0 2px 8px rgba(68, 187, 119, 0.08);
}

.pv-panel-cta__btn svg {
  width: 12px;
  height: 12px;
}

.pv-panel-cta__btn:hover {
  color: #fff;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.28);
}

.pv-panel-cta__btn--ghost:hover {
  color: #152019;
  background: #f4fbf7;
  filter: none;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.12);
}

.pv-panel-cta__btn:focus-visible {
  outline: 2px solid #44BB77;
  outline-offset: 2px;
}

.pv-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.pv-steps__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8faf9 0%, #f3f6f4 100%);
  border: 1px solid #e3e9e5;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pv-steps__item:hover {
  border-color: var(--hp-green-line);
  box-shadow: 0 8px 18px rgba(8, 77, 35, 0.07);
  transform: translateY(-1px);
}

.pv-steps__num {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--hp-green), var(--hp-green-dark));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 6px 12px rgba(8, 77, 35, 0.2);
}

.pv-steps__item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1a2228;
}

.pv-steps__item p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #556068;
}

.pv-news {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pv-news__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 13px;
  border: 1px solid #e4e9e6;
  background: var(--hp-surface);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pv-news__item:hover {
  background: var(--hp-green-soft);
  border-color: var(--hp-green-line);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(8, 77, 35, 0.06);
}

.pv-news__title {
  font-weight: 700;
  color: #1a2228;
  font-size: 0.92rem;
}

.pv-news__date {
  color: #74808a;
  font-size: 0.74rem;
  white-space: nowrap;
}

.pv-earners {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pv-earners__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 13px;
  background: var(--hp-surface);
  border: 1px solid #e4e9e6;
}

.pv-earners__rank {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2a3238;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.pv-earners__row:nth-child(1) .pv-earners__rank {
  background: linear-gradient(145deg, var(--hp-green), var(--hp-green-dark));
}
.pv-earners__row:nth-child(2) .pv-earners__rank { background: #1f6fa8; }
.pv-earners__row:nth-child(3) .pv-earners__rank { background: #5b6570; }

.pv-earners__user {
  font-weight: 700;
  color: #1a2228;
  font-size: 0.9rem;
}

.pv-earners__amount {
  font-weight: 800;
  color: var(--hp-green-dark);
  font-variant-numeric: tabular-nums;
}

.pv-quick {
  display: grid;
  gap: 0.55rem;
}

.pv-quick__btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.6rem 0.85rem;
  border-radius: 13px;
  border: 1px solid #e4e9e6;
  background: #fff;
  color: #1a2228;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.pv-quick__ico {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hp-green-soft);
  color: var(--hp-green-dark);
  flex-shrink: 0;
}

.pv-quick__ico svg {
  width: 16px;
  height: 16px;
}

.pv-quick__btn:hover {
  background: #f4faf6;
  border-color: var(--hp-green-line);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(8, 77, 35, 0.08);
  color: #1a2228;
}

.pv-quick__btn--primary {
  background: linear-gradient(145deg, var(--hp-green), var(--hp-green-dark));
  border-color: var(--hp-green-dark);
  color: #fff;
  box-shadow: 0 10px 20px rgba(8, 77, 35, 0.24);
}

.pv-quick__btn--primary .pv-quick__ico {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.pv-quick__btn--primary:hover {
  background: linear-gradient(145deg, var(--hp-green-mid), #063d1c);
  border-color: #063d1c;
  color: #fff;
}

.pv-quick__btn:focus-visible {
  outline: 2px solid var(--hp-green);
  outline-offset: 2px;
}

@media (max-width: 991.98px) {
  .pv-home-panels {
    grid-template-columns: 1fr;
  }
  .pv-panel__head {
    flex-direction: column;
    align-items: stretch;
  }
  .pv-panel__btn {
    align-self: stretch;
    justify-content: center;
  }
  .pv-steps {
    grid-template-columns: 1fr;
  }
  .pv-levels__head,
  .pv-levels__row {
    grid-template-columns: 1fr 1fr;
  }
  .pv-levels__head span:nth-child(2),
  .pv-levels__xp {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pv-panel__btn,
  .pv-levels__row,
  .pv-news__item,
  .pv-quick__btn,
  .pv-steps__item {
    transition: none;
  }
  .pv-panel__btn:hover,
  .pv-news__item:hover,
  .pv-quick__btn:hover,
  .pv-steps__item:hover {
    transform: none;
  }
}

.pv-empty {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #eaf9f0 0%, #dff3e7 100%);
  border: 1px solid rgba(68, 187, 119, 0.28);
  color: #5a6760;
  line-height: 1.45;
}
.pv-empty i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(68, 187, 119, 0.22);
}
.pv-empty strong {
  display: block;
  color: #237a4a;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.list-group-item { border-color: var(--color-border); }
.list-group-item-action:hover { background: var(--color-primary-light); }

.navbar-toggler {
  border-color: var(--color-border);
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(32, 184, 90, 0.2); }
.pv-public-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2837, 42, 48, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Utility */
.pv-divider { height: 1px; background: var(--color-border); margin: 1rem 0; }
.pv-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--color-nav);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}
.pw-strength {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin-top: 0.4rem;
  overflow: hidden;
}
.pw-strength > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-danger);
  transition: width var(--transition), background var(--transition);
}
.pw-strength.s1 > span { width: 25%; background: var(--color-danger); }
.pw-strength.s2 > span { width: 50%; background: var(--color-warning); }
.pw-strength.s3 > span { width: 75%; background: #84cc16; }
.pw-strength.s4 > span { width: 100%; background: var(--color-success); }

.input-group .btn-outline-secondary {
  border-color: var(--color-border);
  color: var(--color-muted);
  min-height: 44px;
}

/* ---------- Admin panel ---------- */
.pv-admin-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.pv-admin-topbar {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #fff;
  border-bottom: 1px solid rgba(221, 228, 224, 0.95);
  box-shadow: 0 4px 18px rgba(8, 60, 30, 0.06);
}
.pv-admin-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.pv-admin-topbar__left,
.pv-admin-topbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pv-admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.pv-admin-brand__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(68, 187, 119, 0.25);
}
.pv-admin-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.pv-admin-brand__text strong {
  color: #152019;
  font-size: 0.95rem;
}
.pv-admin-brand__text span {
  color: var(--color-muted);
  font-size: 0.78rem;
}
.pv-admin-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.pv-admin-topbar__link:hover {
  background: #dff5e8;
  color: var(--color-primary-dark);
}
.pv-admin-topbar__user {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #152019;
}
.pv-admin-shell {
  display: flex;
  flex: 1;
  gap: var(--sidebar-gap);
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: var(--sidebar-gap);
}
.pv-admin-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-h) + var(--sidebar-gap));
  align-self: flex-start;
  max-height: calc(100vh - var(--header-h) - (var(--sidebar-gap) * 2));
  overflow: auto;
}
.pv-admin-sidebar__inner {
  background: #fff;
  border-radius: var(--sidebar-radius);
  border: 1px solid rgba(221, 228, 224, 0.95);
  box-shadow: var(--shadow-section);
  padding: 0.85rem 0.65rem 0.75rem;
}
.pv-admin-sidebar__group + .pv-admin-sidebar__group {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(232, 236, 234, 0.95);
}
.pv-admin-sidebar__links .pv-nav-link {
  position: relative;
}
.pv-admin-nav-badge {
  margin-left: auto;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pv-admin-sidebar__foot {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(232, 236, 234, 0.95);
}
.pv-admin-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1035;
  background: rgba(15, 23, 20, 0.45);
}
.pv-admin-backdrop.is-open {
  display: block;
}
.pv-admin-content {
  flex: 1;
  min-width: 0;
}
.pv-admin-page-head {
  margin-bottom: 1.25rem;
}
.pv-admin-page-head__title {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
  color: #152019;
  letter-spacing: -0.02em;
}
.pv-admin-page-head__desc {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}
.pv-admin-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid rgba(221, 228, 224, 0.95);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-subtle);
  height: 100%;
}
.pv-admin-stat__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.pv-admin-stat__icon--users { background: #ecfdf5; color: #059669; }
.pv-admin-stat__icon--purchase { background: #eff6ff; color: #2563eb; }
.pv-admin-stat__icon--earnings { background: #fff7ed; color: #ea580c; }
.pv-admin-stat__icon--queue { background: #fdf4ff; color: #9333ea; }
.pv-admin-stat__label {
  display: block;
  font-size: 0.78rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.pv-admin-stat__value {
  display: block;
  font-size: 1.35rem;
  color: #152019;
  line-height: 1.2;
}
.pv-admin-queue {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(221, 228, 224, 0.95);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.pv-admin-queue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  color: inherit;
}
.pv-admin-queue__label {
  font-size: 0.82rem;
  color: var(--color-muted);
  font-weight: 600;
}
.pv-admin-queue__count {
  font-size: 1.75rem;
  color: #152019;
  line-height: 1;
}
.pv-admin-queue__hint {
  font-size: 0.78rem;
  color: var(--color-muted);
}
.pv-admin-mini-stat {
  background: #fff;
  border: 1px solid rgba(221, 228, 224, 0.95);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.pv-admin-mini-stat strong {
  display: block;
  font-size: 1.25rem;
  color: #152019;
  margin-top: 0.15rem;
}
.pv-admin-mini-stat--ok {
  border-color: rgba(68, 187, 119, 0.35);
  background: linear-gradient(180deg, #f0fdf4, #fff);
}
.pv-admin-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.pv-admin-quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.pv-admin-quick-links a:hover {
  background: #dff5e8;
}
.pv-admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pv-admin-filters__tab {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}
.pv-admin-filters__tab:hover {
  border-color: var(--color-border-green);
  color: var(--color-primary-dark);
}
.pv-admin-filters__tab--active {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  border-color: transparent;
  color: #fff;
}
.pv-admin-table-card {
  overflow: hidden;
}
.pv-admin-content .form-control,
.pv-admin-content .form-select {
  border-radius: 10px;
}
.pv-admin-content .alert {
  border-radius: 12px;
}
.pv-admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1rem;
}
.pv-admin-toolbar .form-control {
  min-width: 220px;
}
@media (max-width: 991.98px) {
  .pv-admin-shell {
    display: block;
    padding-top: 0.75rem;
  }
  .pv-admin-sidebar {
    position: fixed;
    top: var(--header-h);
    left: 0;
    bottom: 0;
    z-index: 1045;
    width: min(86vw, 300px);
    max-height: none;
    transform: translateX(-105%);
    transition: transform var(--transition);
    padding: 0.75rem;
  }
  .pv-admin-sidebar.is-open {
    transform: translateX(0);
  }
  .pv-admin-sidebar__inner {
    height: 100%;
    overflow: auto;
  }
  body.pv-admin-nav-open {
    overflow: hidden;
  }
}

/* ── XP Mine ── */
.pv-xp-mine-welcome {
  margin-bottom: 0.75rem;
}
.pv-xp-mine-promo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.78rem 1rem;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 0% 50%, rgba(52, 211, 153, 0.2), transparent 46%),
    radial-gradient(circle at 100% 30%, rgba(96, 165, 250, 0.18), transparent 42%),
    radial-gradient(circle at 78% 100%, rgba(167, 139, 250, 0.14), transparent 40%),
    linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 48%, #eef2ff 100%);
  border: 1px solid rgba(68, 187, 119, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 24px rgba(16, 122, 58, 0.1),
    0 4px 14px rgba(59, 130, 246, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.pv-xp-mine-promo:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 28px rgba(16, 122, 58, 0.14),
    0 6px 18px rgba(59, 130, 246, 0.12);
}
.pv-xp-mine-promo__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
  animation: pv-mine-promo-orb 7s ease-in-out infinite;
}
.pv-xp-mine-promo__orb--a {
  width: 5.5rem;
  height: 5.5rem;
  top: -2rem;
  left: -1rem;
  background: rgba(52, 211, 153, 0.45);
}
.pv-xp-mine-promo__orb--b {
  width: 4.5rem;
  height: 4.5rem;
  right: 8%;
  bottom: -1.8rem;
  background: rgba(96, 165, 250, 0.4);
  animation-delay: -3.5s;
}
.pv-xp-mine-promo__ring {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from 0deg,
    rgba(52, 211, 153, 0.15),
    rgba(34, 211, 238, 0.55),
    rgba(129, 140, 248, 0.5),
    rgba(68, 187, 119, 0.55),
    rgba(52, 211, 153, 0.15)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
  animation: pv-mine-promo-ring 9s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.pv-xp-mine-promo__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  animation: pv-mine-promo-shine 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.pv-xp-mine-promo__icon {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(145deg, #44BB77, #06b6d4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.32);
  animation: pv-mine-promo-icon 3.4s ease-in-out infinite;
}
.pv-xp-mine-promo__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  flex: 1;
}
.pv-xp-mine-promo__kicker {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}
.pv-xp-mine-promo__headline {
  display: block;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(0.88rem, 2.4vw, 1.05rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.pv-xp-mine-promo__headline-main {
  background: linear-gradient(135deg, #047857 0%, #0891b2 42%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pv-xp-mine-promo__headline-level {
  background: linear-gradient(135deg, #7c3aed 0%, #db2777 48%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  white-space: nowrap;
}
.pv-xp-mine-promo__sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
}
.pv-xp-mine-promo__badge {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #44BB77, #0891b2);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
  white-space: nowrap;
}
@keyframes pv-mine-promo-ring {
  to { transform: rotate(360deg); }
}
@keyframes pv-mine-promo-shine {
  0%, 70% { transform: translateX(-130%); opacity: 0; }
  76% { opacity: 1; }
  100% { transform: translateX(130%); opacity: 0; }
}
@keyframes pv-mine-promo-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
@keyframes pv-mine-promo-orb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(6px, -4px) scale(1.06); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .pv-xp-mine-promo__ring,
  .pv-xp-mine-promo__shine,
  .pv-xp-mine-promo__icon,
  .pv-xp-mine-promo__orb {
    animation: none;
  }
  .pv-xp-mine-promo:hover {
    transform: none;
  }
}
@media (max-width: 575.98px) {
  .pv-xp-mine-promo {
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.72rem 0.85rem;
  }
  .pv-xp-mine-promo__copy {
    flex: 1 1 calc(100% - 3.4rem);
  }
  .pv-xp-mine-promo__badge {
    margin-left: auto;
  }
}
.pv-xp-mine-card {
  overflow: hidden;
  border: 1px solid rgba(68, 187, 119, 0.18);
  box-shadow:
    0 12px 32px rgba(8, 60, 30, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.pv-xp-mine-card > .card-body {
  border-top: none;
}
.pv-xp-mine-hud {
  padding: 1rem 1.1rem 0.95rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.12), transparent 42%),
    linear-gradient(180deg, #f6fbf8 0%, #eef6f1 100%);
  border-bottom: 1px solid rgba(68, 187, 119, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pv-xp-mine-hud__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pv-xp-mine-hud__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pv-xp-mine-hud__emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 1.25rem;
  box-shadow:
    0 8px 18px rgba(68, 187, 119, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.pv-xp-mine-hud__title {
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
  color: #152019;
  line-height: 1.15;
}
.pv-xp-mine-hud__level {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #107a3a;
  letter-spacing: 0.02em;
}
.pv-xp-mine-hud__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}
.pv-xp-mine-hud__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(68, 187, 119, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
  color: #4b6358;
  white-space: nowrap;
}
.pv-xp-mine-hud__chip i {
  color: #44BB77;
}
.pv-xp-mine-hud__chip span {
  color: #107a3a;
  font-weight: 900;
}
.pv-xp-mine-levelup-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1.5px solid #f59e0b;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.12);
}
.pv-xp-mine-levelup-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.28);
}
.pv-xp-mine-levelup-banner__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  flex: 1;
}
.pv-xp-mine-levelup-banner__body strong {
  font-size: 0.88rem;
  font-weight: 900;
  color: #92400e;
  line-height: 1.25;
}
.pv-xp-mine-levelup-banner__body span {
  font-size: 0.74rem;
  font-weight: 600;
  color: #a16207;
  line-height: 1.35;
}
.pv-xp-mine-levelup-banner__body span strong {
  font-size: inherit;
  color: #78350f;
}
.pv-xp-mine-levelup-banner__badge {
  flex-shrink: 0;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: #92400e;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pv-xp-mine-hud__panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
.pv-xp-mine-panel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(68, 187, 119, 0.16);
  box-shadow: 0 2px 10px rgba(8, 60, 30, 0.04);
  min-height: 100%;
}
.pv-xp-mine-panel--current {
  border-color: rgba(68, 187, 119, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
}
.pv-xp-mine-panel--next {
  border-color: rgba(59, 130, 246, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}
.pv-xp-mine-panel--next.pv-xp-mine-panel--max {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}
.pv-xp-mine-panel--axes {
  border-color: rgba(245, 158, 11, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
}
.pv-xp-mine-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}
.pv-xp-mine-panel__tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-xp-mine-panel__level {
  font-size: 0.88rem;
  font-weight: 900;
  color: #152019;
  font-variant-numeric: tabular-nums;
}
.pv-xp-mine-panel--current .pv-xp-mine-panel__level {
  color: #107a3a;
}
.pv-xp-mine-panel--next .pv-xp-mine-panel__level {
  color: #1d4ed8;
}
.pv-xp-mine-panel__payout {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.pv-xp-mine-panel__payout-label {
  font-size: 0.64rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pv-xp-mine-panel__payout strong {
  font-size: 0.86rem;
  font-weight: 900;
  color: #152019;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.pv-xp-mine-panel--current .pv-xp-mine-panel__payout strong {
  color: #107a3a;
}
.pv-xp-mine-panel--next .pv-xp-mine-panel__payout strong {
  color: #1e40af;
}
.pv-xp-mine-panel__foot {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: auto;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
}
.pv-xp-mine-panel__foot i {
  color: #f59e0b;
}
.pv-xp-mine-axes--panel {
  margin-top: 0.15rem;
}
.pv-xp-mine-how {
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(68, 187, 119, 0.14);
}
.pv-xp-mine-how__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: #334155;
}
.pv-xp-mine-how__title i {
  color: #44BB77;
}
.pv-xp-mine-how__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.pv-xp-mine-how__step {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  background: rgba(68, 187, 119, 0.05);
  border: 1px solid rgba(68, 187, 119, 0.1);
}
.pv-xp-mine-how__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
}
.pv-xp-mine-how__step p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #4b6358;
}
.pv-xp-mine-how__step strong {
  color: #107a3a;
}
.pv-xp-mine-axes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.pv-xp-mine-axe {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 8px;
  position: relative;
  background: linear-gradient(145deg, #cbd5d0, #94a3b8);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
  opacity: 0.45;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}
.pv-xp-mine-axe::before {
  content: "";
  position: absolute;
  inset: 0.28rem 0.42rem 0.42rem 0.28rem;
  background: linear-gradient(135deg, #7dd3fc 0%, #0284c7 100%);
  clip-path: polygon(0 40%, 55% 0, 100% 35%, 70% 100%, 0 75%);
  opacity: 0.35;
}
.pv-xp-mine-axe::after {
  content: "";
  position: absolute;
  left: 0.62rem;
  top: 0.38rem;
  width: 0.28rem;
  height: 0.95rem;
  border-radius: 2px;
  background: linear-gradient(180deg, #d97706, #92400e);
  opacity: 0.35;
}
.pv-xp-mine-axe.is-ready {
  opacity: 1;
  background: linear-gradient(145deg, #fde68a, #f59e0b);
  box-shadow:
    0 4px 10px rgba(245, 158, 11, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.pv-xp-mine-axe.is-ready::before {
  opacity: 1;
  filter: drop-shadow(0 1px 2px rgba(2, 132, 199, 0.35));
}
.pv-xp-mine-axe.is-ready::after {
  opacity: 1;
}
.pv-xp-mine-card__body {
  padding: 1rem 1.1rem 1.1rem;
  background: linear-gradient(180deg, #fafcfb 0%, #f3f8f5 100%);
}
.pv-xp-mine-quarry__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
}
.pv-xp-mine-quarry__label i {
  color: #44BB77;
}
.pv-xp-mine-quarry__frame {
  padding: 0.65rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #5c4a32 0%, #3d3020 12%, #2a2118 100%);
  border: 3px solid #7a6244;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.12),
    inset 0 -8px 20px rgba(0, 0, 0, 0.35),
    0 10px 28px rgba(8, 60, 30, 0.18);
  position: relative;
}
.pv-xp-mine-quarry__frame::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.pv-xp-mine-grid {
  --pv-mine-gap: 0.28rem;
  display: grid;
  grid-template-columns: repeat(var(--pv-mine-cols, 12), minmax(0, 1fr));
  gap: var(--pv-mine-gap);
  padding: 0.75rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 15% 8%, rgba(68, 187, 119, 0.12), transparent 40%),
    radial-gradient(circle at 85% 92%, rgba(245, 158, 11, 0.08), transparent 35%),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.08) 0 1px,
      transparent 1px 8px
    ),
    linear-gradient(180deg, #243028 0%, #161d19 55%, #0f1411 100%);
  box-shadow: inset 0 4px 18px rgba(0, 0, 0, 0.45);
  position: relative;
}
.pv-xp-mine-grid--mosaic {
  --pv-mine-gap: 0.22rem;
  padding: 0.85rem 0.7rem;
}
.pv-xp-mine-grid.is-active {
  cursor: none;
}
.pv-xp-mine-grid.is-active.is-hovering .pv-xp-mine-stone.is-mineable {
  filter: brightness(1.08) saturate(1.05);
}
.pv-xp-mine-stone {
  aspect-ratio: 1;
  width: 100%;
  padding: 0;
  margin: var(--pv-stone-inset, 0);
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  background-color: #6e7f74;
  transform: rotate(var(--pv-stone-rot, 0deg)) scale(var(--pv-stone-scale, 1));
  transform-origin: center center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -3px 6px rgba(0, 0, 0, 0.28),
    0 3px 6px rgba(0, 0, 0, 0.25);
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}
.pv-xp-mine-stone[data-shape="0"] { border-radius: 5px; }
.pv-xp-mine-stone[data-shape="1"] { border-radius: 9px; }
.pv-xp-mine-stone[data-shape="2"] { border-radius: 4px 8px 5px 7px; }
.pv-xp-mine-stone[data-shape="3"] { border-radius: 8px 4px 7px 5px; }
.pv-xp-mine-stone::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.pv-xp-mine-stone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}
/* Granite gray */
.pv-xp-mine-stone[data-variant="0"] {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(160deg, #8b9590 0%, #5f6b66 55%, #4a5550 100%);
  border-color: rgba(74, 85, 80, 0.7);
}
.pv-xp-mine-stone[data-variant="0"]::before {
  background:
    linear-gradient(118deg, transparent 42%, rgba(0, 0, 0, 0.16) 43%, transparent 44%),
    linear-gradient(52deg, transparent 62%, rgba(255, 255, 255, 0.1) 63%, transparent 65%);
}
/* Blue slate */
.pv-xp-mine-stone[data-variant="1"] {
  background:
    radial-gradient(circle at 70% 25%, rgba(147, 197, 253, 0.18), transparent 42%),
    linear-gradient(145deg, #6b7f8f 0%, #4a5d6b 50%, #364652 100%);
  border-color: rgba(54, 70, 82, 0.75);
}
.pv-xp-mine-stone[data-variant="1"]::before {
  background: linear-gradient(30deg, transparent 48%, rgba(0, 0, 0, 0.2) 49%, transparent 51%);
}
/* Moss rock */
.pv-xp-mine-stone[data-variant="2"] {
  background:
    radial-gradient(circle at 30% 75%, rgba(74, 222, 128, 0.15), transparent 45%),
    linear-gradient(135deg, #6d7a6a 0%, #4f5e50 55%, #3d4a3f 100%);
  border-color: rgba(61, 74, 63, 0.75);
}
.pv-xp-mine-stone[data-variant="2"]::after {
  background:
    radial-gradient(circle at 22% 68%, rgba(134, 239, 172, 0.35) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 38%, rgba(134, 239, 172, 0.25) 0 1px, transparent 2px);
}
/* Sandstone */
.pv-xp-mine-stone[data-variant="3"] {
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.25), transparent 45%),
    linear-gradient(155deg, #c4a882 0%, #9a7b5a 50%, #7a6045 100%);
  border-color: rgba(122, 96, 69, 0.7);
}
.pv-xp-mine-stone[data-variant="3"]::before {
  background:
    linear-gradient(140deg, transparent 35%, rgba(0, 0, 0, 0.1) 36%, transparent 38%),
    linear-gradient(20deg, transparent 55%, rgba(255, 255, 255, 0.12) 56%, transparent 58%);
}
/* Basalt dark */
.pv-xp-mine-stone[data-variant="4"] {
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(165deg, #4a4f4e 0%, #2f3332 55%, #1a1d1c 100%);
  border-color: rgba(26, 29, 28, 0.85);
}
.pv-xp-mine-stone[data-variant="4"]::before {
  background: linear-gradient(75deg, transparent 40%, rgba(255, 255, 255, 0.06) 41%, transparent 43%);
}
/* Limestone cream */
.pv-xp-mine-stone[data-variant="5"] {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.35), transparent 42%),
    linear-gradient(145deg, #d8d0c4 0%, #b8aea0 50%, #968c7e 100%);
  border-color: rgba(150, 140, 126, 0.65);
}
.pv-xp-mine-stone[data-variant="5"]::after {
  background:
    radial-gradient(circle at 55% 62%, rgba(0, 0, 0, 0.12) 0 1.5px, transparent 2px),
    radial-gradient(circle at 28% 45%, rgba(0, 0, 0, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 30%, rgba(0, 0, 0, 0.08) 0 1px, transparent 2px);
}
/* Iron ore */
.pv-xp-mine-stone[data-variant="6"] {
  background:
    radial-gradient(circle at 45% 35%, rgba(252, 165, 165, 0.12), transparent 42%),
    linear-gradient(150deg, #8a5a4a 0%, #6b4035 50%, #4a2a22 100%);
  border-color: rgba(74, 42, 34, 0.8);
}
.pv-xp-mine-stone[data-variant="6"]::after {
  background:
    radial-gradient(circle at 30% 40%, rgba(248, 113, 113, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 55%, rgba(251, 191, 36, 0.45) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 48% 72%, rgba(248, 113, 113, 0.4) 0 1.5px, transparent 2.5px);
}
/* Quartz sparkle */
.pv-xp-mine-stone[data-variant="7"] {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.35), transparent 50%),
    linear-gradient(140deg, #b8c5bc 0%, #8fa196 50%, #6b7d72 100%);
  border-color: rgba(107, 125, 114, 0.65);
}
.pv-xp-mine-stone[data-variant="7"]::before {
  background:
    linear-gradient(55deg, transparent 44%, rgba(255, 255, 255, 0.35) 45%, transparent 46%),
    linear-gradient(125deg, transparent 58%, rgba(255, 255, 255, 0.2) 59%, transparent 61%);
}
.pv-xp-mine-stone[data-variant="7"]::after {
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 58%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px);
}
/* Emerald vein */
.pv-xp-mine-stone[data-variant="8"] {
  background:
    radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.2), transparent 45%),
    linear-gradient(155deg, #4f6b5c 0%, #3a5246 50%, #2a3d34 100%);
  border-color: rgba(42, 61, 52, 0.8);
}
.pv-xp-mine-stone[data-variant="8"]::before {
  background: linear-gradient(115deg, transparent 46%, rgba(52, 211, 153, 0.45) 47%, rgba(52, 211, 153, 0.45) 48%, transparent 49%);
}
/* Copper ore */
.pv-xp-mine-stone[data-variant="9"] {
  background:
    radial-gradient(circle at 55% 30%, rgba(251, 191, 36, 0.15), transparent 42%),
    linear-gradient(145deg, #a67c52 0%, #8b5e3c 50%, #6b4428 100%);
  border-color: rgba(107, 68, 40, 0.75);
}
.pv-xp-mine-stone[data-variant="9"]::after {
  background:
    radial-gradient(circle at 35% 50%, rgba(34, 211, 238, 0.5) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 42%, rgba(251, 191, 36, 0.55) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 50% 68%, rgba(34, 211, 238, 0.35) 0 1px, transparent 2px);
}
/* Purple geode */
.pv-xp-mine-stone[data-variant="10"] {
  background:
    radial-gradient(circle at 60% 55%, rgba(192, 132, 252, 0.22), transparent 48%),
    linear-gradient(150deg, #7a6b82 0%, #5c4d64 50%, #443848 100%);
  border-color: rgba(68, 56, 72, 0.75);
}
.pv-xp-mine-stone[data-variant="10"]::before {
  background: linear-gradient(40deg, transparent 52%, rgba(192, 132, 252, 0.3) 53%, transparent 55%);
}
/* Volcanic rock */
.pv-xp-mine-stone[data-variant="11"] {
  background:
    radial-gradient(circle at 40% 35%, rgba(248, 113, 113, 0.14), transparent 42%),
    linear-gradient(160deg, #3d3838 0%, #2a2424 55%, #181414 100%);
  border-color: rgba(24, 20, 20, 0.9);
}
.pv-xp-mine-stone[data-variant="11"]::before {
  background:
    linear-gradient(95deg, transparent 38%, rgba(248, 113, 113, 0.35) 39%, transparent 41%),
    linear-gradient(160deg, transparent 60%, rgba(255, 255, 255, 0.05) 61%, transparent 63%);
}
.pv-xp-mine-stone.is-mineable:hover {
  transform: rotate(var(--pv-stone-rot, 0deg)) scale(calc(var(--pv-stone-scale, 1) * 1.06)) translateY(-2px);
  border-color: rgba(68, 187, 119, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 0 0 1px rgba(68, 187, 119, 0.25),
    0 8px 16px rgba(68, 187, 119, 0.2);
  z-index: 2;
}
.pv-xp-mine-stone.is-mining {
  animation: pv-mine-strike 340ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pv-mine-strike {
  0% { transform: rotate(var(--pv-stone-rot, 0deg)) scale(var(--pv-stone-scale, 1)); }
  30% { transform: rotate(calc(var(--pv-stone-rot, 0deg) - 3deg)) scale(calc(var(--pv-stone-scale, 1) * 0.86)); filter: brightness(1.25); }
  55% { transform: rotate(calc(var(--pv-stone-rot, 0deg) + 1deg)) scale(calc(var(--pv-stone-scale, 1) * 0.94)); }
  100% { transform: rotate(var(--pv-stone-rot, 0deg)) scale(var(--pv-stone-scale, 1)); }
}
.pv-xp-mine-stone.is-mined {
  background:
    radial-gradient(circle at 50% 55%, #0a0f0c 0%, #141a17 38%, #1e2822 100%);
  border-color: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.55);
  transform: rotate(var(--pv-stone-rot, 0deg)) scale(var(--pv-stone-scale, 1));
  cursor: default;
}
.pv-xp-mine-stone.is-mined::before {
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 0, 0, 0.55) 0%, transparent 55%),
    linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.04) 41%, transparent 43%);
  z-index: 1;
}
.pv-xp-mine-stone.is-mined::after {
  display: none;
}
.pv-xp-mine-stone.is-mined--premium,
.pv-xp-mine-stone.is-mined--great {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.5),
    0 0 12px rgba(34, 197, 94, 0.12);
}
.pv-xp-mine-stone.is-mined--premium .pv-xp-mine-stone__yield,
.pv-xp-mine-stone.is-mined--great .pv-xp-mine-stone__yield {
  color: #4ade80;
  font-size: clamp(0.52rem, 1.7vw, 0.72rem);
}
.pv-xp-mine-stone.is-mined--jackpot,
.pv-xp-mine-stone.is-mined--sensational {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow:
    inset 0 4px 10px rgba(0, 0, 0, 0.5),
    0 0 14px rgba(245, 158, 11, 0.22);
}
.pv-xp-mine-stone.is-rewarded--premium {
  animation: pv-mine-strike-big 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pv-xp-mine-stone.is-rewarded--sensational {
  animation: pv-mine-strike-sensational 720ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pv-mine-strike-big {
  0%, 100% { filter: brightness(1); }
  40% { filter: brightness(1.45) saturate(1.2); box-shadow: 0 0 18px rgba(34, 197, 94, 0.45); }
}
@keyframes pv-mine-strike-sensational {
  0%, 100% { filter: brightness(1); }
  25% { filter: brightness(1.6) saturate(1.35); box-shadow: 0 0 24px rgba(245, 158, 11, 0.55); }
  50% { filter: brightness(1.35); }
}
.pv-xp-mine-flash {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  z-index: 20;
  background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.45), transparent 65%);
  animation: pv-mine-flash 900ms ease-out forwards;
}
@keyframes pv-mine-flash {
  0% { opacity: 0; }
  20% { opacity: 1; }
  100% { opacity: 0; }
}
.pv-xp-mine-sparks {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 4;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px);
  opacity: 0;
}
.pv-xp-mine-sparks--premium {
  animation: pv-mine-sparks 900ms ease-out forwards;
  background:
    radial-gradient(circle at 25% 35%, rgba(74, 222, 128, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 45%, rgba(134, 239, 172, 0.85) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 50% 65%, rgba(52, 211, 153, 0.9) 0 1.5px, transparent 2.5px);
}
.pv-xp-mine-sparks--sensational {
  animation: pv-mine-sparks 1200ms ease-out forwards;
  background:
    radial-gradient(circle at 20% 30%, rgba(253, 224, 71, 1) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 35%, rgba(251, 191, 36, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 55%, rgba(245, 158, 11, 0.9) 0 1.5px, transparent 2.5px);
}
@keyframes pv-mine-sparks {
  0% { opacity: 0; transform: scale(0.6); }
  30% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}
.pv-xp-mine-stone__yield {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.12rem;
  font-size: clamp(0.48rem, 1.6vw, 0.68rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #86efac;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
  z-index: 2;
}
.pv-xp-mine-stone__yield.is-pending {
  opacity: 0;
  transform: scale(0.4);
}
.pv-xp-mine-stone__yield.is-landed {
  animation: pv-mine-yield-land 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes pv-mine-yield-land {
  0% { opacity: 0; transform: scale(0.35); }
  55% { opacity: 1; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
.pv-xp-mine-stone__yield.is-landed--premium {
  animation: pv-mine-yield-land-big 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pv-xp-mine-stone__yield.is-landed--sensational {
  animation: pv-mine-yield-land-sensational 780ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes pv-mine-yield-land-big {
  0% { opacity: 0; transform: scale(0.3); color: #bbf7d0; }
  50% { opacity: 1; transform: scale(1.18); color: #4ade80; }
  100% { opacity: 1; transform: scale(1); color: #4ade80; }
}
@keyframes pv-mine-yield-land-sensational {
  0% { opacity: 0; transform: scale(0.25); color: #fef08a; }
  45% { opacity: 1; transform: scale(1.25); color: #fcd34d; }
  100% { opacity: 1; transform: scale(1); color: #fcd34d; }
}
.pv-xp-mine-stone.is-mined--jackpot .pv-xp-mine-stone__yield,
.pv-xp-mine-stone.is-mined--sensational .pv-xp-mine-stone__yield {
  color: #fcd34d;
  font-size: clamp(0.54rem, 1.8vw, 0.76rem);
}
@keyframes pv-mine-yield-in {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}
.pv-xp-mine-burst {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.02rem;
  pointer-events: none;
  z-index: 6;
  line-height: 1;
  animation: pv-mine-burst 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pv-xp-mine-burst strong {
  font-size: clamp(0.62rem, 2vw, 0.88rem);
  font-weight: 900;
  color: #ecfdf5;
  text-shadow: 0 0 10px rgba(68, 187, 119, 0.75);
}
.pv-xp-mine-burst small {
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #86efac;
  text-transform: uppercase;
}
.pv-xp-mine-burst--premium,
.pv-xp-mine-burst--great {
  animation: pv-mine-burst-big 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pv-xp-mine-burst--premium strong,
.pv-xp-mine-burst--great strong {
  color: #dcfce7;
  font-size: clamp(0.58rem, 1.8vw, 0.78rem);
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}
.pv-xp-mine-burst--jackpot,
.pv-xp-mine-burst--sensational {
  animation: pv-mine-burst-sensational 1300ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pv-xp-mine-burst--jackpot strong,
.pv-xp-mine-burst--sensational strong {
  color: #fef3c7;
  font-size: clamp(0.52rem, 1.7vw, 0.72rem);
  letter-spacing: 0.04em;
  text-shadow: 0 0 14px rgba(245, 158, 11, 0.85);
}
@keyframes pv-mine-burst-big {
  0% { opacity: 0; transform: scale(0.4); }
  30% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(1.55); }
}
@keyframes pv-mine-burst-sensational {
  0% { opacity: 0; transform: scale(0.35) rotate(-6deg); }
  25% { opacity: 1; transform: scale(1.28) rotate(3deg); }
  100% { opacity: 0; transform: scale(1.65) rotate(0deg); }
}
@keyframes pv-mine-burst {
  0% { opacity: 0; transform: scale(0.45); }
  25% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.45); }
}
.pv-xp-mine-stone.is-disabled:not(.is-mined) {
  opacity: 0.38;
  filter: grayscale(0.4);
  cursor: not-allowed;
}
.pv-xp-mine-reward {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 8px 22px rgba(68, 187, 119, 0.4);
  white-space: nowrap;
  pointer-events: none;
  animation: pv-mine-reward-pop 1.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  z-index: 8;
}
.pv-xp-mine-reward--premium,
.pv-xp-mine-reward--great {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  box-shadow: 0 10px 26px rgba(34, 197, 94, 0.5);
  font-size: 0.86rem;
  animation: pv-mine-reward-pop-big 1.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pv-xp-mine-reward--jackpot,
.pv-xp-mine-reward--sensational {
  background: linear-gradient(145deg, #fbbf24, #ea580c);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.55);
  font-size: 0.92rem;
  animation: pv-mine-reward-pop-sensational 2.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes pv-mine-reward-pop-big {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  15% { opacity: 1; transform: translate(-50%, -65%) scale(1.15); }
  100% { opacity: 0; transform: translate(-50%, -130%) scale(1); }
}
@keyframes pv-mine-reward-pop-sensational {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.45); }
  12% { opacity: 1; transform: translate(-50%, -70%) scale(1.22); }
  35% { transform: translate(-50%, -78%) scale(1.08); }
  100% { opacity: 0; transform: translate(-50%, -145%) scale(1); }
}
@keyframes pv-mine-reward-pop {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
  12% { opacity: 1; transform: translate(-50%, -58%) scale(1.1); }
  35% { opacity: 1; transform: translate(-50%, -72%) scale(1.02); }
  100% { opacity: 0; transform: translate(-50%, -115%) scale(0.95); }
}
.pv-xp-mine-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  margin-left: 0.75rem;
  margin-top: -0.55rem;
  pointer-events: none;
  z-index: 10000;
  transform: rotate(-4deg);
  transition: transform 80ms ease;
}
.pv-xp-mine-cursor__svg {
  display: block;
  width: 54px;
  height: 54px;
}
.pv-xp-mine-cursor__spark {
  position: absolute;
  left: 6px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #fef08a 0%, #f59e0b 45%, transparent 100%);
  box-shadow:
    0 0 8px rgba(245, 158, 11, 0.9),
    0 0 14px rgba(68, 187, 119, 0.55);
  opacity: 0;
}
.pv-xp-mine-cursor.is-active {
  animation: pv-mine-axe-wiggle 480ms ease-in-out infinite alternate;
}
.pv-xp-mine-cursor.is-active .pv-xp-mine-cursor__spark {
  opacity: 1;
  animation: pv-mine-spark-pulse 480ms ease-in-out infinite alternate;
}
@keyframes pv-mine-axe-wiggle {
  from { transform: rotate(-10deg) translateY(0); }
  to { transform: rotate(4deg) translateY(-4px); }
}
@keyframes pv-mine-spark-pulse {
  from { transform: scale(0.85); opacity: 0.7; }
  to { transform: scale(1.15); opacity: 1; }
}
.pv-xp-mine-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(68, 187, 119, 0.08);
  border: 1px dashed rgba(68, 187, 119, 0.25);
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b6358;
}
.pv-xp-mine-history {
  margin-top: 1rem;
}
.pv-xp-mine-history-list {
  display: flex;
  flex-direction: column;
}
.pv-xp-mine-history-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(68, 187, 119, 0.1);
  transition: background 160ms ease;
}
.pv-xp-mine-history-item.is-new {
  animation: pv-mine-history-in 650ms cubic-bezier(0.22, 1, 0.36, 1);
  background: rgba(68, 187, 119, 0.1);
}
@keyframes pv-mine-history-in {
  0% { opacity: 0; transform: translateY(-10px); background: rgba(68, 187, 119, 0.18); }
  100% { opacity: 1; transform: translateY(0); background: rgba(68, 187, 119, 0.1); }
}
.pv-xp-mine-history-item.is-new .pv-xp-mine-history-item__amount {
  animation: pv-mine-history-xp 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pv-mine-history-xp {
  0% { transform: scale(0.85); opacity: 0.5; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.pv-xp-mine-history-item:last-child {
  border-bottom: none;
}
.pv-xp-mine-history-item:hover {
  background: rgba(68, 187, 119, 0.04);
}
.pv-xp-mine-history-item__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pv-xp-mine-history-item__topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}
.pv-xp-mine-history-item__tier {
  display: inline-flex;
  padding: 0.16rem 0.48rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(68, 187, 119, 0.12);
  color: #107a3a;
}
.pv-xp-mine-history-item--premium .pv-xp-mine-history-item__tier,
.pv-xp-mine-history-item--great .pv-xp-mine-history-item__tier {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}
.pv-xp-mine-history-item--jackpot .pv-xp-mine-history-item__tier,
.pv-xp-mine-history-item--sensational .pv-xp-mine-history-item__tier {
  background: rgba(245, 158, 11, 0.18);
  color: #b45309;
}
.pv-xp-mine-history-item__cell {
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a9690;
}
.pv-xp-mine-history-item__amount {
  font-size: 0.95rem;
  font-weight: 900;
  color: #107a3a;
  font-variant-numeric: tabular-nums;
}
.pv-xp-mine-history-item--jackpot .pv-xp-mine-history-item__amount,
.pv-xp-mine-history-item--sensational .pv-xp-mine-history-item__amount {
  color: #b45309;
}
.pv-xp-mine-history-empty {
  padding: 2rem 1rem;
}
@media (max-width: 991.98px) {
  .pv-xp-mine-hud__panels {
    grid-template-columns: 1fr 1fr;
  }
  .pv-xp-mine-panel--axes {
    grid-column: 1 / -1;
  }
  .pv-xp-mine-how__steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .pv-xp-mine-hud__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pv-xp-mine-hud__quick {
    justify-content: flex-start;
    width: 100%;
  }
  .pv-xp-mine-hud__panels {
    grid-template-columns: 1fr;
  }
  .pv-xp-mine-panel--axes {
    grid-column: auto;
  }
  .pv-xp-mine-levelup-banner {
    flex-wrap: wrap;
  }
  .pv-xp-mine-levelup-banner__badge {
    width: 100%;
    text-align: center;
  }
  .pv-xp-mine-grid {
    --pv-mine-gap: 0.24rem;
    padding: 0.55rem;
  }
  .pv-xp-mine-quarry__frame {
    padding: 0.45rem;
  }
  .pv-xp-mine-cursor {
    display: none;
  }
  .pv-xp-mine-grid.is-active {
    cursor: pointer;
  }
}

/* ── Referral tools ── */
.pv-ref-tools-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(68, 187, 119, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(68, 187, 119, 0.14), transparent 48%),
    radial-gradient(circle at 100% 100%, rgba(167, 139, 250, 0.12), transparent 44%),
    radial-gradient(circle at 85% 15%, rgba(56, 189, 248, 0.1), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f4fbf7 55%, #eef6ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 32px rgba(8, 60, 30, 0.08);
}
.pv-ref-tools-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(68, 187, 119, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 187, 119, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 85% 90% at 50% 0%, #000 20%, transparent 100%);
}
.pv-ref-tools-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pv-ref-tools-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.4rem;
  padding: 0.22rem 0.55rem 0.22rem 0.4rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #107a3a;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(68, 187, 119, 0.2);
}
.pv-ref-tools-hero__title {
  margin: 0 0 0.35rem;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #152019;
}
.pv-ref-tools-hero__desc {
  margin: 0;
  max-width: 36rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #5f6d66;
}
.pv-ref-tools-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}
.pv-ref-tools-stat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: min(100%, 9.5rem);
  padding: 0.72rem 0.85rem 0.72rem 0.72rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 252, 250, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 8px 20px rgba(8, 60, 30, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.pv-ref-tools-stat:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 12px 26px rgba(8, 60, 30, 0.1);
}
.pv-ref-tools-stat--banners {
  border-color: rgba(68, 187, 119, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 246, 0.94) 100%);
}
.pv-ref-tools-stat--code {
  border-color: rgba(56, 189, 248, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.94) 100%);
}
.pv-ref-tools-stat__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.12);
}
.pv-ref-tools-stat__ico i {
  color: #fff;
  line-height: 1;
}
.pv-ref-tools-stat--banners .pv-ref-tools-stat__ico {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 4px 14px rgba(68, 187, 119, 0.32);
}
.pv-ref-tools-stat--code .pv-ref-tools-stat__ico {
  background: linear-gradient(145deg, #38bdf8, #0284c7);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.28);
}
.pv-ref-tools-stat__body {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
  min-width: 0;
}
.pv-ref-tools-stat__label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8a9690;
  line-height: 1.2;
}
.pv-ref-tools-stat__body strong {
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #152019;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.pv-ref-tools-stat--code .pv-ref-tools-stat__body strong {
  color: #0369a1;
  letter-spacing: 0.06em;
}
.pv-ref-tools-link .card-body {
  padding: 1.1rem 1.25rem;
}
.pv-ref-tools-link__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.pv-ref-tools-link__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #152019;
}
.pv-ref-tools-link__hint {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #74808a;
}
.pv-ref-tools-link__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #107a3a;
  text-decoration: none;
  background: rgba(68, 187, 119, 0.1);
  border: 1px solid rgba(68, 187, 119, 0.22);
  transition: background 160ms ease, color 160ms ease;
}
.pv-ref-tools-link__back:hover {
  color: #0d6330;
  background: rgba(68, 187, 119, 0.16);
}
.pv-ref-tools-link__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.55rem;
}
.pv-ref-tools-link__row .pv-referral-link__box {
  flex: 1 1 220px;
  margin: 0;
}
.pv-ref-tools-grid {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.pv-ref-tools-banner {
  overflow: hidden;
  border: 1px solid rgba(68, 187, 119, 0.14);
  transition: box-shadow 220ms ease;
}
.pv-ref-tools-banner:hover {
  box-shadow: 0 16px 36px rgba(8, 60, 30, 0.1);
}
.pv-ref-tools-banner__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.05rem;
  background: linear-gradient(180deg, #f8fcf9 0%, #f3faf6 100%);
  border-bottom: 1px solid rgba(68, 187, 119, 0.12);
}
.pv-ref-tools-banner__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 240px;
}
.pv-ref-tools-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(145deg, #44BB77, #06b6d4);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(68, 187, 119, 0.25);
}
.pv-ref-tools-banner__icon i {
  color: #fff;
  line-height: 1;
}
.pv-ref-tools-banner--wide .pv-ref-tools-banner__icon {
  background: linear-gradient(145deg, #38bdf8, #0284c7);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}
.pv-ref-tools-banner__titles {
  min-width: 0;
}
.pv-ref-tools-banner__name {
  margin: 0;
  font-family: 'Sora', var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.2;
}
.pv-ref-tools-banner__tagline {
  margin: 0.18rem 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #64748b;
}
.pv-ref-tools-banner__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.pv-ref-tools-banner__size {
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0369a1;
  background: rgba(224, 242, 254, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.25);
}
.pv-ref-tools-banner__download {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #107a3a;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(68, 187, 119, 0.24);
  transition: background 160ms ease, color 160ms ease;
}
.pv-ref-tools-banner__download:hover {
  color: #0d6330;
  background: #fff;
}
.pv-ref-tools-banner__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
}
.pv-ref-tools-banner--wide .pv-ref-tools-banner__body {
  grid-template-columns: 1fr;
}
.pv-ref-tools-banner__preview {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(68, 187, 119, 0.06), transparent 55%),
    #fafcfb;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
}
.pv-ref-tools-banner--wide .pv-ref-tools-banner__preview {
  border-right: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.pv-ref-tools-banner__preview-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-ref-tools-banner__preview-label i {
  color: #44BB77;
}
.pv-ref-tools-banner__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 5rem;
  padding: 0.85rem;
  border-radius: 14px;
  background:
    repeating-linear-gradient(45deg, rgba(148, 163, 184, 0.07) 0 10px, transparent 10px 20px),
    linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  border: 1px dashed rgba(148, 163, 184, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.pv-ref-tools-banner__preview.is-wide .pv-ref-tools-banner__frame {
  min-height: auto;
  padding: 0.75rem 1rem;
}
.pv-ref-tools-banner__live {
  display: block;
  max-width: 100%;
  line-height: 0;
  transition: transform 200ms ease, filter 200ms ease;
}
.pv-ref-tools-banner__live:hover {
  transform: scale(1.008);
  filter: drop-shadow(0 8px 18px rgba(8, 60, 30, 0.12));
}
.pv-ref-tools-banner__live img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.pv-ref-tools-banner__embed {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
  background: #fff;
}
.pv-ref-tools-banner__embed-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
}
.pv-ref-tools-banner__embed-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #152019;
}
.pv-ref-tools-banner__embed-title i {
  color: #44BB77;
}
.pv-ref-tools-banner__embed-note {
  font-size: 0.68rem;
  font-weight: 600;
  color: #94a3b8;
}
.pv-ref-tools-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 0;
  flex: 1;
}
.pv-ref-tools-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.18);
}
.pv-ref-tools-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.38rem 0.62rem;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.pv-ref-tools-tabs__btn i {
  font-size: 0.82rem;
  line-height: 1;
}
.pv-ref-tools-tabs__btn:hover {
  color: #334155;
  background: rgba(255, 255, 255, 0.65);
}
.pv-ref-tools-tabs__btn.is-active {
  color: #107a3a;
  background: #fff;
  border-color: rgba(68, 187, 119, 0.22);
  box-shadow: 0 2px 8px rgba(8, 60, 30, 0.06);
}
.pv-ref-tools-tabs__panel {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 0;
}
.pv-ref-tools-tabs__panel.is-active {
  display: flex;
}
.pv-ref-tools-code__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.pv-ref-tools-code__toolbar > span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a9690;
}
.pv-ref-tools-code__copy {
  min-height: 0;
  padding: 0.32rem 0.55rem;
  font-size: 0.72rem;
}
.pv-ref-tools-code__box {
  margin: 0;
  padding: 0.72rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.85);
  background: #0f172a;
  color: #a5f3fc;
  font-size: 0.68rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-all;
  min-height: 4.5rem;
  max-height: 7rem;
  overflow: auto;
}
.pv-ref-tools-tips {
  overflow: hidden;
  border-color: rgba(245, 158, 11, 0.18);
}
.pv-ref-tools-tips__head.pv-card-head {
  background: linear-gradient(180deg, #fffdf5 0%, #fff9eb 100%) !important;
  border-bottom-color: rgba(245, 158, 11, 0.2) !important;
}
.pv-ref-tools-tips__head.pv-card-head--gold::after {
  background: linear-gradient(180deg, #fbbf24, #d97706);
}
.pv-ref-tools-tips__body {
  padding: 1rem 1.05rem 1.1rem !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.08), transparent 42%),
    #fff;
}
.pv-ref-tools-tips__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.pv-ref-tools-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0.8rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fafcfb 0%, #f5faf7 100%);
  border: 1px solid rgba(68, 187, 119, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.pv-ref-tools-tip--highlight {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 0% 0%, rgba(251, 191, 36, 0.12), transparent 55%),
    linear-gradient(180deg, #fffbeb 0%, #fff7e6 100%);
  border-color: rgba(245, 158, 11, 0.22);
}
.pv-ref-tools-tip__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(68, 187, 119, 0.22);
}
.pv-ref-tools-tip--highlight .pv-ref-tools-tip__ico {
  background: linear-gradient(145deg, #fbbf24, #d97706);
  box-shadow: 0 3px 10px rgba(217, 119, 6, 0.24);
}
.pv-ref-tools-tip strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.25;
}
.pv-ref-tools-tip p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
}
.pv-ref-tools-tip a {
  font-weight: 700;
}
.pv-ref-tools-tip code {
  padding: 0.08rem 0.3rem;
  border-radius: 6px;
  font-size: 0.72em;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
}
@media (max-width: 767.98px) {
  .pv-ref-tools-tips__grid {
    grid-template-columns: 1fr;
  }
  .pv-ref-tools-tip--highlight {
    grid-column: auto;
  }
}
@media (max-width: 767.98px) {
  .pv-ref-tools-hero {
    padding: 1rem;
    border-radius: 18px;
  }
  .pv-ref-tools-hero__stats {
    width: 100%;
  }
  .pv-ref-tools-stat {
    flex: 1 1 calc(50% - 0.35rem);
  }
  .pv-ref-tools-link__row .pv-dash-referral__copy-btn {
    width: 100%;
  }
  .pv-ref-tools-banner__body {
    grid-template-columns: 1fr;
  }
  .pv-ref-tools-banner__preview {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }
  .pv-ref-tools-tabs__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pv-ref-tools-tabs__btn {
    justify-content: center;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pv-ref-tools-stat:hover {
    transform: none;
  }
  .pv-ref-tools-banner__live:hover {
    transform: none;
  }
}

/* ── Static public pages (TOS, Contact) ── */
.pv-static-page {
  padding-bottom: 2rem;
}
.pv-static-page__hero {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(68, 187, 119, 0.14);
  background:
    radial-gradient(circle at 0% 0%, rgba(68, 187, 119, 0.1), transparent 48%),
    linear-gradient(145deg, #ffffff 0%, #f8fcf9 100%);
  box-shadow: 0 12px 28px rgba(8, 60, 30, 0.06);
}
.pv-static-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.28);
}
.pv-static-page__icon i {
  color: #fff;
  line-height: 1;
}
.pv-static-page__title {
  margin: 0 0 0.35rem;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #152019;
}
.pv-static-page__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5f6d66;
}
.pv-static-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.pv-static-page__card .card-body {
  padding: 1.15rem 1.25rem;
}
.pv-static-page__card--wide {
  grid-column: 1 / -1;
}
.pv-static-page__card-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  color: #152019;
}
.pv-static-page__card-title i {
  color: #44BB77;
}
.pv-static-page__text {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #64748b;
}
.pv-static-page__note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: #74808a;
}
.pv-static-page__email {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #107a3a;
  word-break: break-all;
}
.pv-static-page__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pv-static-page__btn--primary {
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.28);
}
.pv-static-page__btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
}
.pv-static-page__content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.pv-static-page__content section h2 {
  margin: 0 0 0.35rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  color: #152019;
}
.pv-static-page__content section p {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #64748b;
}
.pv-static-page__content section p:last-child {
  margin-bottom: 0;
}
.pv-static-page__content section h3 {
  margin: 0.75rem 0 0.35rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  color: #334155;
}
.pv-static-page__updated {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
}
.pv-static-page--legal .pv-static-page__card {
  margin-top: 1rem;
}
.pv-static-page__toc {
  margin-bottom: 0;
  overflow: hidden;
}
.pv-static-page__toc .card-body {
  padding: 1rem 1.1rem 1.15rem;
}
.pv-static-page__toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.pv-static-page__toc-title {
  display: block;
  margin: 0;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #152019;
}
.pv-static-page__toc-count {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #107a3a;
  background: rgba(68, 187, 119, 0.12);
  border: 1px solid rgba(68, 187, 119, 0.18);
}
.pv-toc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.pv-toc-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}
.pv-toc-link:hover {
  transform: translateY(-1px);
  border-color: rgba(68, 187, 119, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.1);
}
.pv-toc-link:focus-visible {
  outline: 2px solid rgba(68, 187, 119, 0.45);
  outline-offset: 2px;
}
.pv-toc-link__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  border-radius: 8px;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #107a3a;
  background: rgba(68, 187, 119, 0.12);
}
.pv-toc-link__label {
  flex: 1;
  min-width: 0;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  color: #334155;
}
.pv-toc-link:hover .pv-toc-link__label {
  color: #107a3a;
}
.pv-toc-link__arrow {
  flex-shrink: 0;
  font-size: 1.05rem;
  color: #94a3b8;
  transition: transform 160ms ease, color 160ms ease;
}
.pv-toc-link:hover .pv-toc-link__arrow {
  color: #44BB77;
  transform: translateX(2px);
}
.pv-static-page__content section {
  scroll-margin-top: 1.25rem;
}
.pv-static-page__bullets {
  margin: 0 0 0.65rem;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pv-static-page__bullets li {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #64748b;
}
.pv-static-page__bullets li strong {
  color: #334155;
}
.pv-static-page__content code {
  padding: 0.08rem 0.3rem;
  border-radius: 6px;
  font-size: 0.82em;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
}
@media (max-width: 991.98px) {
  .pv-toc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .pv-toc-grid {
    grid-template-columns: 1fr;
  }
  .pv-static-page__toc .card-body {
    padding: 0.9rem 0.95rem 1rem;
  }
}
.pv-static-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pv-static-page__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #64748b;
}
.pv-static-page__list i {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: #44BB77;
}
@media (max-width: 767.98px) {
  .pv-static-page__grid {
    grid-template-columns: 1fr;
  }
  .pv-static-page__card--wide {
    grid-column: auto;
  }
}


/* ── How It Works page (redesign) ── */
.pv-how-page {
  padding-bottom: 2rem;
}
.pv-how-page--member {
  padding-bottom: 1.5rem;
}
.pv-how-page__member-bar {
  margin-bottom: 1rem;
}
.pv-how-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: clamp(1.2rem, 3vw, 1.75rem);
  border-radius: 22px;
  border: 1px solid rgba(68, 187, 119, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.16), transparent 46%),
    radial-gradient(circle at 0% 100%, rgba(91, 159, 212, 0.12), transparent 50%),
    linear-gradient(145deg, #ffffff 0%, #f4fbf7 55%, #eef8f2 100%);
  box-shadow: 0 18px 40px rgba(8, 60, 30, 0.08);
}
.pv-how-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pv-how-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(68, 187, 119, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
}
.pv-how-hero__orb {
  position: absolute;
  border-radius: 50%;
}
.pv-how-hero__orb--1 {
  top: -3rem;
  right: -1.5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(68, 187, 119, 0.14);
}
.pv-how-hero__orb--2 {
  bottom: -2rem;
  left: 10%;
  width: 7rem;
  height: 7rem;
  background: rgba(249, 115, 22, 0.12);
}
.pv-how-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: center;
}
.pv-how-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #107a3a;
  background: rgba(68, 187, 119, 0.12);
  border: 1px solid rgba(68, 187, 119, 0.2);
}
.pv-how-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  margin: 0 0 0.65rem;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #152019;
}
.pv-how-hero__title-line {
  display: block;
}
.pv-how-hero__title-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.04em 0.34em 0.08em;
  border-radius: 0.35em;
  font-weight: 800;
  letter-spacing: -0.03em;
  vertical-align: baseline;
  transform: translateY(-0.02em);
}
.pv-how-hero__title-chip--xp {
  color: #fff;
  background: linear-gradient(135deg, #44BB77 0%, #2fa866 100%);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.28);
}
.pv-how-hero__title-line--level {
  background: linear-gradient(120deg, #ca8a04 0%, #f97316 55%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.pv-how-hero__title-line--cash {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-size: 1.08em;
  background: linear-gradient(120deg, #107a3a 0%, #44BB77 45%, #2fa866 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.pv-how-hero__title-line--cash::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.14em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(68, 187, 119, 0.45), rgba(47, 168, 102, 0.15));
}
.pv-how-hero__lead {
  margin: 0;
  max-width: 28rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5f6d66;
}
.pv-how-hero__lead strong {
  color: #152019;
}
.pv-how-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.pv-how-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.58rem 0.95rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.pv-how-hero__btn--primary {
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 8px 20px rgba(68, 187, 119, 0.28);
}
.pv-how-hero__btn--primary:hover {
  color: #fff;
  transform: translateY(-1px);
}
.pv-how-hero__btn--ghost {
  color: #107a3a;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(68, 187, 119, 0.24);
}
.pv-how-hero__diagram {
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
}
.pv-how-hero__flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}
.pv-how-hero__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.35rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.05);
  text-align: center;
}
.pv-how-hero__node-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 9px;
  color: #fff;
  font-size: 0.82rem;
}
.pv-how-hero__node--green .pv-how-hero__node-ico { background: linear-gradient(145deg, #44BB77, #2fa866); }
.pv-how-hero__node--gold .pv-how-hero__node-ico { background: linear-gradient(145deg, #facc15, #ca8a04); }
.pv-how-hero__node--purple .pv-how-hero__node-ico { background: linear-gradient(145deg, #a78bfa, #7c3aed); }
.pv-how-hero__node--orange .pv-how-hero__node-ico { background: linear-gradient(145deg, #fb923c, #ea580c); }
.pv-how-hero__node--blue .pv-how-hero__node-ico { background: linear-gradient(145deg, #5b9fd4, #4a8bc2); }
.pv-how-hero__node-label {
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.25;
  color: #475569;
}
.pv-how-hero__connector {
  display: none;
}
.pv-how-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.pv-how-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  box-shadow: 0 4px 14px rgba(8, 60, 30, 0.04);
}
.pv-how-highlight__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  border-radius: 9px;
  font-size: 0.85rem;
}
.pv-how-highlight--green .pv-how-highlight__ico { color: #107a3a; background: rgba(68, 187, 119, 0.14); }
.pv-how-highlight--blue .pv-how-highlight__ico { color: #2563eb; background: rgba(59, 130, 246, 0.12); }
.pv-how-highlight--slate .pv-how-highlight__ico { color: #475569; background: rgba(100, 116, 139, 0.12); }
.pv-how-highlight--gold .pv-how-highlight__ico { color: #b45309; background: rgba(234, 179, 8, 0.14); }
.pv-how-highlight__label {
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
  color: #334155;
}
.pv-how-section {
  margin-bottom: 1.25rem;
  scroll-margin-top: 1rem;
}
.pv-how-section__head {
  margin-bottom: 0.85rem;
}
.pv-how-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #107a3a;
  background: rgba(68, 187, 119, 0.12);
}
.pv-how-section__title {
  margin: 0 0 0.25rem;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #152019;
}
.pv-how-section__desc {
  margin: 0;
  font-size: 0.82rem;
  color: #74808a;
}
.pv-how-section--journey .pv-how-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  box-shadow:
    0 12px 30px rgba(8, 60, 30, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}
.pv-how-section--journey .pv-how-section__head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #44BB77 0%, #2fa866 100%);
}
.pv-how-section--journey .pv-how-section__head::after {
  content: '';
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 187, 119, 0.08), transparent 68%);
  pointer-events: none;
}
.pv-how-section__head-main {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.pv-how-section--journey .pv-how-section__badge {
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.62rem;
  border: 1px solid rgba(68, 187, 119, 0.22);
  background: linear-gradient(180deg, #f4fbf7 0%, #ecf8f1 100%);
  box-shadow: 0 2px 8px rgba(68, 187, 119, 0.08);
}
.pv-how-section--journey .pv-how-section__badge i {
  font-size: 0.72rem;
}
.pv-how-section--journey .pv-how-section__title {
  margin-bottom: 0.35rem;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  line-height: 1.15;
}
.pv-how-section--journey .pv-how-section__desc {
  max-width: 34rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #64748b;
}
.pv-how-section__head-aside {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  color: #107a3a;
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(68, 187, 119, 0.2);
  box-shadow: 0 8px 18px rgba(68, 187, 119, 0.12);
}
.pv-how-section__head-aside i {
  font-size: 1.35rem;
}
.pv-how-section__head-ring {
  position: absolute;
  inset: -0.35rem;
  border-radius: 18px;
  border: 1px dashed rgba(68, 187, 119, 0.28);
  pointer-events: none;
}
.pv-how-timeline-panel {
  padding: 1.1rem 1rem 1.15rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 60, 35, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.08), transparent 48%),
    linear-gradient(160deg, #166534 0%, #15803d 38%, #22c55e 100%);
  box-shadow: 0 16px 36px rgba(8, 60, 30, 0.18);
}
.pv-how-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.pv-how-timeline__item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}
.pv-how-timeline__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.pv-how-timeline__rail::after {
  content: '';
  position: absolute;
  top: 2.75rem;
  bottom: -0.85rem;
  width: 3px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.pv-how-timeline__item:last-child .pv-how-timeline__rail::after {
  display: none;
}
.pv-how-timeline__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 13px;
  color: #fff;
  font-size: 0.95rem;
  box-shadow:
    0 0 0 3px #fff,
    0 8px 18px rgba(0, 0, 0, 0.18);
  z-index: 1;
}
.pv-how-timeline__item--green .pv-how-timeline__dot { background: linear-gradient(145deg, #44BB77, #2fa866); }
.pv-how-timeline__item--gold .pv-how-timeline__dot { background: linear-gradient(145deg, #facc15, #ca8a04); }
.pv-how-timeline__item--purple .pv-how-timeline__dot { background: linear-gradient(145deg, #a78bfa, #7c3aed); }
.pv-how-timeline__item--orange .pv-how-timeline__dot { background: linear-gradient(145deg, #fb923c, #ea580c); }
.pv-how-timeline__item--blue .pv-how-timeline__dot { background: linear-gradient(145deg, #5b9fd4, #4a8bc2); }
.pv-how-timeline__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(7.5rem, 9.5rem);
  gap: 0.85rem;
  align-items: center;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: #fff;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}
.pv-how-timeline__body {
  min-width: 0;
}
.pv-how-timeline__item--green .pv-how-timeline__card { border-left: 3px solid #44BB77; }
.pv-how-timeline__item--gold .pv-how-timeline__card { border-left: 3px solid #ca8a04; }
.pv-how-timeline__item--purple .pv-how-timeline__card { border-left: 3px solid #7c3aed; }
.pv-how-timeline__item--orange .pv-how-timeline__card { border-left: 3px solid #ea580c; }
.pv-how-timeline__item--blue .pv-how-timeline__card { border-left: 3px solid #4a8bc2; }
.pv-how-timeline__step {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  background: #f1f5f9;
}
.pv-how-timeline__title {
  margin: 0 0 0.4rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  color: #152019;
}
.pv-how-timeline__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: #475569;
}
.pv-how-timeline__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}
.pv-how-timeline__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #107a3a;
  background: rgba(68, 187, 119, 0.1);
  border: 1px solid rgba(68, 187, 119, 0.22);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}
.pv-how-timeline__cta--alt {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.22);
}
.pv-how-timeline__cta:hover {
  color: #0b5c2d;
  background: rgba(68, 187, 119, 0.16);
  transform: translateX(2px);
  text-decoration: none;
}
.pv-how-timeline__cta--alt:hover {
  color: #9a3412;
  background: rgba(249, 115, 22, 0.16);
}
.pv-how-timeline__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.5rem;
  padding: 0.7rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fcf9 0%, #eef8f2 100%);
  border: 1px solid rgba(68, 187, 119, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.pv-how-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  text-align: center;
}
.pv-how-mock__screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 12px rgba(8, 60, 30, 0.06);
  font-size: 0.68rem;
  color: #64748b;
}
.pv-how-mock__screen strong {
  font-size: 0.78rem;
  color: #152019;
}
.pv-how-mock__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #44BB77;
  box-shadow: 0 0 0 3px rgba(68, 187, 119, 0.18);
}
.pv-how-mock__tag {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  color: #107a3a;
  background: rgba(68, 187, 119, 0.12);
}
.pv-how-mock__timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.pv-how-mock__timer svg {
  width: 2.5rem;
  height: 2.5rem;
}
.pv-how-mock__timer span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
}
.pv-how-mock__xp {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #107a3a;
  background: rgba(68, 187, 119, 0.14);
}
.pv-how-mock__grid {
  display: grid;
  grid-template-columns: repeat(3, 0.85rem);
  gap: 0.28rem;
}
.pv-how-mock__stone {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 3px;
  background: linear-gradient(145deg, #94a3b8, #64748b);
}
.pv-how-mock__stone.is-gem {
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 0 0 2px rgba(68, 187, 119, 0.25);
}
.pv-how-mock__cap,
.pv-how-mock--withdraw span,
.pv-how-mock--daily .pv-how-mock__label {
  font-size: 0.62rem;
  font-weight: 700;
  color: #8a9690;
}
.pv-how-mock__lvl {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 8.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: #334155;
}
.pv-how-mock__bar {
  flex: 1;
  height: 0.4rem;
  border-radius: 999px;
  background: #dbe5df;
  overflow: hidden;
}
.pv-how-mock__bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #44BB77, #2fa866);
}
.pv-how-mock--daily strong {
  font-family: 'Sora', var(--font-sans);
  font-size: 1rem;
  color: #152019;
}
.pv-how-mock__slots {
  display: flex;
  gap: 0.2rem;
}
.pv-how-mock__slots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 3px;
  background: #dbe5df;
}
.pv-how-mock__slots span.is-done {
  background: #44BB77;
}
.pv-how-mock__slots span.is-active {
  background: #facc15;
  box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.35);
}
.pv-how-mock--withdraw i {
  font-size: 1.25rem;
  color: #44BB77;
}
.pv-how-mock--withdraw strong {
  font-family: 'Sora', var(--font-sans);
  font-size: 0.95rem;
  color: #152019;
}
.pv-how-withdraw {
  margin-bottom: 1.25rem;
  scroll-margin-top: 1rem;
  overflow: hidden;
  border-color: rgba(68, 187, 119, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(68, 187, 119, 0.1), transparent 42%),
    #fff;
}
.pv-how-withdraw__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 1rem;
  align-items: center;
}
.pv-how-withdraw__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #107a3a;
  background: rgba(68, 187, 119, 0.12);
}
.pv-how-withdraw__title {
  margin: 0 0 0.65rem;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 800;
  color: #152019;
}
.pv-how-withdraw__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pv-how-withdraw__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #64748b;
}
.pv-how-withdraw__list i {
  flex-shrink: 0;
  margin-top: 0.08rem;
  color: #44BB77;
}
.pv-how-withdraw__list strong {
  color: #334155;
}
.pv-how-withdraw__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #107a3a;
  text-decoration: none;
}
.pv-how-withdraw__link:hover {
  text-decoration: underline;
}
.pv-how-withdraw__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.1rem 0.9rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(68, 187, 119, 0.22);
}
.pv-how-withdraw__clock {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.55rem;
}
.pv-how-withdraw__clock-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(68, 187, 119, 0.2);
  border-top-color: #44BB77;
  animation: pv-how-spin 3s linear infinite;
}
.pv-how-withdraw__clock i {
  position: relative;
  font-size: 1.25rem;
  color: #107a3a;
}
@keyframes pv-how-spin {
  to { transform: rotate(360deg); }
}
.pv-how-withdraw__aside strong {
  font-family: 'Sora', var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: #107a3a;
}
.pv-how-withdraw__aside span {
  margin-top: 0.15rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
}
.pv-how-withdraw__aside small {
  margin-top: 0.35rem;
  font-size: 0.66rem;
  font-weight: 700;
  color: #8a9690;
}
.pv-how-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.pv-how-bento__item {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 236, 234, 0.95);
  background: #fff;
  box-shadow: 0 6px 16px rgba(8, 60, 30, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.pv-how-bento__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8, 60, 30, 0.08);
}
.pv-how-bento__item--xp { border-top: 3px solid #eab308; }
.pv-how-bento__item--level { border-top: 3px solid #ea580c; }
.pv-how-bento__item--mine { border-top: 3px solid #7c3aed; }
.pv-how-bento__item--daily { border-top: 3px solid #4a8bc2; }
.pv-how-bento__item--wallet { border-top: 3px solid #44BB77; }
.pv-how-bento__item--ref { border-top: 3px solid #64748b; }
.pv-how-bento__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.45rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
}
.pv-how-bento__item--xp .pv-how-bento__icon { background: linear-gradient(145deg, #facc15, #ca8a04); }
.pv-how-bento__item--level .pv-how-bento__icon { background: linear-gradient(145deg, #fb923c, #ea580c); }
.pv-how-bento__item--mine .pv-how-bento__icon { background: linear-gradient(145deg, #a78bfa, #7c3aed); }
.pv-how-bento__item--daily .pv-how-bento__icon { background: linear-gradient(145deg, #5b9fd4, #4a8bc2); }
.pv-how-bento__item--wallet .pv-how-bento__icon { background: linear-gradient(145deg, #44BB77, #2fa866); }
.pv-how-bento__item--ref .pv-how-bento__icon { background: linear-gradient(145deg, #64748b, #475569); }
.pv-how-bento__title {
  margin: 0 0 0.25rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 0.84rem;
  font-weight: 800;
  color: #152019;
}
.pv-how-bento__text {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
}
.pv-how-start {
  scroll-margin-top: 1rem;
  border-color: rgba(68, 187, 119, 0.2);
  background: linear-gradient(145deg, #f8fcf9 0%, #eef8f2 100%);
}
.pv-how-start__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pv-how-start__title {
  margin: 0 0 0.25rem;
  font-family: 'Sora', var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  color: #152019;
}
.pv-how-start__text {
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
}
.pv-how-start__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pv-how-start__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.pv-how-start__btn--primary {
  color: #fff;
  background: linear-gradient(145deg, #44BB77, #2fa866);
  box-shadow: 0 6px 16px rgba(68, 187, 119, 0.28);
}
.pv-how-start__btn--ghost {
  color: #107a3a;
  background: #fff;
  border: 1px solid rgba(68, 187, 119, 0.28);
}
@media (max-width: 991.98px) {
  .pv-how-hero__grid {
    grid-template-columns: 1fr;
  }
  .pv-how-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pv-how-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pv-how-withdraw__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .pv-how-section--journey .pv-how-section__head {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .pv-how-section__head-aside {
    display: none;
  }
  .pv-how-timeline-panel {
    padding: 0.85rem 0.75rem 0.9rem 0.65rem;
  }
  .pv-how-timeline__item {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }
  .pv-how-timeline__card {
    grid-template-columns: 1fr;
  }
  .pv-how-timeline__visual {
    min-height: 5.5rem;
  }
  .pv-how-hero__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pv-how-bento {
    grid-template-columns: 1fr;
  }
}

/* ---------- Promote / PTC ads landing ---------- */
.pv-public-main:has(.pv-promo) {
  max-width: 1400px !important;
  width: 100%;
  padding: 0.85rem clamp(0.75rem, 2vw, 1.75rem) 2.2rem;
}
.pv-promo {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.pv-promo__hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.7rem 1.2rem 1.15rem;
  border-radius: 20px;
  overflow: hidden;
  color: #e8f7ee;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% -20%, rgba(251, 191, 36, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(68, 187, 119, 0.28), transparent 50%),
    linear-gradient(165deg, #0d3b24 0%, #14532d 42%, #0f291c 100%);
  border: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: 0 16px 40px rgba(8, 40, 22, 0.28);
}
.pv-promo__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255, 255, 255, 0.015) 12px,
    rgba(255, 255, 255, 0.015) 13px
  );
}
.pv-promo__hero > * {
  position: relative;
  z-index: 1;
}
.pv-promo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.7rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fde68a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pv-promo__title {
  margin: 0;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.95rem, 5.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.pv-promo__hook {
  margin: 0.4rem 0 0;
  font-family: 'Sora', var(--font-sans);
  font-size: clamp(1.15rem, 3.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fbbf24;
}
.pv-promo__lead {
  margin: 0.65rem auto 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #c5e4d0;
}
.pv-promo__lead strong {
  color: #fde68a;
}
.pv-promo__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.85rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}
.pv-promo__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9fd4b3;
}
.pv-promo__trust .bi {
  color: #fbbf24;
}
.pv-promo__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.05rem;
}
.pv-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.05rem;
  padding: 0.62rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.pv-promo__cta--primary {
  background: linear-gradient(180deg, #fcd34d 0%, #f59e0b 55%, #d97706 100%);
  color: #3b2208;
  border: 1px solid #fbbf24;
  box-shadow: 0 8px 0 #92400e, 0 12px 22px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.pv-promo__cta--primary:hover {
  color: #3b2208;
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.pv-promo__cta--ghost {
  background: transparent;
  color: #e8f7ee;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.pv-promo__cta--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.pv-promo__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: auto;
  max-width: 36rem;
  margin: 1.05rem 0 0;
  padding: 0.28rem 0.35rem;
  list-style: none;
  gap: 0;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 999px;
}
.pv-promo__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 5.4rem;
  padding: 0.38rem 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.pv-promo__stats li:last-child {
  border-right: 0;
}
.pv-promo__stats strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fbbf24;
}
.pv-promo__stats span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fd4b3;
}
.pv-promo__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid rgba(34, 197, 94, 0.25);
  font-size: 0.75rem;
  font-weight: 800;
  color: #107a3a;
  white-space: nowrap;
}
.pv-promo__live span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pvPromoPulse 1.6s ease-in-out infinite;
}
@keyframes pvPromoPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.pv-promo__grid {
  margin-left: 0;
  margin-right: 0;
}
.pv-promo-ad {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  height: 100%;
  padding: 1.15rem 0.9rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fff9 0%, #fff 55%);
  border: 1px solid #cfe6d6;
  box-shadow: 0 6px 16px rgba(13, 59, 36, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.pv-promo-ad:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(13, 59, 36, 0.14);
  border-color: #fbbf24;
}
.pv-promo-ad.is-hot {
  border-color: #f59e0b;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 58%);
  box-shadow: 0 8px 20px rgba(180, 83, 9, 0.14);
}
.pv-promo-ad__badge,
.pv-promo-ad__rank {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pv-promo-ad__badge {
  background: #f59e0b;
  color: #fff;
}
.pv-promo-ad__rank {
  background: #f1f5f9;
  color: #64748b;
}
.pv-promo-ad__ico {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.35rem auto 0.55rem;
  border-radius: 16px;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 8px 16px rgba(8, 60, 30, 0.14);
}
.pv-promo-ad--gold .pv-promo-ad__ico { background: linear-gradient(145deg, #f59e0b, #d97706); }
.pv-promo-ad--green .pv-promo-ad__ico { background: linear-gradient(145deg, #44BB77, #2fa866); }
.pv-promo-ad--lime .pv-promo-ad__ico { background: linear-gradient(145deg, #84cc16, #65a30d); }
.pv-promo-ad--blue .pv-promo-ad__ico { background: linear-gradient(145deg, #5b9fd4, #3f7fb8); }
.pv-promo-ad--teal .pv-promo-ad__ico { background: linear-gradient(145deg, #14b8a6, #0f766e); }
.pv-promo-ad--mint .pv-promo-ad__ico { background: linear-gradient(145deg, #34d399, #059669); }
.pv-promo-ad__pay {
  margin-bottom: 0.4rem;
}
.pv-promo-ad__pay span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.pv-promo-ad__pay strong {
  display: block;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #166534;
}
.pv-promo-ad.is-hot .pv-promo-ad__pay strong {
  color: #b45309;
}
.pv-promo-ad__body {
  flex: 1;
  min-width: 0;
  margin-bottom: 0.45rem;
}
.pv-promo-ad__body h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #152019;
  line-height: 1.25;
}
.pv-promo-ad__body p {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: #6b7870;
  line-height: 1.4;
}
.pv-promo-ad__left {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c2410c;
}
.pv-promo-ad__left i {
  margin-right: 0.2rem;
}
.pv-promo-ad__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 2.65rem;
  margin-top: auto;
  border-radius: 8px;
  background: linear-gradient(180deg, #4ade80 0%, #16a34a 55%, #15803d 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #86efac;
  box-shadow: 0 4px 0 #14532d, 0 8px 14px rgba(21, 128, 61, 0.28);
}
.pv-promo-ad.is-hot .pv-promo-ad__btn {
  background: linear-gradient(180deg, #fcd34d 0%, #f59e0b 55%, #d97706 100%);
  color: #3b2208;
  border-color: #fde68a;
  box-shadow: 0 4px 0 #92400e, 0 8px 14px rgba(217, 119, 6, 0.28);
}
.pv-promo-ad__btn:hover {
  color: #fff;
  filter: brightness(1.06);
}
.pv-promo-ad.is-hot .pv-promo-ad__btn:hover {
  color: #3b2208;
}
.pv-promo__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
.pv-promo__steps article {
  padding: 0.85rem 0.9rem 0.95rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #cfe6d6;
  box-shadow: 0 4px 12px rgba(13, 59, 36, 0.05);
}
.pv-promo__steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  margin-bottom: 0.4rem;
  border-radius: 6px;
  background: #14532d;
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 800;
}
.pv-promo__steps strong {
  display: block;
  font-size: 0.86rem;
  color: #14532d;
}
.pv-promo__steps p {
  margin: 0.2rem 0 0;
  font-size: 0.76rem;
  line-height: 1.4;
  color: #6b7870;
}
.pv-promo__foot {
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(251, 191, 36, 0.18), transparent 55%),
    linear-gradient(180deg, #14532d 0%, #0d3b24 100%);
  border: 1px solid rgba(251, 191, 36, 0.28);
  text-align: center;
  color: #e8f7ee;
}
.pv-promo__foot h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.pv-promo__foot p {
  margin: 0.45rem auto 0;
  max-width: 38rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #c5e4d0;
}
.pv-promo__foot .pv-promo__cta-row {
  justify-content: center;
  margin-top: 1rem;
}
@media (max-width: 991.98px) {
  .pv-promo__stats {
    border-radius: 14px;
    max-width: 22rem;
  }
  .pv-promo__stats li {
    min-width: 45%;
    flex: 1 1 40%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .pv-promo__stats li:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pv-promo__stats li:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .pv-promo__steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575.98px) {
  .pv-promo__cta {
    width: 100%;
  }
  .pv-promo__stats {
    border-radius: 12px;
  }
}

/* ---------- Full-screen banner promo ---------- */
html:has(body.pv-bannerpromo-body) {
  background: #000;
  background-color: #000;
}
body.pv-bannerpromo-body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #000 !important;
  background-color: #000 !important;
  background-image: none !important;
}
body.pv-bannerpromo-body::before {
  display: none;
}
.pv-bannerpromo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background: #000;
  text-decoration: none;
  cursor: pointer;
}
.pv-bannerpromo__img {
  display: block;
  user-select: none;
}
@media (min-width: 768px) {
  body.pv-bannerpromo-body {
    overflow: hidden;
  }
  .pv-bannerpromo__img {
    height: 100vh;
    height: 100dvh;
    width: auto;
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .pv-bannerpromo__img {
    width: 100%;
    height: auto;
  }
}
