.players-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* ヒーロー */
.hero {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}
.ten-hero {
  width: 120px;
  margin-bottom: 10px;
}
.hero-text {
  color: #ddd;
}

/* プレイヤーカード（ガラスUI） */
.player-card {
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Defending Champion */
.player-card.defending {
  border: 2px solid gold;
  box-shadow: 0 0 12px rgba(255,215,0,0.7);
}

/* プレイヤーヘッダー（星＝左） */
.player-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* 星（左側配置） */
.player-stars {
  font-size: 18px;
  color: gold;
  text-shadow: 0 0 6px rgba(255,215,0,0.8);
}

/* 名前＋サブタイトル */
.player-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 4px;
  margin-bottom: 2px;
}

.player-subtitle {
  font-size: 12px;
  color: #cccccc;
  margin-bottom: 8px;
}

/* ===== 戦績テーブル ===== */
.player-history-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  font-size: 13px;
}

.player-history-table th,
.player-history-table td {
  padding: 4px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #e0e0e0;
}

.player-history-table th {
  font-weight: 600;
  color: #ffffff;
}

.player-history-table tr:last-child td {
  border-bottom: none;
}

.player-history-table .future-2026 td {
  color: #ffe28a;
  font-weight: 600;
}

/* ============================
   スマホ最適化（〜480px）
   ============================ */
@media (max-width: 480px) {

  .player-header {
    align-items: flex-start;
  }

  .player-stars {
    font-size: 16px;
  }

  .player-history-table {
    font-size: 12px;
  }

  .player-history-table thead {
    display: none;
  }

  .player-history-table tr {
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 6px;
  }

  .player-history-table td {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border: none;
  }

  .player-history-table td:first-child::before {
    content: "大会";
    color: #aaa;
    margin-right: 8px;
  }

  .player-history-table td:last-child::before {
    content: "成績";
    color: #aaa;
    margin-right: 8px;
  }
}

/* CTA */
.cta-area {
  text-align: center;
  padding: 30px;
  margin-top: 40px;
}
.ten-cta {
  width: 100px;
  margin-bottom: 10px;
}

/* Skeleton（読み込み中のダミー） */
.skeleton {
  animation: skeleton-loading 1.2s infinite linear;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
}

@keyframes skeleton-loading {
  0% { opacity: 0.4; }
  50% { opacity: 0.9; }
  100% { opacity: 0.4; }
}

.player-card.skeleton-card {
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.skeleton-line {
  height: 14px;
  margin: 6px 0;
}

.skeleton-stars {
  width: 60px;
  height: 16px;
  margin-bottom: 8px;
}
