/* NextScout — player-dashboard.css */

.btn-topbar-logout {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  padding: 6px 12px;
  border-radius: 6px;
  background: none;
  cursor: pointer;
  transition: color 0.18s;
}
.btn-topbar-logout:hover { color: var(--white); }

/* Contact quota bar */
.contact-quota-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.quota-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.quota-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.quota-count { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.quota-note { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin-top: 8px; }

.contacts-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--green-dim);
  color: var(--green-light);
  border: 1px solid rgba(22,163,74,0.25);
}

/* Avatar upload */
.avatar-upload-section {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-card2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid rgba(22,163,74,0.3);
}
.btn-upload-avatar {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: all 0.18s;
}
.btn-upload-avatar:hover { background: rgba(255,255,255,0.1); }

/* Video */
.video-drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
}
.video-drop-zone:hover, .video-drop-zone.drag-over {
  border-color: var(--green);
  color: var(--white);
  background: var(--green-dim);
}
.video-player-wrap { border-radius: 12px; overflow: hidden; background: #000; }
.btn-danger-sm {
  padding: 7px 14px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}
.btn-danger-sm:hover { background: rgba(239,68,68,0.2); }
.video-locked-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #fbbf24;
}

/* Profile link box */
.profile-link-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.btn-copy {
  padding: 6px 14px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s;
}
.btn-copy:hover { background: var(--green-dark); }

/* Club search results */
.player-search-filters {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.clubs-list { display: flex; flex-direction: column; gap: 10px; }
.club-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.18s;
}
.club-card:hover { border-color: var(--border-hover); }
.club-card-avatar {
  width: 48px; height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.club-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.club-card-info { flex: 1; min-width: 0; }
.club-bio { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 4px; line-height: 1.5; }

@media (max-width: 768px) {
  .avatar-upload-section { flex-direction: column; text-align: center; }
  .player-search-filters { flex-direction: column; }
  .club-card { flex-wrap: wrap; }
}

/* ── Visibility card ──────────────────────────────────────────── */
.visibility-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.visibility-card.trial {
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
}
.visibility-card.active {
  background: var(--green-dim);
  border: 1px solid rgba(22,163,74,0.25);
}
.visibility-card-left { display: flex; gap: 14px; align-items: center; flex: 1; min-width: 0; }
.visibility-icon { font-size: 1.5rem; flex-shrink: 0; }
.visibility-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.visibility-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ── Feature lock banner ──────────────────────────────────────── */
.feature-lock-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}
.feature-lock-banner svg { color: #a855f7; flex-shrink: 0; margin-top: 2px; }
.feature-lock-banner > div { flex: 1; }
.feature-lock-banner p:first-child { font-weight: 600; font-size: 0.875rem; margin-bottom: 4px; }

/* ── Club history rows ───────────────────────────────────────── */
.club-history-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.club-history-row input {
  background: var(--gray-800);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.18s;
}
.club-history-row input:focus { border-color: var(--green); }
.club-history-row input::placeholder { color: rgba(255,255,255,0.2); }

/* ── Documents grid ──────────────────────────────────────────── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.doc-slot {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: border-color 0.18s;
}
.doc-slot:hover { border-color: var(--border-hover); }
.doc-slot.uploaded { border-color: rgba(22,163,74,0.3); }
.doc-slot-header { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.doc-icon { font-size: 1.5rem; flex-shrink: 0; }
.doc-name { font-weight: 600; font-size: 0.875rem; margin-bottom: 2px; }
.doc-desc { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.doc-upload-area { border: 1px dashed rgba(255,255,255,0.1); border-radius: var(--radius); padding: 12px; }
.doc-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.18s;
}
.doc-upload-label:hover { color: var(--green); }
.doc-uploaded-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.doc-filename { font-size: 0.78rem; color: var(--green-light); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.btn-doc-remove { font-size: 0.72rem; color: #f87171; background: none; cursor: pointer; flex-shrink: 0; padding: 2px 6px; border: 1px solid rgba(239,68,68,0.2); border-radius: 4px; }

/* ── Course & service dash cards ─────────────────────────────── */
.course-dash-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.18s;
}
.course-dash-card:hover { border-color: var(--green); }
.course-dash-logo {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', Arial Black, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.course-dash-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.course-dash-card p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.55; }

.service-dash-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.18s;
}
.service-dash-card:hover { border-color: var(--green); }
.service-dash-icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-dash-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.service-dash-card p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 4px; }
.service-dash-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--green) !important; }

/* form-section-title reuse */
.form-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 20px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .club-history-row { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .visibility-card { flex-direction: column; align-items: flex-start; }
}

/* ── Get Started tab ──────────────────────────────────────────── */
.goal-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
}
.goal-card:hover { border-color: var(--green); background: rgba(22,163,74,0.05); }
.goal-card.selected { border-color: var(--green); background: rgba(22,163,74,0.1); }
.goal-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 4px; }
.goal-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; color: var(--white); }
.goal-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

.getstarted-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.getstarted-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.getstarted-step-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.getstarted-step-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .goal-card { padding: 14px; }
}
