/* ===========================
   JUSTEXPOSURE DASHBOARD STYLES
   Playlist Push Desktop Layout & Mobile Parity
   Thin 64px Icon Sidebar, Separate Standalone Top Header Bar, Tiled Submit Section, 5-Col Sound Grid
   =========================== */

:root {
  --pp-bg: #141720;
  --pp-header-bg: #0E1118;
  --pp-card-bg: #1B202D;
  --pp-card-border: rgba(255, 255, 255, 0.08);
  --pp-primary-blue: #2563EB;
  --pp-primary-blue-hover: #1D4ED8;
  --pp-text: #F8FAFC;
  --pp-text-sub: #94A3B8;
  --pp-yellow: #EAB308;
  --pp-yellow-bg: rgba(234, 179, 8, 0.15);
  
  --grid-cols: 5;
  --sidebar-width: 64px;
}

body.dashboard-body {
  background: var(--pp-bg);
  color: var(--pp-text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* --- Layout Container --- */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

/* --- THIN ICON-ONLY LEFT SIDEBAR --- */
.thin-sidebar {
  width: var(--sidebar-width);
  background: #090B10;
  border-right: 1px solid var(--pp-card-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-border-box;
}

.sidebar-top-group,
.sidebar-bottom-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.sidebar-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 42, 84, 0.1);
  transition: transform 0.2s, width 0.25s, padding 0.25s;
  text-decoration: none;
  box-sizing: border-box;
}

.sidebar-logo-icon:hover {
  transform: scale(1.04);
}

.sidebar-logo-icon .logo-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.logo-brand-text {
  display: none;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.logo-brand-text span {
  color: #EC4899;
}

.sidebar-icon-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.icon-nav-item {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-text-sub);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-sizing: border-box;
}

.icon-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--pp-text);
}

.icon-nav-item.active {
  background: rgba(37, 99, 235, 0.15);
  color: #60A5FA;
}

.nav-label {
  display: none;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

/* EXPANDED SIDEBAR STATE */
.thin-sidebar.expanded {
  width: 220px;
  align-items: flex-start;
  padding: 16px 12px;
}

.thin-sidebar.expanded .sidebar-top-group,
.thin-sidebar.expanded .sidebar-bottom-group {
  align-items: flex-start;
}

.thin-sidebar.expanded .sidebar-icon-nav {
  align-items: flex-start;
}

.thin-sidebar.expanded .sidebar-logo-icon {
  width: 100%;
  justify-content: flex-start;
  padding: 0 10px;
  gap: 12px;
}

.thin-sidebar.expanded .logo-brand-text {
  display: inline-block;
}

.thin-sidebar.expanded .icon-nav-item {
  width: 100%;
  justify-content: flex-start;
  padding: 0 12px;
  gap: 12px;
}

.thin-sidebar.expanded .nav-label {
  display: inline-block;
}

.thin-sidebar.expanded .sidebar-bottom-divider {
  width: calc(100% - 16px);
  margin: 6px 8px;
}

/* --- RIGHT CONTENT WRAPPER --- */
.dashboard-right-wrapper {
  flex: 1;
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--pp-bg);
  transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.sidebar-expanded .dashboard-right-wrapper {
  margin-left: 220px;
}

/* --- SEPARATE STANDALONE HEADER BAR --- */
.pp-top-bar {
  height: 58px;
  background: var(--pp-header-bg);
  border-bottom: 1px solid var(--pp-card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 90;
}

.header-left-title h1 {
  font-size: 14px;
  font-weight: 700;
  color: var(--pp-text-sub);
  margin: 0;
  letter-spacing: -0.2px;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.balance-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
}

.balance-label {
  color: var(--pp-text-sub);
  font-size: 10px;
}

.balance-amount {
  color: #22C55E;
  font-weight: 800;
  font-size: 13px;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--pp-card-border);
  cursor: pointer;
  transition: background 0.2s;
}

.user-pill:hover {
  background: rgba(255, 255, 255, 0.08);
}

.user-avatar-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #FFF;
}

