/* ═══════════════════════════════════════
   Coach Portal — Styles (Phase 1.5)
   ═══════════════════════════════════════ */

/* ── Claim Flow ── */
.claim-container {
  max-width: 420px;
  margin: 0 auto;
  padding: 24px 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.claim-logo {
  text-align: center;
  margin-bottom: 32px;
}

.claim-logo h1 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.claim-logo p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 4px;
}

.claim-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  animation: slideUp 0.4s ease;
}

.claim-card h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.claim-card .step-label {
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-primary .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

.form-message {
  font-size: 0.8125rem;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  animation: slideUp 0.3s ease;
}

.form-message.success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-message.info {
  background: var(--accent-glow);
  color: var(--accent-light);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.coach-welcome {
  text-align: center;
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.coach-welcome .name {
  font-size: 1.25rem;
  font-weight: 700;
}

.coach-welcome .detail {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  margin-top: 4px;
}

/* ── Portal (Authenticated) ── */
.portal-header {
  padding: 20px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portal-header h1 {
  font-size: 1.25rem;
  font-weight: 700;
}

.portal-header .coach-name {
  color: var(--accent-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.portal-nav {
  display: flex;
  gap: 4px;
  padding: 0 16px;
  margin-bottom: 16px;
}

.portal-nav button {
  flex: 1;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.portal-nav button.active {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent-light);
}

.portal-section {
  padding: 0 16px;
}

/* ── Compliance Cards ── */
.requirement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  transition: all var(--transition);
}

.requirement-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

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

.req-header .req-label {
  font-weight: 600;
  font-size: 0.9375rem;
}

.req-header .req-type {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 2px 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
}

.req-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.req-status.missing {
  background: var(--danger-bg);
  color: var(--danger);
}

.req-status.submitted {
  background: var(--warning-bg);
  color: var(--warning);
}

.req-status.approved {
  background: var(--success-bg);
  color: var(--success);
}

.req-status.rejected {
  background: var(--danger-bg);
  color: var(--danger);
}

.req-status.expired {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.req-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.req-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.req-notes {
  font-size: 0.8125rem;
  color: var(--danger);
  margin-top: 6px;
  padding: 8px;
  background: var(--danger-bg);
  border-radius: var(--radius-sm);
}

.req-action {
  margin-top: 12px;
}

.req-action .btn-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.req-action .btn-upload:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: var(--accent-glow);
}

.req-file-link {
  margin-top: 8px;
}

.view-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-sm);
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.view-doc-link:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
}

/* ── Profile Section ── */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.profile-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.profile-field:last-child {
  border-bottom: none;
}

.profile-field .pf-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.profile-field .pf-value {
  font-weight: 600;
  font-size: 0.875rem;
}

/* ── Compliance Progress ── */
.compliance-progress {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.compliance-progress h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.progress-bar {
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s ease;
}

.progress-fill.green {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.progress-fill.amber {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.progress-fill.red {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Animations ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Responsive ── */
@media (min-width: 600px) {
  .claim-container {
    padding: 40px 24px;
  }
  .claim-card {
    padding: 32px;
  }
  .portal-section {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════
   Fixture Cards
   ═══════════════════════════════════════ */
.fixture-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fixture-empty {
  text-align: center;
  padding: 48px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.fixture-empty-icon { font-size: 2.5rem; margin-bottom: 12px; }
.fixture-empty h3 { font-size: 1.125rem; margin-bottom: 4px; }
.fixture-empty p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.5; }

.fixture-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition);
}
.fixture-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fixture-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.fixture-card__league {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-light);
  font-weight: 700;
}
.fixture-card__age {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 2px 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  font-weight: 600;
}

.fixture-card__teams {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.fixture-card__vs {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.875rem;
  padding: 0 4px;
}

.fixture-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.fixture-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.fixture-card__arrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
}

/* ── Lineup Badges ── */
.lineup-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.lineup-badge--done {
  background: var(--success-bg);
  color: var(--success);
}
.lineup-badge--pending {
  background: var(--warning-bg);
  color: var(--warning);
}

/* ═══════════════════════════════════════
   Lineup Editor
   ═══════════════════════════════════════ */

/* ── Match Header ── */
.lineup-match-header {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(99,102,241,0.04));
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.lineup-match-header__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.lineup-match-header__team {
  font-weight: 700;
  font-size: 1.125rem;
}
.lineup-match-header__vs {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  padding: 2px 10px;
  background: var(--accent-glow);
  border-radius: 4px;
  letter-spacing: 1px;
}
.lineup-match-header__details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ── Section Cards ── */
.lineup-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.lineup-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.lineup-section__header h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}
.lineup-section__subtitle {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}
.lineup-section__body {
  padding: 12px 16px 16px;
}

/* ── Sub headings (Forwards / Backs) ── */
.lineup-sub-heading {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  font-weight: 700;
  padding: 8px 0 6px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

/* ── Position Rows ── */
.lineup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lineup-row:last-child { border-bottom: none; }

.lineup-row__pos {
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.lineup-row__pos-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-glow);
  color: var(--accent-light);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 6px;
}

.lineup-row__info {
  flex: 1;
  min-width: 0;
}
.lineup-row__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ── Select (full-width, styled) ── */
.lineup-select {
  width: 100%;
  padding: 10px 32px 10px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.lineup-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.lineup-select option:disabled {
  color: var(--text-muted);
}

/* ── Sub rows ── */
.lineup-row--sub {
  gap: 8px;
}
.lineup-row__num {
  flex-shrink: 0;
  width: 48px;
}
.lineup-num-input {
  width: 100%;
  padding: 10px 4px;
  text-align: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  outline: none;
  transition: border-color var(--transition);
}
.lineup-num-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.lineup-row__select {
  flex: 1;
  min-width: 0;
}

/* ── Officials ── */
.lineup-row--official {
  padding: 10px 0;
}
.lineup-row--official .lineup-row__label {
  margin-bottom: 6px;
}

/* ── Feedback ── */
#lineup-feedback {
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   Nav — horizontal scroll for 5 tabs
   ═══════════════════════════════════════ */
.portal-nav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.portal-nav::-webkit-scrollbar { display: none; }
.portal-nav button {
  white-space: nowrap;
  min-width: 0;
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 0.75rem;
}

/* ═══════════════════════════════════════
   Dashboard Home
   ═══════════════════════════════════════ */
.dash-welcome {
  text-align: center;
  padding: 24px 16px 20px;
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(99,102,241,0.04));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.dash-welcome__greeting {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}
.dash-welcome__name {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.dash-welcome__club {
  font-size: 0.875rem;
  color: var(--accent-light);
  font-weight: 600;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dash-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 8px;
  text-align: center;
}
.dash-stat__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 4px;
}
.dash-stat__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.dash-section__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 700;
}

.dash-empty-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 8px;
}

.dash-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dash-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.dash-link:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

/* ═══════════════════════════════════════
   Players Roster
   ═══════════════════════════════════════ */
.player-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.player-card:hover {
  border-color: var(--border-light);
}

.player-card__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.player-card__info { flex: 1; min-width: 0; }
.player-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}
.player-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.player-card__chevron {
  color: var(--text-muted);
  font-size: 0.625rem;
  transition: transform 0.2s ease;
  margin-left: 8px;
}

/* ── Expandable Details ── */
.player-card__details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 16px;
  border-top: 0 solid var(--border);
}
.player-card--open .player-card__details {
  max-height: 400px;
  padding: 12px 16px 16px;
  border-top-width: 1px;
}
.player-card--open .player-card__chevron {
  transform: rotate(180deg);
}
.player-card--open {
  border-color: var(--accent);
}

.player-card__parent {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.player-card__parent:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.player-card__detail-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.player-card__detail-name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
}
.player-card__contact-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.player-card__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}
.player-card__contact-link:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}
.player-card__whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
  color: #25d366;
}
.player-card__whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.player-card__detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

/* ── Default Age Group Button ── */
.player-default-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: transparent;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 20px;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.player-default-btn:hover {
  border-color: rgba(99,102,241,0.4);
  color: var(--accent-light);
  background: rgba(99,102,241,0.06);
}
.player-default-btn--active {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.3);
  border-style: solid;
  color: var(--accent-light);
}
.player-default-btn--active:hover {
  border-color: rgba(239,68,68,0.4);
  color: rgba(239,68,68,0.8);
  background: rgba(239,68,68,0.06);
}
.player-default-btn--clear {
  color: var(--text-muted);
  font-size: 0.65rem;
  border-color: rgba(255,255,255,0.06);
}
