/* Dashboard, Auth & Upload — Vice City cinematic theme */

.dash-page,
.auth-page,
.auth-cinematic-page {
  overflow-x: hidden;
  background: var(--bg-primary);
}

.dash-page .font-display,
.auth-page .font-display,
.auth-cinematic-page .font-display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

/* ── Hero ── */
.dash-hero {
  position: relative;
  padding: 2.5rem 0 2rem;
  overflow: hidden;
}

.dash-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dash-hero-gradient {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 60, 120, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(192, 38, 211, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 206, 209, 0.12) 0%, transparent 40%);
  animation: dashGradientDrift 16s ease-in-out infinite alternate;
}

.dash-hero-gradient-2 {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(255, 107, 53, 0.12) 0%, transparent 45%);
  animation: dashGradientDrift 20s ease-in-out infinite alternate-reverse;
}

@keyframes dashGradientDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -3%) scale(1.06); }
}

.dash-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.dash-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dash-welcome { flex: 1; min-width: 240px; }

.dash-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gta6-teal);
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 206, 209, 0.08);
  border: 1px solid rgba(0, 206, 209, 0.25);
  border-radius: 999px;
}

.dash-welcome h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.dash-welcome h1 .accent,
.upload-hero h1 .accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dash-welcome p { color: var(--text-secondary); font-size: 0.95rem; max-width: 480px; }

.dash-hero-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 40px rgba(255, 60, 120, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.15);
  animation: avatarPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

.dash-hero-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(255, 60, 120, 0.35); }
  50% { box-shadow: 0 0 50px rgba(192, 38, 211, 0.55); }
}

/* ── Layout ── */
.dash-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.75rem;
  padding-bottom: 4rem;
  align-items: start;
}

.dash-sidebar {
  background: rgba(26, 26, 46, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  box-shadow: var(--shadow-neon);
}

.dash-sidebar-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.dash-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--accent-gradient);
  border-radius: 0 3px 3px 0;
  transition: height 0.25s ease;
}

.dash-nav a:hover {
  background: rgba(255, 60, 120, 0.08);
  color: var(--gta6-pink);
  transform: translateX(4px);
}

.dash-nav a.active {
  background: rgba(255, 60, 120, 0.12);
  color: var(--gta6-pink);
  box-shadow: 0 0 20px rgba(255, 60, 120, 0.1);
}

.dash-nav a.active::before { height: 60%; }

.dash-nav a.upload-link {
  margin-top: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 60, 120, 0.15), rgba(192, 38, 211, 0.1));
  border: 1px solid rgba(255, 60, 120, 0.3);
  color: var(--gta6-pink);
  font-weight: 600;
}

.dash-nav a.upload-link:hover {
  background: linear-gradient(135deg, rgba(255, 60, 120, 0.25), rgba(192, 38, 211, 0.15));
  box-shadow: 0 0 25px rgba(255, 60, 120, 0.2);
}

/* ── Panels ── */
.dash-content { min-height: 400px; }

.dash-panel { display: none; }

.dash-panel.active {
  display: block;
  animation: dashPanelIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dashPanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.dash-panel-header { margin-bottom: 1.5rem; }
.dash-panel-header h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.dash-panel-header p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Stats ── */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.dash-stat-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.dash-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 60, 120, 0.4);
  box-shadow: 0 12px 40px rgba(255, 60, 120, 0.12);
}

.dash-stat-card:hover::after { opacity: 1; }

.dash-stat-icon { margin-bottom: 0.65rem; opacity: 0.9; }

.dash-stat-card .value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--gta6-teal), var(--gta6-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dash-stat-card .label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; font-weight: 500; }
.dash-stat-card .sub { font-size: 0.72rem; color: var(--gta6-teal); margin-top: 0.25rem; }

/* ── Quick actions ── */
.dash-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.dash-action-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  width: 100%;
  text-align: left;
}

.dash-action-card:hover {
  border-color: rgba(255, 60, 120, 0.45);
  background: rgba(255, 60, 120, 0.06);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 30px rgba(255, 60, 120, 0.15);
  color: var(--text-primary);
}

.dash-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 60, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.dash-action-card:hover .dash-action-icon { transform: scale(1.1) rotate(-3deg); }

.dash-action-text strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; }
.dash-action-text span { font-size: 0.78rem; color: var(--text-muted); }

/* ── Glass cards & recent ── */
.dash-recent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.dash-glass-card {
  background: rgba(26, 26, 46, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-neon);
}

