/* pages/league.css - 联赛页面 Premium */

/* ==================== 赛事入口区域 ==================== */
.competition-entries {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.entry-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.entry-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  padding: 10px var(--sp-3) 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.entry-row {
  display: flex;
  flex-direction: column;
}

/* 入口卡片 */
.entry-card {
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--duration-fast);
}
.entry-card:last-child { border-bottom: none; }
.entry-card:hover { background: var(--gray-50); }
.entry-card.locked { opacity: 0.55; }

.entry-card-inner {
  display: flex;
  align-items: center;
  padding: 10px var(--sp-3);
  gap: var(--sp-2);
}

/* 联赛层级徽章 */
.entry-tier-badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.entry-tier-badge.tier-2 {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.entry-tier-badge.tier-3 {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

/* 杯赛图标 */
.entry-cup-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.entry-cup-icon.custom-icon {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

/* 入口卡片信息 */
.entry-card-info {
  flex: 1;
  min-width: 0;
}
.entry-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-800);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.entry-card-meta {
  font-size: 11px;
  color: var(--gray-400);
  display: block;
  margin-top: 1px;
}

/* 入口状态 */
.entry-card-status {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.entry-card-status.unlocked,
.entry-card-status.open {
  background: #e8f5e9;
  color: #2e7d32;
}
.entry-card-status.locked {
  background: var(--gray-100);
  color: var(--gray-500);
}
.entry-card-status.coming-soon {
  background: #e3f2fd;
  color: #1565c0;
}
.entry-card.current .entry-card-name {
  color: var(--green-primary);
}

/* 杯赛入口特殊 */
.cup-entry {
  border-left: 3px solid transparent;
}
.cup-entry:not(.locked):not(.coming-soon) {
  border-left-color: #ffc107;
}

/* 展开详情（联赛卡片） */
.entry-card-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--gray-50);
  border-top: 1px solid transparent;
}
.entry-card.expanded .entry-card-detail {
  max-height: 200px;
  padding: var(--sp-2) var(--sp-3);
  border-top-color: var(--gray-200);
}
.league-detail-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: 4px 0;
}
.league-detail-row .detail-label {
  font-size: 12px;
  color: var(--gray-400);
  min-width: 44px;
  flex-shrink: 0;
}
.league-detail-row .detail-value {
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.4;
}
.league-detail-row.unlock-row .detail-value {
  color: #e65100;
  font-weight: 600;
}

/* ==================== 奖金表格 ==================== */
.detail-prize-row {
  flex-direction: column;
  align-items: stretch !important;
  gap: 6px !important;
}
.prize-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-top: 4px;
}
.prize-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.prize-tbl td {
  padding: 5px 8px;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}
.prize-tbl tr:last-child td {
  border-bottom: none;
}
.prize-tbl td:first-child {
  width: 28px;
  text-align: center;
  font-weight: 700;
  color: var(--gray-500);
}
.prize-tbl td:nth-child(2) {
  color: var(--gray-600);
}
.prize-tbl .prize-amount {
  text-align: right;
  font-weight: 700;
  color: #e65100;
  font-variant-numeric: tabular-nums;
}
/* 升级区/降级区背景 */
.prize-tbl tr.promo td {
  background: rgba(46, 125, 50, 0.06);
}
.prize-tbl tr.promo td:first-child {
  color: #2e7d32;
}
.prize-tbl tr.promo .prize-amount {
  color: #2e7d32;
}
.prize-tbl tr.releg td {
  background: rgba(198, 40, 40, 0.04);
}
.prize-tbl tr.releg td:first-child {
  color: #c62828;
}
.prize-tbl tr.releg .prize-amount {
  color: #c62828;
}
/* 附加奖金信息 */
.prize-extra {
  display: flex;
  gap: var(--sp-3);
  margin-top: 6px;
  font-size: 11px;
  color: var(--gray-500);
}
.prize-extra span {
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ==================== 积分榜 ==================== */
.league-header {
  text-align: center;
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-3);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.04);
}
.league-header h2 { font-size: 20px; font-weight: 800; color: var(--gray-800); margin-bottom: 2px; }
.league-info { font-size: 13px; color: var(--gray-500); margin-top: var(--sp-1); }
.league-info span { font-weight: 600; }