.user-pill-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.user-role {
  font-size: 10px;
  color: var(--pp-text-sub);
}

.user-name {
  font-size: 12px;
  font-weight: 700;
}

/* --- MAIN CONTENT AREA --- */
.dashboard-main-area {
  flex: 1;
  padding: 28px 32px 90px;
  max-width: 1550px;
}

/* --- SUBMIT TO GET PAID CARD (TILED) --- */
.submit-section-tiled {
  margin-bottom: 32px;
  max-width: 380px;
}

.submit-card-compact {
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  padding: 24px;
}

.card-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}

.card-desc {
  font-size: 12px;
  color: var(--pp-text-sub);
  line-height: 1.5;
  margin: 0 0 20px;
}

.submit-form-ax {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-ax {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-ax input {
  width: 100%;
  padding: 12px 14px;
  background: #111522;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFF;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}

.form-group-ax input:focus {
  border-color: #4F46E5;
}

.info-alert-ax {
  padding: 14px 16px;
  background: rgba(49, 62, 114, 0.3);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 10px;
  color: #818CF8;
  font-size: 12px;
  line-height: 1.5;
}

.info-alert-ax a {
  color: #A5B4FC;
  text-decoration: underline;
}

.btn-submit-ax {
  padding: 10px 20px;
  background: #4F46E5;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-submit-ax:hover {
  background: #4338CA;
}

/* --- SOUNDS AVAILABLE TO USE SECTION --- */
.sounds-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sounds-section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--pp-text-sub);
}

.pp-tabs-row {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--pp-card-border);
  padding-bottom: 10px;
}

.pp-tab {
  background: none;
  border: none;
  color: var(--pp-text-sub);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  position: relative;
  font-family: inherit;
}

.pp-tab.active {
  color: var(--pp-text);
  font-weight: 800;
}

.pp-tab.active::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pp-primary-blue);
}

.tab-info-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--pp-text-sub);
  margin-bottom: 10px;
}

.tab-info-banner svg {
  color: #818CF8;
}

.tab-info-banner a {
  color: var(--pp-text-sub);
  text-decoration: underline;
}

/* --- 5-COLUMN TILED SOUND CARDS GRID --- */
.pp-cards-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: 16px;
}

.pp-sound-card {
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.pp-sound-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #121520;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-new {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #FF2A54;
  color: #FFF;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.play-overlay-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.08);
}

.card-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.reward-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--pp-text-sub);
}

.reward-tag {
  background: var(--pp-yellow-bg);
  color: var(--pp-yellow);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}

.req-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.req-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--pp-text-sub);
}

.req-text {
  font-size: 11px;
  color: var(--pp-text-sub);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.budget-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.budget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--pp-text-sub);
}

.progress-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--pp-yellow);
  border-radius: 2px;
}

.btn-use-sound {
  width: 100%;
  padding: 10px;
  background: var(--pp-primary-blue);
  color: #FFF;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-use-sound:hover {
  background: var(--pp-primary-blue-hover);
}

.card-footer-actions {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding-top: 4px;
}

.action-link {
  background: none;
  border: none;
  color: var(--pp-text-sub);
  cursor: pointer;
  padding: 0;
  font-size: 10px;
  font-family: inherit;
}

.action-link:hover {
  color: var(--pp-text);
}

/* --- DASHBOARD TAB VIEWS --- */
.dash-view-tab {
  display: none;
}

.dash-view-tab.active {
  display: block;
}

/* --- SUBMITTED VIDEOS TAB SECTION --- */
.submissions-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.submissions-header-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--pp-card-border);
  padding-bottom: 16px;
}

.submissions-section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--pp-text-sub);
}

.sub-filter-row {
  display: flex;
  gap: 10px;
}

.sub-pill {
  background: transparent;
  color: var(--pp-text-sub);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--pp-card-border);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.sub-pill:hover {
  color: var(--pp-text);
  border-color: rgba(255, 255, 255, 0.2);
}

.sub-pill.active {
  background: var(--pp-primary-blue);
  color: #FFF;
  border-color: var(--pp-primary-blue);
  font-weight: 700;
}