.dash-glass-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gta6-teal);
}

.dash-recent-list { display: flex; flex-direction: column; gap: 0.5rem; }

.dash-recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.dash-recent-item:hover { background: rgba(255, 255, 255, 0.03); }
.dash-recent-item a { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.dash-recent-item a:hover { color: var(--gta6-pink); }
.dash-recent-meta { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }

.dash-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: rgba(26, 26, 46, 0.5);
}

.dash-table-wrap .data-table th { background: rgba(0, 0, 0, 0.2); }

.dash-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(26, 26, 46, 0.4);
  border: 1px dashed rgba(255, 60, 120, 0.25);
  border-radius: var(--radius-lg);
}

.dash-empty-icon { margin: 0 auto 1rem; opacity: 0.7; }
.dash-empty h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.dash-empty p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ── Profile ── */
.dash-profile-card { max-width: 520px; }

.dash-profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.dash-profile-avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 60, 120, 0.35);
}

.dash-profile-avatar-lg img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.dash-profile-header h3 { font-size: 1.25rem; font-weight: 800; }
.dash-profile-header .role { font-size: 0.8rem; color: var(--gta6-pink); text-transform: uppercase; font-weight: 600; letter-spacing: 0.06em; }

/* ── Upload page ── */
.upload-hero {
  position: relative;
  padding: 2.5rem 0 1.5rem;
  overflow: hidden;
}

.upload-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.upload-steps {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.upload-step {
  flex: 1;
  min-width: 140px;
  padding: 1rem;
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.upload-step strong {
  display: block;
  color: var(--gta6-teal);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.upload-form-card {
  max-width: 760px;
  background: rgba(26, 26, 46, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-neon);
}

.upload-form-card .btn-primary { position: relative; overflow: hidden; }

.upload-form-card .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.upload-form-card .btn-primary:hover::after { transform: translateX(100%); }

#submitBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ── Auth ── */
body.auth-page {
  min-height: 100vh;
  display: block;
}

.auth-cinematic-page { min-height: 100vh; }

.auth-cinematic-wrap {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  overflow: hidden;
}

.auth-cinematic-bg { position: absolute; inset: 0; z-index: 0; }

.auth-cinematic-bg .dash-hero-gradient,
.auth-cinematic-bg .dash-hero-gradient-2,
.auth-cinematic-bg .dash-hero-grain { position: absolute; inset: 0; }

.auth-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  animation: authOrbFloat 12s ease-in-out infinite;
}

.auth-orb-1 {
  width: 180px;
  height: 180px;
  background: rgba(255, 60, 120, 0.5);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.auth-orb-2 {
  width: 140px;
  height: 140px;
  background: rgba(192, 38, 211, 0.45);
  top: 60%;
  right: 12%;
  animation-delay: -4s;
  animation-duration: 15s;
}

.auth-orb-3 {
  width: 100px;
  height: 100px;
  background: rgba(0, 206, 209, 0.4);
  bottom: 20%;
  left: 25%;
  animation-delay: -7s;
  animation-duration: 18s;
}

@keyframes authOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.08); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.auth-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gta6-pink);
  opacity: 0;
  animation: authParticleDrift 8s ease-in-out infinite;
}

@keyframes authParticleDrift {
  0% { opacity: 0; transform: translateY(0); }
  15% { opacity: 0.6; }
  85% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px); }
}

.auth-cinematic-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--shadow-neon);
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-cinematic-card.auth-card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.auth-cinematic-card .auth-logo {
  text-align: center;
  margin-bottom: 1.5rem;
  animation: authLogoFloat 4s ease-in-out infinite;
}

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

.auth-cinematic-card h1 { font-size: 1.75rem; font-weight: 800; text-align: center; margin-bottom: 0.35rem; }
.auth-cinematic-card .subtitle { text-align: center; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1.75rem; }

.auth-field-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-field-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.auth-cinematic-card .form-control {
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.auth-cinematic-card .form-control:focus {
  border-color: var(--gta6-pink);
  box-shadow: 0 0 0 3px rgba(255, 60, 120, 0.15), 0 0 24px rgba(255, 60, 120, 0.12);
  background: rgba(26, 26, 46, 0.95);
}

.auth-cinematic-card .btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.25s;
}

.auth-cinematic-card .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.55s;
}

.auth-cinematic-card .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(255, 60, 120, 0.35);
  animation: authBtnPulse 2s ease-in-out infinite;
}