/* 积分榜 */
.standings-table {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.standings-header, .standings-row {
  display: flex; align-items: center;
  padding: 10px var(--sp-3);
  font-size: 13px;
}
.standings-row { border-bottom: 1px solid var(--gray-100); transition: background var(--duration-fast); }
.standings-row:last-child { border-bottom: none; }
.standings-header {
  background: var(--gray-50);
  font-weight: 600; color: var(--gray-400);
  font-size: 11px; letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gray-200);
}
.col-rank { width: 28px; text-align: center; font-weight: 800; color: var(--gray-400); }
.col-name { flex: 1; font-weight: 600; }
.col-p, .col-w, .col-d, .col-l { width: 30px; text-align: center; font-size: 12px; }
.col-gd { width: 48px; text-align: center; font-size: 12px; }
.col-pts { width: 36px; text-align: center; font-weight: 800; color: var(--green-primary); font-size: 15px; }
.standings-row.user-team {
  background: linear-gradient(90deg, var(--green-light), transparent);
  border-left: 3px solid var(--green-primary);
}
.standings-row.user-team .col-name { color: var(--green-primary); }
.col-gd.positive { color: #2e7d32; font-weight: 600; }
.col-gd.negative { color: #c62828; }

/* 赛程 */
.schedule-list {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.schedule-item {
  padding: var(--sp-3);
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: var(--sp-3);
}
.schedule-item:last-child { border-bottom: none; }
.schedule-round {
  font-size: 11px; color: var(--gray-400); font-weight: 700;
  background: var(--gray-100); padding: 2px 8px;
  border-radius: var(--radius-xs); min-width: 48px; text-align: center;
}
.schedule-matchup { flex: 1; display: flex; align-items: center; gap: var(--sp-2); }
.schedule-matchup span { font-size: 14px; }
.schedule-matchup .home { color: var(--green-primary); font-weight: 700; }
.schedule-matchup .away { color: var(--gray-700); }
.schedule-score { font-weight: 800; font-size: 15px; }
.schedule-score.pending { color: var(--gray-400); font-size: 12px; font-weight: 600; }
.schedule-score.win { color: #2e7d32; }
.schedule-score.loss { color: #c62828; }

/* 射手榜 */
.scorers-list {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.scorer-item {
  display: flex; align-items: center;
  padding: var(--sp-3);
  border-bottom: 1px solid var(--gray-100);
}
.scorer-item:last-child { border-bottom: none; }
.scorer-rank {
  width: 32px; text-align: center; font-weight: 800;
  font-size: 14px; color: var(--gray-400);
}
.scorer-item:nth-child(1) .scorer-rank { color: #e65100; }
.scorer-item:nth-child(2) .scorer-rank { color: #757575; }
.scorer-item:nth-child(3) .scorer-rank { color: #795548; }
.scorer-info { flex: 1; }
.scorer-name { font-weight: 700; font-size: 14px; }
.scorer-team { font-size: 12px; color: var(--gray-500); }
.scorer-stats { text-align: right; }
.scorer-goals { font-weight: 800; font-size: 16px; color: var(--green-primary); }
.scorer-assists { color: var(--gray-500); font-size: 12px; margin-left: var(--sp-2); }

/* ==================== 升降级区域 ==================== */
.standings-row.promotion-zone {
  background: rgba(46, 125, 50, 0.05);
}
.standings-row.promotion-zone .col-rank {
  color: #2e7d32;
}
.standings-row.relegation-zone {
  background: rgba(198, 40, 40, 0.05);
}
.standings-row.relegation-zone .col-rank {
  color: #c62828;
}
/* 用户队同时在高亮区域时合并样式 */
.standings-row.user-team.promotion-zone {
  background: linear-gradient(90deg, rgba(46,125,50,0.1), transparent);
}
.standings-row.user-team.relegation-zone {
  background: linear-gradient(90deg, rgba(198,40,40,0.08), transparent);
}

/* 积分榜图例 */
.standings-legend {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-2) var(--sp-3);
  justify-content: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray-500);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}
.legend-item.promotion .legend-dot {
  background: rgba(46, 125, 50, 0.2);
  border: 1px solid #2e7d32;
}
.legend-item.relegation .legend-dot {
  background: rgba(198, 40, 40, 0.2);
  border: 1px solid #c62828;
}

/* ==================== 数据Tab - 子Tab栏 ==================== */
.stats-container {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}

.sub-tabs {
  display: flex;
  gap: 2px;
  padding: 6px 6px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sub-tabs::-webkit-scrollbar { display: none; }

.sub-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px 10px;
  border: none;
  background: transparent;
  color: var(--gray-400);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: all var(--duration-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.sub-tab:active {
  transform: scale(0.95);
}
.sub-tab.active {
  color: var(--green-primary);
  border-bottom-color: var(--green-primary);
}
.sub-tab-icon {
  font-size: 16px;
  line-height: 1;
}
.sub-tab.active .sub-tab-icon {
  transform: scale(1.15);
}
.sub-tab-label {
  font-size: 10px;
  letter-spacing: 0.3px;
}

/* ==================== 通用排行榜列表 ==================== */
.leaderboard-list {
  padding: 4px 0;
}

.lb-item {
  display: flex;
  align-items: center;
  padding: 12px var(--sp-3);
  border-bottom: 1px solid var(--gray-50);
  transition: background var(--duration-fast);
}
.lb-item:last-child { border-bottom: none; }
.lb-item:active { background: var(--gray-50); }

/* 用户队高亮 */
.lb-item.user-team {
  background: linear-gradient(90deg, rgba(76,175,80,0.06), transparent);
  border-left: 3px solid var(--green-primary);
  padding-left: calc(var(--sp-3) - 3px);
}
.lb-item.user-team .lb-name { color: var(--green-primary); }

/* 排名 */
.lb-rank {
  width: 32px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--gray-400);
  flex-shrink: 0;
}
.lb-rank.gold { color: #e65100; font-size: 16px; }
.lb-rank.silver { color: #757575; }
.lb-rank.bronze { color: #795548; }

/* 球员信息 */
.lb-info { flex: 1; min-width: 0; }
.lb-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lb-team {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 统计数据 */
.lb-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-align: right;
}
.lb-primary {
  font-weight: 800;
  font-size: 16px;
  color: var(--green-primary);
}
.lb-primary small {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-500);
  margin-left: 1px;
}
.lb-secondary {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

/* 评分专用 */
.lb-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  padding: 2px 8px;
}
.lb-rating.excellent {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
}
.lb-rating.good {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
}
.lb-rating.average {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  color: #e65100;
}
.lb-rating.poor {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
  color: #c62828;
}

/* 纪律榜专用 */
.lb-cards {
  gap: 6px;
}
.lb-card-yellow, .lb-card-red {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
}
.lb-card-yellow {
  background: rgba(255, 235, 59, 0.2);
  color: #f9a825;
}
.lb-card-red {
  background: rgba(244, 67, 54, 0.15);
  color: #e53935;
}
.lb-card-points {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* 纪律榜说明 */
.discipline-note {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  padding: 10px var(--sp-3) 12px;
  border-top: 1px solid var(--gray-100);
}

/* 空数据 */
.lb-empty {
  text-align: center;
  padding: 24px var(--sp-3);
  color: var(--gray-400);
  font-size: 13px;
}

/* ==================== 联赛总览（金字塔）==================== */
.league-pyramid {
  padding: 0 var(--sp-3) var(--sp-4);
}

/* 当前联赛英雄卡片 */
.pyramid-current-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin: var(--sp-3) 0;
  border-radius: 16px;
  background: var(--hero-bg, linear-gradient(135deg, #f9fafb, #f3f4f6));
  border: 2px solid var(--hero-border, #9ca3af);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.pyramid-current-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--hero-color, #6b7280);
  opacity: 0.06;
}

.hero-icon {
  font-size: 36px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-tier-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--hero-color, var(--gray-800));
}

.hero-season {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.hero-round-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  color: var(--hero-color, var(--gray-600));
  border: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* 金字塔分区标题 */
.pyramid-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: var(--sp-4) 0 var(--sp-3);
  padding: 0 4px;
}

.pyramid-section-title::before,
.pyramid-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.pyramid-section-title span {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* 金字塔卡片 */
.pyramid-card {
  border-radius: 14px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1.5px solid var(--tier-border, var(--gray-200));
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pyramid-card:active {
  transform: scale(0.995);
}

.pyramid-card.current {
  border-color: var(--tier-color, var(--primary));
  background: var(--tier-bg, var(--gray-50));
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pyramid-card.upper {
  background: var(--white);
}

.pyramid-card.lower {
  opacity: 0.75;
  background: var(--gray-50);
}

.pyramid-card-main {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 12px;
  transition: background 0.15s ease;
}

.pyramid-card-main:active {
  background: rgba(0,0,0,0.02);
}

.pyramid-tier-icon {
  font-size: 24px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gray-50);
  flex-shrink: 0;
  border: 1px solid var(--gray-100);
}

.pyramid-card.current .pyramid-tier-icon {
  background: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pyramid-card-info {
  flex: 1;
  min-width: 0;
}

.pyramid-tier-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
}

.pyramid-card.current .pyramid-tier-name {
  color: var(--tier-color, var(--primary));
}

.pyramid-tier-meta {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* 状态标签 */
.pyramid-tier-status {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

.pyramid-tier-status.status-current {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
}

.pyramid-tier-status.status-upper {
  background: rgba(139, 92, 246, 0.08);
  color: #7c3aed;
}

.pyramid-tier-status.status-lower {
  background: rgba(107, 114, 128, 0.08);
  color: var(--gray-500);
}

.pyramid-expand-icon {
  font-size: 16px;
  color: var(--gray-300);
  flex-shrink: 0;
  transition: all 0.25s ease;
  margin-left: 2px;
}

.pyramid-card.expanded .pyramid-expand-icon {
  color: var(--tier-color, var(--primary));
  transform: rotate(90deg);
}

.pyramid-card.current.expanded .pyramid-card-main {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pyramid-card.expanded:not(.current) .pyramid-card-main {
  border-bottom: 1px solid var(--gray-100);
}

.pyramid-card-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--gray-50);
}

.pyramid-card.expanded .pyramid-card-detail {
  max-height: 600px;
}

.pyramid-card-detail > :first-child {
  padding-top: 10px;
}

.pyramid-card-detail > :last-child {
  padding-bottom: 14px;
}

.pyramid-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 16px;
  font-size: 12px;
}

.pyramid-detail-label {
  color: var(--gray-400);
  flex-shrink: 0;
  width: 72px;
  font-weight: 500;
}

.pyramid-detail-value {
  color: var(--gray-700);
  text-align: right;
  font-weight: 500;
  flex: 1;
  min-width: 0;
}

/* 连接线 */
.pyramid-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 28px;
  padding: 0;
}

.connector-line {
  width: 2px;
  flex: 1;
  background: repeating-linear-gradient(
    to bottom,
    var(--gray-300) 0px,
    var(--gray-300) 3px,
    transparent 3px,
    transparent 6px
  );
}

.connector-arrow {
  font-size: 10px;
  color: var(--gray-300);
  line-height: 1;
  margin: 1px 0;
}

/* 升降级状态提示 */
.league-zone-status {
  padding: 0 var(--sp-3);
  margin: var(--sp-3) 0;
}

.zone-status {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.zone-status.promoted {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.zone-status.relegated {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.zone-status.safe {
  background: rgba(59, 130, 246, 0.06);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
}

/* 杯赛入口 */
.league-cup-entries {
  padding: 0 var(--sp-3) var(--sp-4);
}

.cup-entries-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 1px;
  margin-bottom: var(--sp-3);
  padding-left: 4px;
}

.cup-entries-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cup-entry-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.2s;
}

.cup-entry-card:active {
  transform: scale(0.98);
  box-shadow: none;
}

.cup-entry-card.locked {
  opacity: 0.6;
}

.cup-entry-icon {
  font-size: 24px;
}

.cup-entry-info {
  flex: 1;
}

.cup-entry-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.cup-entry-meta {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 1px;
}

.cup-entry-status {
  font-size: 11px;
  white-space: nowrap;
  font-weight: 600;
}

.cup-entry-status.open { color: #16a34a; }
.cup-entry-status.locked { color: var(--gray-400); }
.cup-entry-status.coming-soon { color: #f59e0b; }