.submissions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  transition: transform 0.2s, border-color 0.2s;
}

.sub-item-row:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.sub-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sub-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  background: #111420;
}

.sub-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sub-time {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--pp-text-sub);
}

.sub-song {
  font-size: 15px;
  font-weight: 800;
  color: #FFF;
  margin: 0;
}

.sub-artist {
  font-size: 12px;
  color: var(--pp-text-sub);
}

.sub-item-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sub-status-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--pp-text-sub);
}

.status-icon {
  color: #22C55E;
  font-weight: 800;
}

.sub-payout-pill {
  background: #10B981;
  color: #FFF;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.25);
  white-space: nowrap;
}

/* --- EARNINGS & PAYOUTS TAB STYLES --- */
.earnings-dashboard-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.earnings-top-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 20px;
}

.earnings-left-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.earnings-chart-card {
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  padding: 20px;
}

.chart-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--pp-text-sub);
}

.chart-bars-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 160px;
  padding-top: 24px;
  border-bottom: 1px solid var(--pp-card-border);
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.bar-val {
  font-size: 10px;
  color: var(--pp-text-sub);
  font-weight: 700;
}

.bar-fill {
  width: 32px;
  background: linear-gradient(180deg, #3B82F6 0%, #2563EB 100%);
  border-radius: 4px 4px 0 0;
  transition: height 0.3s ease;
}

.bar-label {
  font-size: 10px;
  color: var(--pp-text-sub);
  margin-top: 6px;
}

.payout-action-card {
  display: flex;
  gap: 24px;
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  padding: 24px;
}

.balance-block-left {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.balance-title {
  font-size: 12px;
  color: var(--pp-text-sub);
  font-weight: 700;
}

.balance-huge {
  font-size: 36px;
  font-weight: 800;
  color: #22C55E;
  margin: 6px 0;
}

.pending-subtext {
  font-size: 11px;
  color: var(--pp-text-sub);
}

.create-payout-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #111522;
  border: 1px solid var(--pp-card-border);
  border-radius: 12px;
  padding: 20px;
}

.box-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}

.payout-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payout-radio-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #181D2D;
  border: 1px solid var(--pp-card-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.payout-radio-item.active {
  border-color: #3B82F6;
  background: rgba(59, 130, 246, 0.08);
}

.radio-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.method-name {
  font-size: 13px;
  color: #FFF;
}

.method-desc {
  font-size: 11px;
  color: var(--pp-text-sub);
}

.method-last-used {
  font-size: 10px;
  color: var(--pp-text-sub);
  margin-top: 2px;
}

.add-method-link {
  font-size: 11px;
  color: #60A5FA;
  text-decoration: underline;
}

.payout-warning-msg {
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 6px;
  color: #FCA5A5;
  font-size: 11px;
  line-height: 1.4;
}

.btn-request-payout {
  padding: 10px 20px;
  background: #10B981;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  width: fit-content;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.btn-request-payout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #059669;
}

.earnings-right-col {
  display: flex;
  flex-direction: column;
}

.totals-summary-card {
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.totals-header-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.totals-select-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--pp-text-sub);
}

.year-select-dropdown {
  background: #111522;
  border: 1px solid var(--pp-card-border);
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
}

.metric-summary-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-label {
  font-size: 11px;
  color: var(--pp-text-sub);
}

.metric-amount.blue-highlight {
  font-size: 32px;
  font-weight: 800;
  color: #38BDF8;
  margin: 0;
}

.monthly-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--pp-card-border);
  padding-top: 16px;
}

.month-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--pp-text-sub);
}

.month-row strong {
  color: var(--pp-text);
}

.payouts-history-card {
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.history-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--pp-card-border);
  padding-bottom: 14px;
}

.history-main-tabs,
.history-sub-pills {
  display: flex;
  gap: 12px;
}

.hist-tab {
  background: none;
  border: none;
  color: var(--pp-text-sub);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  font-family: inherit;
}

