/* ============================================================
   WITHDRAW PAGE — Additional styles
   ============================================================ */

/* ---- Withdraw Step Transitions ---- */
.withdraw-step { animation: fadeIn .3s ease; }

/* ---- Player List ---- */
.player-list {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}
.player-select-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #f0ece4;
  cursor: pointer;
  transition: background .15s;
}
.player-select-row:last-child { border-bottom: none; }
.player-select-row:hover { background: #fdf8ef; }

.psr-info { flex: 1; min-width: 0; }
.psr-name {
  font-weight: 700;
  font-size: .9rem;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.psr-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .75rem;
  color: #888;
}
.psr-detail span {
  white-space: nowrap;
}

.psr-action { flex-shrink: 0; margin-left: 12px; }
.psr-select-btn {
  display: inline-block;
  padding: 5px 14px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #8b2020;
  border: 1.5px solid #8b2020;
  border-radius: 5px;
  transition: all .2s;
}
.player-select-row:hover .psr-select-btn {
  background: #8b2020;
  color: #fff;
}

/* ---- Selected Player Card ---- */
.selected-player-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FEE2E2;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.spc-badge {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: #991B1B;
  color: #fff;
  font-family: var(--font-impact);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 8px;
  flex-shrink: 0;
}
.spc-info { flex: 1; min-width: 0; }
.spc-name {
  font-weight: 700;
  font-size: .95rem;
  color: #991B1B;
  margin-bottom: 2px;
}
.spc-detail {
  font-size: .78rem;
  color: #7F1D1D;
  line-height: 1.4;
}

/* ---- Danger Button ---- */
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #991B1B;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-impact);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s;
}
.btn-danger:hover {
  background: #7F1D1D;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(153,27,27,.3);
}

/* ---- Terms & Conditions ---- */
.withdraw-terms {
  background: #FAFAF8;
  border: 1px solid #e8e3d8;
  border-radius: 10px;
  padding: 20px;
}
.terms-title {
  font-family: var(--font-impact);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #1a1a1a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.terms-title::before {
  content: '\1F4C4';
  font-size: 1.1rem;
}
.terms-intro {
  font-size: .82rem;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.5;
}
.terms-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0 0 4px;
}
.terms-list li {
  font-size: .8rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 8px;
}
.terms-list li:last-child { margin-bottom: 0; }
.terms-list li strong {
  color: #1a1a1a;
}

/* ---- Responsive ---- */
@media (max-width: 599px) {
  .psr-detail {
    flex-direction: column;
    gap: 2px;
  }
  .selected-player-card {
    flex-direction: column;
    text-align: center;
  }
}