.auth-cinematic-card .btn-primary:hover::after {
  transform: translateX(100%);
}

@keyframes authBtnPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 60, 120, 0.25); }
  50% { box-shadow: 0 0 35px rgba(255, 60, 120, 0.45); }
}

.auth-cinematic-card .auth-divider a {
  position: relative;
  font-weight: 600;
  transition: color 0.25s, text-shadow 0.25s;
}

.auth-cinematic-card .auth-divider a:hover {
  color: var(--gta6-hot-pink);
  text-shadow: 0 0 12px rgba(255, 60, 120, 0.4);
}

/* ── Reveal ── */
.dash-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-reveal.visible { opacity: 1; transform: translateY(0); }

.dash-reveal-delay-1 { transition-delay: 0.08s; }
.dash-reveal-delay-2 { transition-delay: 0.16s; }
.dash-reveal-delay-3 { transition-delay: 0.24s; }
.dash-reveal-delay-4 { transition-delay: 0.32s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .dash-recent-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-quick-actions { grid-template-columns: 1fr; }
  .dash-hero-content { flex-direction: column-reverse; align-items: flex-start; }
  .dash-hero-avatar { width: 64px; height: 64px; font-size: 1.5rem; }
  .upload-steps { flex-direction: column; }
  .dash-earn-grid { grid-template-columns: 1fr; }
  .earn-how-grid { grid-template-columns: 1fr; }
  .earn-rates-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Earnings ── */
.dash-earn-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-earn-referral {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.dash-earn-referral h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.dash-earn-ref-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.dash-earn-ref-row code {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  word-break: break-all;
  color: var(--gta6-teal);
}

.dash-earn-code {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dash-earn-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.earn-amount {
  color: var(--gta6-teal);
  font-weight: 600;
}

.earn-type {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
}

.earn-type-mod_download { color: #f472b6; }
.earn-type-referral_download,
.earn-type-referral_signup { color: var(--gta6-teal); }

.earn-page .earn-hero { min-height: 42vh; }
.earn-hero-content { padding: 3rem 0 2rem; }
.earn-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.earn-body { padding: 2rem 0 4rem; }

.earn-rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.earn-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.earn-how-card {
  padding: 1.75rem;
}

.earn-how-icon {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.earn-how-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.earn-how-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.earn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.earn-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.earn-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gta6-teal);
}

.earn-faq {
  padding: 2rem;
}

.earn-faq h2 {
  margin-bottom: 1.25rem;
}

.earn-faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.earn-faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.earn-faq-list summary::-webkit-details-marker { display: none; }

.earn-faq-list p {
  margin-top: 0.65rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .dash-earn-summary { grid-template-columns: repeat(2, 1fr); }
  .earn-rates-grid { grid-template-columns: repeat(2, 1fr); }
  .earn-how-grid { grid-template-columns: 1fr; }
}

/* Monetization */
.mon-coming-banner {
  background: linear-gradient(135deg, rgba(255, 60, 120, 0.12), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(255, 60, 120, 0.35);
  border-radius: var(--radius-lg, 12px);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
  text-align: center;
}

.mon-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--gta6-pink), var(--gta6-purple));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mon-coming-banner p {
  color: var(--text-muted);
  margin: 0.5rem 0;
  line-height: 1.5;
}

.mon-progress-card h3,
.mon-apply-card h3,
.mon-waitlist-inline h3 {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mon-progress-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.mon-progress-item {
  margin-bottom: 1.1rem;
}

.mon-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.mon-progress-header span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mon-progress-nums {
  color: var(--text-muted);
  font-size: 0.82rem;
}

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

.mon-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gta6-pink), var(--gta6-purple));
  border-radius: 999px;
  transition: width 0.6s ease;
}

.mon-progress-fill.met {
  background: linear-gradient(90deg, var(--gta6-teal), #22c55e);
}

.mon-progress-met {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--gta6-teal);
  margin-top: 0.35rem;
}

.mon-apply-card,
.mon-progress-card,
.mon-waitlist-inline,
.mon-waitlist-card {
  margin-bottom: 1.25rem;
}

.mon-apply-hint {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.mon-waitlist-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.mon-waitlist-form .form-control {
  flex: 1;
  min-width: 200px;
}

.mon-community-cta {
  margin-top: 1rem;
}

.mon-app-status {
  margin-bottom: 1.25rem;
}

.mon-admin-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.mon-waitlist-card h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