.hist-tab.active {
  color: #FFF;
  font-weight: 800;
}

.hist-pill {
  background: transparent;
  border: 1px solid var(--pp-card-border);
  color: var(--pp-text-sub);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
}

.hist-pill.active {
  background: #3B82F6;
  color: #FFF;
  border-color: #3B82F6;
  font-weight: 700;
}

.transactions-table-wrapper {
  overflow-x: auto;
}

.transactions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.transactions-table th {
  text-align: left;
  color: var(--pp-text-sub);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--pp-card-border);
}

.transactions-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.amount-col.payout-neg {
  color: #38BDF8;
  font-weight: 800;
}

.amount-col.payout-pos {
  color: #22C55E;
  font-weight: 800;
}

.fee-sub {
  font-size: 10px;
  color: var(--pp-text-sub);
  font-weight: 400;
}

.status-badge-completed {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  font-weight: 800;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.date-col, .desc-col {
  color: var(--pp-text-sub);
}

.ref-col a {
  color: #38BDF8;
  text-decoration: underline;
}

.table-footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
}

.btn-load-more {
  background: #111522;
  border: 1px solid var(--pp-card-border);
  color: var(--pp-text);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-load-more:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* --- REFERRAL PROGRAM TAB STYLES --- */
.referral-dashboard-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.referral-activity-card {
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ref-tabs-row {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--pp-card-border);
  padding-bottom: 14px;
}

.ref-tab {
  background: none;
  border: none;
  color: var(--pp-text-sub);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  font-family: inherit;
}

.ref-tab.active {
  color: #FFF;
  font-weight: 800;
}

.ref-table-wrapper {
  overflow-x: auto;
}

.ref-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ref-table th {
  text-align: left;
  color: var(--pp-text-sub);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--pp-card-border);
}

.ref-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--pp-text-sub);
}

.visited-time {
  color: #FFF;
  display: block;
  font-size: 13px;
}

.visited-source {
  font-size: 11px;
  color: var(--pp-text-sub);
}

.earned-zero {
  font-weight: 700;
}

.unique-link-box {
  background: #111522;
  border: 1px solid var(--pp-card-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-box-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}

.link-box-desc {
  font-size: 12px;
  color: var(--pp-text-sub);
  margin: 0;
}

.link-inputs-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.input-copy-group {
  display: flex;
  flex: 1;
  min-width: 240px;
  background: #181D2D;
  border: 1px solid var(--pp-card-border);
  border-radius: 8px;
  overflow: hidden;
}

.input-copy-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #FFF;
  font-size: 13px;
  font-family: inherit;
  outline: none;
}

.btn-copy-link {
  background: var(--pp-primary-blue);
  border: none;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  padding: 0 18px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-copy-link:hover {
  background: var(--pp-primary-blue-hover);
}

.or-separator {
  font-size: 11px;
  font-weight: 800;
  color: var(--pp-text-sub);
}

.custom-hint-text {
  font-size: 11px;
  color: var(--pp-text-sub);
  margin: 0;
}

.custom-hint-text a {
  color: #60A5FA;
  text-decoration: underline;
}

/* CIRCLE SHOWCASE */
.ref-showcase-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.showcase-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.showcase-circle:hover {
  transform: scale(1.03);
}

.circle-tiktok {
  background: linear-gradient(135deg, #111 0%, #1A1A24 100%);
  border: 2px solid rgba(255, 42, 84, 0.4);
}

.mock-bio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.bio-handle {
  font-size: 13px;
  color: #FFF;
}

.bio-stats {
  display: flex;
  gap: 8px;
  font-size: 10px;
  color: var(--pp-text-sub);
}

.bio-stats strong {
  color: #FFF;
}

.btn-bio-follow {
  background: #FF2A54;
  color: #FFF;
  border: none;
  border-radius: 4px;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 800;
  margin: 2px 0;
}

.bio-desc {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: var(--pp-text-sub);
  gap: 2px;
}

.bio-link, .ig-link {
  color: #60A5FA;
  font-weight: 700;
  font-size: 10px;
}

.circle-playlist {
  background: linear-gradient(135deg, #C026D3 0%, #9333EA 100%);
  border: 2px solid rgba(192, 38, 211, 0.5);
}

.mock-playlist-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #FFF;
}

.playlist-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  opacity: 0.8;
}

.playlist-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
}

.playlist-desc {
  font-size: 10px;
  opacity: 0.9;
  line-height: 1.3;
  margin: 0;
}

.playlist-saves {
  font-size: 9px;
  opacity: 0.75;
}

.circle-instagram {
  background: #FFF;
  color: #111;
  border: 2px solid #E5E7EB;
}

.mock-ig-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ig-handle {
  font-size: 13px;
  color: #111;
}

.ig-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 10px;
  color: #6B7280;
}

.ig-stats strong {
  color: #111;
}

.ig-desc {
  font-size: 10px;
  color: #4B5563;
  margin: 0;
  line-height: 1.3;
}

/* REWARDS 3-COL CARD */
.ref-rewards-card {
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rewards-card-title {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

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

.reward-col-title {
  font-size: 13px;
  font-weight: 800;
  color: #38BDF8;
  margin: 0 0 6px 0;
}

.reward-col-desc {
  font-size: 11px;
  color: var(--pp-text-sub);
  line-height: 1.5;
  margin: 0;
}

/* BOTTOM 3 CARDS */
.ref-bottom-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bottom-ref-card {
  background: var(--pp-card-bg);
  border: 1px solid var(--pp-card-border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b-card-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--pp-text-sub);
}

.b-code-box {
  background: #111522;
  border: 1px solid var(--pp-card-border);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  word-break: break-all;
}

.b-card-desc {
  font-size: 11px;
  color: var(--pp-text-sub);
  line-height: 1.4;
  margin: 0;
}

.b-card-link {
  font-size: 11px;
  color: #60A5FA;
  text-decoration: underline;
  font-weight: 600;
  margin-top: auto;
}

/* --- BOTTOM AMBER NOTIFICATION BAR (PLAYLIST PUSH PARITY) --- */
.bottom-amber-bar {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  background: #332707;
  border: 1px solid #71580E;
  padding: 12px 24px;
  text-align: center;
  font-size: 12px;
  color: #FDE047;
  border-radius: 8px;
  margin-top: 32px;
  box-sizing: border-box;
  clear: both;
}

.bottom-amber-bar a {
  color: #FDE047;
  font-weight: 700;
  text-decoration: underline;
}

/* --- SWITCH PROFILE & SETTINGS MODAL --- */
.settings-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.settings-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.settings-modal-card {
  width: 100%;
  max-width: 650px;
  background: #181D2F;
  border-top: 1px solid var(--pp-card-border);
  border-radius: 20px 20px 0 0;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.settings-modal-overlay.active .settings-modal-card {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--pp-text-sub);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
}

.modal-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--pp-card-border);
  padding-bottom: 12px;
  margin-bottom: 20px;
  overflow-x: auto;
}

.modal-tab {
  background: none;
  border: none;
  color: var(--pp-text-sub);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.modal-tab.active {
  background: rgba(59, 130, 246, 0.15);
  color: #3B82F6;
  font-weight: 700;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.setting-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.setting-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--pp-text-sub);
}

.segmented-control {
  display: flex;
  background: #111625;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--pp-card-border);
}

.seg-btn {
  flex: 1;
  padding: 8px;
  background: none;
  border: none;
  color: var(--pp-text-sub);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.seg-btn.active {
  background: #3B82F6;
  color: #FFF;
  font-weight: 700;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.setting-val-tag {
  color: var(--pp-text-sub);
  font-size: 12px;
}

/* --- MOBILE BOTTOM DOCK & RESPONSIVE --- */
.mobile-bottom-dock {
  display: none;
}

@media (max-width: 1200px) {
  :root {
    --grid-cols: 3;
  }
}

@media (max-width: 768px) {
  :root {
    --grid-cols: 1;
    --sidebar-width: 0px;
  }

  .thin-sidebar {
    display: none;
  }

  .dashboard-right-wrapper {
    margin-left: 0;
  }

  .dashboard-main-area {
    padding: 16px 16px 100px;
  }



  .mobile-bottom-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #0F121A;
    border-top: 1px solid var(--pp-card-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 900;
  }

  .dock-item {
    color: var(--pp-text-sub);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
  }

  .dock-item.active {
    color: var(--pp-primary-blue);
    background: rgba(37, 99, 235, 0.15);
  }
}

/* --- PROFILE CONTEXT MENU SIDEPANEL (PLAYLIST PUSH PARITY) --- */
.profile-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.profile-panel-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.profile-sidepanel {
  width: 100%;
  max-width: 340px;
  height: 100%;
  background: #181C28;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}

.profile-panel-overlay.active .profile-sidepanel {
  transform: translateX(0);
}

.panel-header-pp {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}

.panel-close-btn {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.panel-close-btn:hover {
  color: #FFF;
}

.panel-body-pp {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* PROFILE CARD (EXACT MATCH FOR PLAYLIST PUSH NOTIFICATIONS DRAWER) */
.pp-user-profile-card {
  background: #1F2432;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pp-card-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFF;
  color: #0F121A;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFF;
  flex-shrink: 0;
}

.pp-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.pp-user-display-name {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
  line-height: 1.2;
}

.pp-user-balance {
  font-size: 12px;
  font-weight: 700;
  color: #38BDF8;
}

.pp-user-id-sub {
  font-size: 11px;
  color: #94A3B8;
}

.pp-card-action-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.btn-pp-settings {
  background: #181C28;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  min-width: 65px;
  text-align: center;
}

.btn-pp-settings:hover {
  background: #252C3D;
  color: #FFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-pp-signout {
  background: #181C28;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 65px;
  text-align: center;
  display: inline-block;
}

.btn-pp-signout:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* NOTIFICATIONS EMPTY BOX */
.pp-notifications-empty-box {
  background: #1F2432;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  font-size: 13px;
  color: #94A3B8;
  font-style: italic;
  margin-top: 8px;
}

/* --- TAB 5: ACCOUNT SETTINGS SCREEN (1:1 PLAYLIST PUSH PARITY) --- */
.settings-screen-container {
  padding: 8px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.settings-subtabs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2px;
}

.settings-subtab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #94A3B8;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.settings-subtab-btn:hover {
  color: #FFF;
}

.settings-subtab-btn.active {
  color: #FFF;
  font-weight: 700;
  border-bottom-color: #EC4899;
}

.settings-subview-panel {
  display: none;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
}

.settings-subview-panel.active {
  display: flex;
}

.settings-card {
  background: #1F2432;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.card-notice-text {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 4px;
}

.card-notice-text.text-red {
  color: #EF4444;
}

.card-notice-text.text-blue {
  color: #38BDF8;
}

.avatar-upload-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 10px 0 8px;
}

.large-avatar-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #FFF;
  color: #000;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #FFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

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

.btn-avatar-remove {
  background: #2D3548;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-avatar-remove:hover {
  background: #38425B;
  color: #FFF;
}

.btn-avatar-upload {
  background: #00C9A7;
  border: none;
  color: #0F121A;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-avatar-upload:hover {
  background: #00E0BA;
}

.settings-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.settings-input-label {
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
}

.settings-field-help {
  font-size: 12px;
  color: #94A3B8;
  margin: 0 0 4px;
}

.settings-text-input,
.settings-select-input {
  width: 100%;
  padding: 10px 14px;
  background: #141824;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #FFF;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.settings-text-input:focus,
.settings-select-input:focus {
  border-color: #38BDF8;
}

.gender-radio-group {
  display: flex;
  align-items: center;
  background: #141824;
  padding: 4px;
  border-radius: 8px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gender-radio-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  color: #94A3B8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.gender-radio-btn input {
  display: none;
}

.gender-radio-btn.active {
  background: #2563EB;
  color: #FFF;
}

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

.settings-card-footer {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.btn-settings-save {
  background: #FFF;
  color: #0F121A;
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-settings-save:hover {
  opacity: 0.9;
}

.btn-settings-delete {
  background: none;
  border: none;
  color: #EF4444;
  font-size: 13px;
  font-weight: 700;
  margin-left: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-settings-delete:hover {
  opacity: 0.8;
}

/* CONNECTED PLATFORMS SUBTAB */
.settings-section-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.settings-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}

.settings-section-desc {
  font-size: 12px;
  color: #94A3B8;
  margin: 0;
}

.sub-card-tag {
  font-size: 10px;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.6px;
}

.connected-account-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}

.platform-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #000;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.platform-status-badge {
  font-size: 11px;
  font-weight: 700;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

.platform-handle {
  font-size: 13px;
  font-weight: 700;
  color: #60A5FA;
}

.platform-meta {
  font-size: 11px;
  color: #94A3B8;
}

.btn-platform-more {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-size: 16px;
  padding: 4px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.connect-another-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.connect-another-title {
  font-size: 11px;
  font-weight: 800;
  color: #94A3B8;
  letter-spacing: 0.6px;
}

.btn-connect-platform-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #252C3D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-connect-platform-circle:hover {
  background: #323A50;
  transform: scale(1.05);
}

/* SECURITY SUBTAB */
.security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.security-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.security-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sec-title {
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
}

.sec-desc {
  font-size: 12px;
  color: #94A3B8;
  margin: 0;
  line-height: 1.4;
}

.btn-sec-action {
  background: #252C3D;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-sec-action.btn-blue {
  background: #2563EB;
  border-color: #2563EB;
}

.login-activity-block {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}

.activity-desc {
  font-size: 12px;
  color: #94A3B8;
  margin: 0 0 10px;
}

.activity-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.act-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  padding: 12px 14px;
  background: #1F2432;
  border-radius: 8px;
  font-size: 12px;
}

.act-row.act-head {
  background: none;
  padding: 0 14px;
  font-weight: 800;
  color: #94A3B8;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.act-col-session,
.act-col-loc,
.act-col-device {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #E2E8F0;
}

.sub, .ip {
  color: #94A3B8;
  font-size: 11px;
}

.green-tag {
  color: #10B981;
  font-size: 11px;
  font-weight: 600;
}

/* BILLING ADDRESS & PAYOUT SETTINGS EXTENSIONS */
.card-notice-text.left-align {
  text-align: left;
  line-height: 1.5;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.settings-input-label.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
  color: #94A3B8;
  font-weight: 800;
}

.settings-card-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 6px 0;
}

.settings-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFF;
  margin: 0;
}

/* PAYOUT METHODS TABLE */
.payout-methods-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.payout-table-head {
  display: grid;
  grid-template-columns: 2.2fr 1fr 0.8fr 1fr 1.2fr 40px;
  gap: 12px;
  font-size: 10px;
  font-weight: 800;
  color: #94A3B8;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.5px;
}

.payout-table-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr 0.8fr 1fr 1.2fr 40px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: #E2E8F0;
  padding-top: 8px;
}

.payout-ref-link {
  color: #38BDF8;
  font-weight: 600;
  cursor: pointer;
  word-break: break-word;
}

.payout-col-type,
.payout-col-country,
.payout-col-created,
.payout-col-used {
  color: #94A3B8;
}

.btn-payout-delete {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #EF4444;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-payout-delete:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #EF4444;
}

/* PAYOUT METHOD CARD & SWITCHER */
.payout-method-card {
  max-width: 380px;
}

.payout-tabs-row {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
  margin-top: 4px;
}

.payout-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #94A3B8;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 6px;
  transition: all 0.2s;
  font-family: inherit;
}

.payout-tab-btn:hover {
  color: #FFF;
}

.payout-tab-btn.active {
  color: #FFF;
  font-weight: 700;
  border-bottom-color: #EC4899;
}

.payout-panel-content {
  display: none;
  margin-top: 8px;
}

.payout-panel-content.active {
  display: block;
}

.inline-input-button-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-payout-save {
  background: #00C9A7;
  color: #0F121A;
  font-weight: 700;
  font-size: 13px;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.btn-payout-save:hover {
  background: #00E0BA;
}

/* ==========================================================================
   HELP CENTER & FAQ (1:1 PLAYLIST PUSH HELP CENTER PARITY)
   ========================================================================== */

.help-center-container {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* HERO BLUE BANNER */
.help-hero-banner {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 36px;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.help-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.help-brand-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.help-brand-badge .sidebar-logo-icon {
  width: 44px;
  height: 44px;
  background: #FF0050;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}

.help-brand-badge .sidebar-logo-icon svg {
  width: 26px;
  height: 26px;
}

.help-hero-title {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.help-search-wrapper {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}

.help-search-wrapper .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  pointer-events: none;
}

.help-search-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 14px 18px 14px 48px;
  border-radius: 10px;
  color: #FFF;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}

.help-search-input::placeholder {
  color: #94A3B8;
}

.help-search-input:focus {
  border-color: #38BDF8;
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

/* CATEGORIES LIST / GRID */
.help-categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.help-category-card {
  background: #141720;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.help-category-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  background: #1A1E2B;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.help-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38BDF8;
  flex-shrink: 0;
}

.help-card-body {
  flex: 1;
}

.help-card-title {
  color: #F8FAFC;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.help-card-desc {
  color: #94A3B8;
  font-size: 13.5px;
  margin: 0 0 6px 0;
}

.help-card-meta {
  color: #64748B;
  font-size: 12px;
  font-weight: 500;
}

/* HELP ARTICLE DRAWER / INLINE READER */
.help-article-drawer {
  display: none;
  background: #141720;
  border: 1px solid #38BDF8;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 40px;
  animation: fadeIn 0.25s ease-out;
}

.help-article-drawer.active {
  display: block;
}

.help-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.help-drawer-title {
  color: #38BDF8;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.btn-close-help-drawer {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-close-help-drawer:hover {
  color: #FFF;
}

.help-article-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}

.help-article-item:last-child {
  border-bottom: none;
}

.help-article-item h4 {
  color: #F8FAFC;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.help-article-item p {
  color: #94A3B8;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* HELP CENTER FOOTER */
.help-center-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.help-footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.help-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.help-footer-links a {
  color: #94A3B8;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.help-footer-links a:hover {
  color: #38BDF8;
}

/* SIDEBAR BOTTOM DIVIDER */
.sidebar-bottom-divider {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 6px auto;
}

/* LIGHT THEME STYLES */
body.light-theme {
  background-color: #F1F5F9;
  color: #0F172A;
}

body.light-theme .app-sidebar {
  background: #FFFFFF;
  border-right: 1px solid #E2E8F0;
}

body.light-theme .sidebar-bottom-divider {
  background: #E2E8F0;
}

body.light-theme .icon-nav-item {
  color: #64748B;
}

body.light-theme .icon-nav-item:hover,
body.light-theme .icon-nav-item.active {
  background: #F1F5F9;
  color: #0F172A;
}

body.light-theme .dash-header-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
}

body.light-theme .dash-page-heading {
  color: #0F172A;
}

body.light-theme .header-balance-amount {
  color: #059669;
}

body.light-theme .header-profile-btn {
  background: #F1F5F9;
  border-color: #CBD5E1;
  color: #0F172A;
}

body.light-theme .submit-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body.light-theme .submit-card-title,
body.light-theme .field-label {
  color: #0F172A;
}

body.light-theme .url-input-field {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0F172A;
}

body.light-theme .sound-card-item {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

body.light-theme .settings-subnav-pill {
  color: #64748B;
}

body.light-theme .settings-subnav-pill.active {
  background: #E2E8F0;
  color: #0F172A;
}

body.light-theme .settings-card {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

body.light-theme .settings-card-title {
  color: #0F172A;
}

body.light-theme .settings-text-input {
  background: #F8FAFC;
  border-color: #CBD5E1;
  color: #0F172A;
}


