* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 50% -10%, #16233a 0%, rgba(13, 19, 32, 0) 60%),
    linear-gradient(180deg, #0d1320 0%, #0a0f18 100%);
  color: #e6edf3;
  font-family: -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

#app {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 12px 20px;
  text-align: center;
}

/* ===== 顶部信息栏 ===== */
#top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 4px;
}

#top-bar.hidden { display: none; }

.top-left { width: 40px; }

.countdown {
  font-size: 22px;
  font-weight: 700;
  color: #ffd43b;
  letter-spacing: 2px;
  text-shadow: 0 0 14px rgba(255, 212, 59, 0.3);
}

.countdown.warn {
  color: #ff5b5b;
  text-shadow: 0 0 14px rgba(255, 91, 91, 0.45);
  animation: count-pulse 0.8s ease-in-out infinite;
}

@keyframes count-pulse {
  50% { transform: scale(1.08); }
}

.btn-pause {
  width: 40px; height: 40px;
  border: 1.5px solid #33415c;
  border-radius: 10px;
  background: rgba(30, 44, 66, 0.85);
  color: #e6edf3;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.btn-pause:hover {
  border-color: #4dabf7;
  box-shadow: 0 0 10px rgba(77, 171, 247, 0.25);
}

/* ===== 游戏主区域 ===== */
#game-area {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}

/* ===== 侧边面板 ===== */
.side-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 260px;
  flex-shrink: 0;
}

/* ===== Canvas 舞台 ===== */
#stage {
  position: relative;
  display: inline-block;
  line-height: 0;
  border: 2px solid #33415c;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 12px 36px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(77, 171, 247, 0.10);
}

#game {
  display: block;
  background: #1b2430;
  max-width: 100%;
  height: auto;
}

/* ===== 玩家卡片 ===== */
.player-card {
  background: linear-gradient(180deg, #1d2939 0%, #16202e 100%);
  border: 1.5px solid #33415c;
  border-radius: 14px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s, opacity 0.3s;
}

.player-card.alive {
  border-color: var(--card-color, #33415c);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.player-card.dead {
  opacity: 0.45;
  filter: grayscale(0.6);
}

/* 头像圆形 */
.card-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.3),
    0 0 14px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card-avatar::after {
  content: '';
  position: absolute;
  top: 15%; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.04) 100%);
  border-radius: 50%;
}

.avatar-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 眼睛 */
.avatar-inner::before,
.avatar-inner::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: #0a0f18;
  border-radius: 50%;
  top: 14px;
  box-shadow: 0 0 0 2.5px #fff;
}

.avatar-inner::before { left: 7px; }
.avatar-inner::after { right: 7px; }

/* 朝向变化（通过 JS 设置 data-dir 属性） */
.player-card[data-dir="up"] .avatar-inner::before,
.player-card[data-dir="up"] .avatar-inner::after {
  top: 8px;
}

.player-card[data-dir="down"] .avatar-inner::before,
.player-card[data-dir="down"] .avatar-inner::after {
  top: 18px;
}

.player-card[data-dir="left"] .avatar-inner::before { left: 3px; }
.player-card[data-dir="left"] .avatar-inner::after { right: 13px; }

.player-card[data-dir="right"] .avatar-inner::before { left: 13px; }
.player-card[data-dir="right"] .avatar-inner::after { right: 3px; }

/* 卡片文字 */
.card-body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.card-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-status {
  font-size: 12px;
  color: #51cf66;
  line-height: 1.4;
}

.player-card.dead .card-status {
  color: #ff8787;
  text-decoration: line-through;
}

.card-stats {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  color: #9fb0c0;
  flex-wrap: nowrap;
}

.card-stats span {
  white-space: nowrap;
}

/* ===== 覆盖层（菜单 / 结算 / 暂停） ===== */
.overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 18, 0.78);
  backdrop-filter: blur(3px);
  z-index: 100;
}

.overlay.hidden { display: none; }

.panel {
  background: linear-gradient(180deg, #1d2939 0%, #16202e 100%);
  border: 1px solid #33415c;
  border-radius: 14px;
  padding: 24px 32px 28px;
  max-width: 540px;
  line-height: 1.5;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pause-panel { min-width: 260px; max-width: 320px; padding: 18px 26px 22px; }

.panel h2 {
  margin: 0 0 18px;
  font-size: 26px;
  letter-spacing: 2px;
  color: #ffd43b;
  text-shadow: 0 0 18px rgba(255, 212, 59, 0.25);
}

/* ---- 大厅面板 ---- */
.lobby-panel {
  max-width: 920px;
  min-width: 600px;
  width: 100%;
}

.lobby-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
}

.lobby-header h2 {
  margin: 0;
}

.quick-start-btn {
  position: absolute;
  right: 0;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #9fb0c0;
  background: rgba(30, 44, 66, 0.6);
  border: 1px solid #33415c;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.quick-start-btn:hover {
  border-color: #f59e0b;
  color: #fbbf24;
}

.quick-start-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* 大厅两列布局 */
.lobby-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  margin-bottom: 12px;
}

.lobby-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lobby-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 区块标签 */
.lobby-label {
  font-size: 12px;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 1px;
  margin-bottom: -4px;
}

/* 横排按钮行（难度 / 真人数） */
.btn-row {
  flex-direction: row !important;
  flex-wrap: wrap;
}

.btn-row button {
  flex: 1;
  min-width: 0;
  text-align: center;
}

/* 按钮组 */
.btns {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.btns button {
  cursor: pointer;
  border: 1px solid #33415c;
  border-radius: 9px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #dbe7f5;
  background: #1e2c42;
  transition: transform 0.08s ease, border-color 0.15s ease,
              box-shadow 0.15s ease, background 0.15s ease;
}

.btns button:hover {
  border-color: #4dabf7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.btns button:active { transform: translateY(0); }

/* 选中的难度 / 真人数 / 地图 */
.btns button.sel {
  background: linear-gradient(180deg, #2f86d8, #2563c4);
  border-color: #4dabf7;
  color: #fff;
  box-shadow:
    0 0 14px rgba(77, 171, 247, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* 键盘焦点态（暂停菜单导航） */
.btns button.btn-focus,
.btn-focus {
  outline: none;
  border-color: #ffd43b;
  box-shadow:
    0 0 16px rgba(255, 212, 59, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #3a3a20, #2a2a10);
  color: #ffd43b;
  transform: translateY(-1px);
}

/* 主行动按钮 */
#btn-to-setup, #btn-start-game, #btn-restart, #btn-resume, #btn-start {
  background: linear-gradient(180deg, #f59e0b, #d97706);
  border-color: #f59e0b;
  color: #1a1200;
  font-size: 15px;
  padding: 10px 18px;
}

/* 大厅按钮金色主题 */
.lobby-panel .btns button:hover {
  border-color: #f59e0b;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.lobby-panel .btns button.sel {
  background: linear-gradient(180deg, #d97706, #b45309);
  border-color: #f59e0b;
  color: #fff;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* 地图预览 */
.map-preview-wrap {
  display: flex;
  justify-content: center;
}

#map-preview {
  border: 1px solid #33415c;
  border-radius: 10px;
  background: #0f1923;
  display: block;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
}

/* 地图卡片 */
.map-cards {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.map-card {
  flex: 1;
  min-width: 0;
  padding: 7px 5px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 1px solid #33415c;
  border-radius: 10px;
  color: #dbe7f5;
  background: #1e2c42;
  transition: transform 0.12s, border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.map-card:hover {
  border-color: #f59e0b;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}

.map-card:active { transform: translateY(0); }

.map-card.sel {
  background: linear-gradient(180deg, #d97706, #b45309);
  border-color: #f59e0b;
  color: #fff;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.map-card .map-card-icon {
  display: block;
  font-size: 18px;
  margin-bottom: 1px;
  line-height: 1;
}

/* 模式卡片 */
.mode-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mode-card {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #33415c;
  background: #1a2436;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.12s, border-color 0.15s, box-shadow 0.15s, background 0.2s;
}

.mode-card:hover {
  border-color: #f59e0b;
  transform: translateX(2px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.1);
}

.mode-card.sel {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.15), rgba(180, 83, 9, 0.05));
  border-color: #f59e0b;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.2);
  transform: scale(1.02);
}

.mode-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.mode-title {
  font-size: 14px;
  font-weight: 700;
  color: #dbe7f5;
}

.mode-card.sel .mode-title { color: #fbbf24; }

.mode-desc {
  font-size: 11px;
  color: #6e7d8e;
}

.mode-card.sel .mode-desc { color: #9fb0c0; }

.mode-body {
  flex: 1;
  min-width: 0;
}

#btn-to-setup:hover, #btn-start-game:hover, #btn-restart:hover, #btn-resume:hover, #btn-start:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}

/* 大厅底部 */
.lobby-footer {
  margin: 0;
  font-size: 11px;
  color: #556377;
  text-align: center;
  line-height: 1.5;
}
#btn-pause-menu {
  background: linear-gradient(180deg, #6b3a3a, #4a2020);
  border-color: #8b4a4a;
  color: #ffb3b3;
  font-size: 14px;
}

#btn-pause-menu:hover {
  border-color: #ff5b5b;
  box-shadow: 0 0 12px rgba(255, 91, 91, 0.25);
}

/* 说明文字与键位 */
.hint {
  margin: 10px 0 6px;
  font-size: 12px;
  color: #9fb0c0;
  line-height: 1.6;
}

.hint b {
  display: inline-block;
  padding: 1px 7px;
  margin: 0 1px;
  border: 1px solid #33415c;
  border-bottom-width: 2px;
  border-radius: 6px;
  background: #1e2c42;
  color: #e6edf3;
  font-size: 12px;
}

/* ===== 道具说明栏 ===== */
.item-legend {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 12px;
  flex-wrap: wrap;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(22, 32, 46, 0.7);
  border: 1px solid #33415c;
  font-size: 12px;
  color: #dbe7f5;
}

.legend-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-style: normal;
  font-size: 11px;
  flex-shrink: 0;
}

.legend-bomb i  { background: rgba(77, 171, 247, 0.35); border: 1px solid #4dabf7; }
.legend-fire i  { background: rgba(255, 146, 43, 0.35); border: 1px solid #ff922b; }
.legend-speed i { background: rgba(81, 207, 102, 0.35); border: 1px solid #51cf66; }

/* ===== 游戏说明 ===== */
.guide-panel { min-width: 460px; max-width: 540px; }

.guide-section { margin-bottom: 14px; }
.guide-section:last-of-type { margin-bottom: 18px; }

.guide-section h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #ffd43b;
}

.guide-section p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #9fb0c0;
  line-height: 1.7;
}

.guide-grid {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px 12px;
  align-items: center;
}

.guide-tile {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.tile-hard  { background: #3a4658; border: 1.5px solid #5a6880; }
.tile-soft  { background: #8a5a3b; border: 1.5px solid #a07050; }
.tile-empty { background: #1b2430; border: 1.5px solid #33415c;  }
.tile-bomb  { background: rgba(77, 171, 247, 0.25); border: 1.5px solid #4dabf7; }
.tile-fire  { background: rgba(255, 146, 43, 0.25); border: 1.5px solid #ff922b; }
.tile-speed { background: rgba(81, 207, 102, 0.25); border: 1.5px solid #51cf66; }
.tile-p1    { background: rgba(255, 91, 91, 0.25); border: 1.5px solid #ff5b5b; }
.tile-p2    { background: rgba(77, 171, 247, 0.25); border: 1.5px solid #4dabf7; }

.guide-text {
  font-size: 13px;
  color: #dbe7f5;
  line-height: 1.6;
}

.guide-text b { color: #e6edf3; }
.guide-text kbd {
  display: inline-block;
  padding: 1px 6px;
  margin: 0 1px;
  border: 1px solid #33415c;
  border-bottom-width: 2px;
  border-radius: 4px;
  background: #1e2c42;
  color: #e6edf3;
  font-size: 12px;
  font-family: inherit;
}

/* ===== 名称输入组 ===== */
.name-group {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.name-group.hidden { display: none; }

.name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a2436;
  border: 1px solid #33415c;
  border-radius: 10px;
  padding: 6px 14px;
  transition: border-color 0.15s ease;
}

.name-row:focus-within {
  border-color: #4dabf7;
  box-shadow: 0 0 10px rgba(77, 171, 247, 0.2);
}

.name-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

.name-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #e6edf3;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 4px 0;
  min-width: 0;
}

.name-input::placeholder { color: #556377; font-weight: 400; }
.name-input:focus { color: #fff; }

/* 颜色选择器 */
.color-pick {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.cp-swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s, transform 0.1s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.cp-swatch:hover { transform: scale(1.2); }
.cp-swatch.sel {
  border-color: #fff;
  box-shadow: 0 0 8px currentColor;
  transform: scale(1.15);
}
.cp-swatch.used {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.cp-swatch.used:hover { transform: none; }

/* ===== 旧 HUD（隐藏） ===== */
#hud { display: none; }

/* ===== 玩家配置页 ===== */
.setup-panel {
  max-width: 520px;
  min-width: 380px;
}

.setup-panel h2 {
  margin-bottom: 24px;
}

.setup-players {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.setup-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 14px;
  background: #1a2436;
  border: 1px solid #33415c;
  border-radius: 14px;
}

.setup-card.hidden { display: none; }

/* ---- 泡泡角色预览 ---- */
.bubble-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bubble-float 3s ease-in-out infinite;
}

.bubble-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.35);
  animation: bubble-breathe 2s ease-in-out infinite;
  transition: background-color 0.4s ease;
  box-shadow:
    inset 0 -4px 8px rgba(0,0,0,0.2),
    inset 0 2px 4px rgba(255,255,255,0.1);
}

.bubble-highlight {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 35%;
  height: 28%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.35), transparent);
  border-radius: 50%;
}

/* 眼睛 */
.bubble-eye {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 26px;
}

.bubble-eye.left  { left: 16px; }
.bubble-eye.right { right: 16px; }

/* 瞳孔 */
.bubble-eye::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #0a0f18;
  border-radius: 50%;
  top: 3px;
  left: 3px;
}

/* 嘴巴隐藏，保留眼睛即可 */
.bubble-mouth { display: none; }

/* 泡泡阴影 */
.bubble-shadow {
  width: 50px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin-top: 2px;
}

/* ---- 配置页名称输入 ---- */
.setup-name-input {
  width: 100%;
  background: transparent;
  border: 1px solid #33415c;
  border-radius: 8px;
  outline: none;
  color: #e6edf3;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  padding: 6px 8px;
  transition: border-color 0.15s;
}

.setup-name-input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.25);
}

.setup-name-input::placeholder { color: #556377; font-weight: 400; }

/* ---- 圆形泡泡色块 ---- */
.cp-bubble {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.cp-bubble:hover { transform: scale(1.2); }

.cp-bubble.sel {
  border-color: #fff;
  animation: swatch-pulse 1.6s ease-in-out infinite;
  transform: scale(1.1);
}

.cp-bubble.used {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
  animation: none;
}

.cp-bubble.used:hover { transform: none; }

/* ---- 配置页按钮 ---- */
.setup-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.setup-buttons button {
  flex: 1;
  max-width: 200px;
  cursor: pointer;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.08s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-back {
  background: #1e2c42;
  border: 1px solid #33415c;
  color: #9fb0c0;
}

.btn-back:hover {
  border-color: #f59e0b;
  color: #dbe7f5;
}

/* ---- 动画 ---- */
@keyframes bubble-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

@keyframes swatch-pulse {
  0%, 100% { box-shadow: 0 0 4px 1px currentColor; }
  50%      { box-shadow: 0 0 12px 4px currentColor; }
}

/* 眨眼状态 */
.bubble-eye.blinking {
  animation: eye-blink 0.15s ease;
}

@keyframes eye-blink {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.1); }
}
.team-option {
  margin: 8px 0;
  padding: 8px 14px;
  background: #1a2436;
  border: 1px solid #33415c;
  border-radius: 10px;
  text-align: left;
}

.team-option.hidden { display: none; }

.toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.toggle-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #4dabf7;
  cursor: pointer;
}

.toggle-text {
  font-size: 14px;
  font-weight: 600;
  color: #dbe7f5;
}

.toggle-hint {
  margin: 4px 0 0 24px;
  font-size: 11px;
  color: #6e7d8e;
}

/* ===== 击杀统计 ===== */
.stat-kill {
  color: #ff5b5b;
  font-weight: 700;
}

.stat-kill.hidden { display: none; }

/* ===== 击败模式：左侧卡片缩短 ===== */
.side-panel.kill-layout {
  gap: 6px;
}

.side-panel.kill-layout .player-card {
  padding: 6px 10px;
  gap: 8px;
}

.side-panel.kill-layout .card-avatar {
  width: 36px;
  height: 36px;
}

.side-panel.kill-layout .card-stats {
  flex-wrap: nowrap;
  gap: 6px;
  font-size: 11px;
  margin-top: 2px;
}

.side-panel.kill-layout .card-name {
  font-size: 14px;
}

.side-panel.kill-layout .card-status {
  font-size: 10px;
}

/* 击败模式卡片头像眼睛（36px 头像等比缩放） */
.side-panel.kill-layout .avatar-inner::before,
.side-panel.kill-layout .avatar-inner::after {
  width: 7px; height: 7px;
  top: 9px;
  box-shadow: 0 0 0 2px #fff;
}
.side-panel.kill-layout .avatar-inner::before { left: 5px; }
.side-panel.kill-layout .avatar-inner::after { right: 5px; }
.side-panel.kill-layout .player-card[data-dir="up"] .avatar-inner::before,
.side-panel.kill-layout .player-card[data-dir="up"] .avatar-inner::after { top: 4px; }
.side-panel.kill-layout .player-card[data-dir="down"] .avatar-inner::before,
.side-panel.kill-layout .player-card[data-dir="down"] .avatar-inner::after { top: 12px; }
.side-panel.kill-layout .player-card[data-dir="left"] .avatar-inner::before { left: 2px; }
.side-panel.kill-layout .player-card[data-dir="left"] .avatar-inner::after { right: 9px; }
.side-panel.kill-layout .player-card[data-dir="right"] .avatar-inner::before { left: 9px; }
.side-panel.kill-layout .player-card[data-dir="right"] .avatar-inner::after { right: 2px; }

/* ===== 合作模式队伍框 ===== */
.team-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 16px;
  transition: border-color 0.3s, background 0.3s;
}

.team-group.team-active {
  border: 2px solid rgba(77, 171, 247, 0.35);
  padding: 10px;
  background: rgba(77, 171, 247, 0.04);
}

.team-group.team-active.team-red-group {
  border-color: rgba(255, 91, 91, 0.35);
  background: rgba(255, 91, 91, 0.04);
}

.team-header {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 0 0 8px;
  letter-spacing: 3px;
}

.team-header.hidden { display: none; }

.team-header.team-blue-header { color: #4dabf7; }
.team-header.team-red-header { color: #ff5b5b; }

/* ===== 击杀排���榜 ===== */
.leaderboard {
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(255, 91, 91, 0.25);
  border-radius: 16px;
  padding: 12px 10px;
  background: rgba(255, 91, 91, 0.03);
  min-height: 100%;
}

.leaderboard.hidden { display: none; }

.lb-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffd43b;
  text-align: center;
  padding-bottom: 10px;
  letter-spacing: 4px;
  border-bottom: 1px solid rgba(255, 215, 59, 0.2);
  margin-bottom: 10px;
}

.lb-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lb-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(22, 32, 46, 0.5);
  border: 1px solid rgba(51, 65, 92, 0.5);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s, background 0.3s;
  will-change: transform;
}

.lb-card.lb-first {
  border-color: #ffd43b;
  background: rgba(255, 215, 59, 0.08);
}

.lb-card.lb-me {
  border-color: rgba(77, 171, 247, 0.5);
  background: rgba(77, 171, 247, 0.08);
}

.lb-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #e6edf3;
  background: #33415c;
  flex-shrink: 0;
}

.lb-card.lb-first .lb-rank {
  background: #ffd43b;
  color: #1a1a1a;
}

.lb-avatar {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
}

/* 排行榜头像眼睛 */
.lb-avatar::before,
.lb-avatar::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: #0a0f18;
  border-radius: 50%;
  top: 8px;
  box-shadow: 0 0 0 2px #fff;
}
.lb-avatar::before { left: 5px; }
.lb-avatar::after { right: 5px; }

.lb-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.lb-name {
  font-size: 13px;
  font-weight: 600;
  color: #dbe7f5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lb-kills {
  font-size: 12px;
  color: #ffd43b;
  font-weight: 700;
}

/* ===== 击杀通知弹幕 ===== */
#kill-feed {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.kill-notify {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 40px;
  background: rgba(13, 19, 32, 0.55);
  border: 1.5px solid rgba(255, 91, 91, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 91, 91, 0.08);
  animation: killNotifyAnim 5s ease-out forwards;
}

@keyframes killNotifyAnim {
  0%   { opacity: 0; transform: translateY(-12px); }
  6%   { opacity: 0.85; transform: translateY(0); }
  88%  { opacity: 0.85; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-6px); }
}

.kn-player {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kn-avatar {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.4), 0 0 6px rgba(255, 255, 255, 0.15);
}

/* 击杀通知头像的眼睛 */
.kn-avatar::before,
.kn-avatar::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: #0a0f18;
  border-radius: 50%;
  top: 8px;
  box-shadow: 0 0 0 2px #fff;
}
.kn-avatar::before { left: 6px; }
.kn-avatar::after { right: 6px; }

.kn-name {
  font-size: 14px;
  font-weight: 700;
  color: #e6edf3;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kn-action {
  display: flex;
  align-items: center;
  color: #ff8787;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* ===== 玩家卡片队伍标签 ===== */
.card-team {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

.card-team.team-blue {
  background: rgba(77, 171, 247, 0.2);
  color: #4dabf7;
  border: 1px solid #4dabf7;
}

.card-team.team-red {
  background: rgba(255, 91, 91, 0.2);
  color: #ff5b5b;
  border: 1px solid #ff5b5b;
}

/* ===== 响应式：窄屏时卡片缩小 ===== */
@media (max-width: 960px) {
  .side-panel { width: 130px; gap: 8px; }
  .player-card { padding: 10px 8px; gap: 8px; }
  .card-avatar { width: 38px; height: 38px; }
  .card-name { font-size: 14px; }
  .card-stats { font-size: 11px; gap: 4px; }
  .avatar-inner::before,
  .avatar-inner::after { width: 5px; height: 5px; }
  .avatar-inner::before { left: 6px; }
  .avatar-inner::after { right: 6px; }
  .avatar-inner::before, .avatar-inner::after { top: 11px; }
  .player-card[data-dir="up"] .avatar-inner::before,
  .player-card[data-dir="up"] .avatar-inner::after { top: 6px; }
  .player-card[data-dir="down"] .avatar-inner::before,
  .player-card[data-dir="down"] .avatar-inner::after { top: 15px; }
}

/* ================================================================
   结算屏动画系统
   ================================================================ */

/* ---- 结算面板容器 ---- */
.go-panel {
  background: linear-gradient(180deg, #1d2939 0%, #16202e 100%);
  border: 1px solid #33415c;
  border-radius: 14px;
  padding: 18px 28px 22px;
  min-width: 420px;
  max-width: 560px;
  line-height: 1.5;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: scale(0.7);
}

.go-title {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: 4px;
  color: #ffd43b;
  text-shadow: 0 0 18px rgba(255, 212, 59, 0.25);
  text-align: center;
}

.go-content {
  /* 内容区 */
}

.go-stats.hidden { display: none; }

/* ---- 按钮组 ---- */
.go-buttons {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.go-buttons.hidden { display: none; }

.go-buttons button {
  cursor: pointer;
  border: 1px solid #33415c;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #dbe7f5;
  background: #1e2c42;
  transition: transform 0.08s ease, border-color 0.15s ease,
              box-shadow 0.15s ease, background 0.15s ease;
}

.go-buttons button:hover {
  border-color: #4dabf7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.go-buttons #btn-restart {
  background: linear-gradient(180deg, #f59e0b, #d97706);
  border-color: #f59e0b;
  color: #1a1200;
}

.go-buttons #btn-restart:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}

/* ---- Canvas 暗化遮罩 ---- */
.go-canvas-dim {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.6);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

/* ---- 粒子层 ---- */
.particle-layer {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

/* ================================================================
   Keyframes 动画
   ================================================================ */

@keyframes goPanelIn {
  0%   { transform: scale(0.7); opacity: 0; }
  60%  { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1.0); opacity: 1; }
}

@keyframes btnSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes rankSlideIn {
  from { transform: translateX(60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes championPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 212, 59, 0.5);
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 212, 59, 0.8), 0 0 60px rgba(255, 212, 59, 0.3);
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes crownDrop {
  0%   { transform: translateY(-40px) rotate(-15deg); opacity: 0; }
  60%  { transform: translateY(4px) rotate(3deg); opacity: 1; }
  80%  { transform: translateY(-2px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}

@keyframes elimSlideIn {
  from { transform: translateX(-40px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes elimShrink {
  to { transform: scale(0.85); opacity: 0.5; }
}

@keyframes survivorBounceIn {
  0%   { transform: translateY(80px) scale(0.3); opacity: 0; }
  50%  { transform: translateY(-10px) scale(1.05); opacity: 1; }
  70%  { transform: translateY(4px) scale(0.98); }
  85%  { transform: translateY(-2px) scale(1.01); }
  100% { transform: translateY(0) scale(1.0); opacity: 1; }
}

@keyframes survivorGlow {
  0%, 100% {
    box-shadow: 0 0 20px var(--player-color, #ffd43b),
                0 0 40px rgba(255, 212, 59, 0.3);
    opacity: 1;
    transform: translateY(0) scale(1.0);
  }
  50% {
    box-shadow: 0 0 40px var(--player-color, #ffd43b),
                0 0 60px rgba(255, 212, 59, 0.6);
    opacity: 1;
    transform: translateY(0) scale(1.0);
  }
}

@keyframes bannerUnfurl {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes teammateBounceIn {
  0%   { transform: scale(0); opacity: 0; }
  50%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1.0); opacity: 1; }
}

@keyframes loserSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 0.5; }
}

/* ================================================================
   击败模式 — 排行榜卡片
   ================================================================ */

.go-rank-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(22, 32, 46, 0.7);
  border: 1.5px solid #33415c;
  margin-bottom: 8px;
  opacity: 0;
  animation: rankSlideIn 0.35s ease-out forwards;
  animation-play-state: paused;
}

.go-rank-card.revealed { animation-play-state: running; }

.go-rank-card.rank-1 {
  border-color: #ffd43b;
  background: linear-gradient(135deg, rgba(255, 212, 59, 0.12), rgba(255, 212, 59, 0.03));
  box-shadow: 0 0 24px rgba(255, 212, 59, 0.2);
}

.go-rank-card.rank-2 {
  border-color: #90a4ae;
  background: linear-gradient(135deg, rgba(144, 164, 174, 0.08), transparent);
}

.go-rank-card.rank-3 {
  border-color: #8d6e3f;
  background: linear-gradient(135deg, rgba(141, 110, 63, 0.08), transparent);
}

.go-rank-card.champion-pulse {
  animation: championPulse 0.6s ease-in-out 3 forwards;
  animation-play-state: running;
}

.go-rank-position {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  background: #33415c;
  color: #9fb0c0;
}

.rank-1 .go-rank-position {
  background: linear-gradient(135deg, #ffd43b, #f0a500);
  color: #1a1a1a;
  font-size: 18px;
}

.rank-2 .go-rank-position {
  background: linear-gradient(135deg, #b0bec5, #90a4ae);
  color: #1a1a1a;
}

.rank-3 .go-rank-position {
  background: linear-gradient(135deg, #a07050, #8d6e3f);
  color: #fff;
}

.go-rank-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
}

/* 排行榜头像眼睛 */
.go-rank-avatar::before {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  background: #0a0f18;
  border-radius: 50%;
  top: 13px;
  left: 10px;
  box-shadow:
    0 0 0 2px #fff,
    16px 0 0 0 #0a0f18,
    16px 0 0 2px #fff;
}

/* 冠军头像王冠 */
.rank-1 .go-rank-avatar::after {
  content: '👑';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  animation: crownDrop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.go-rank-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.go-rank-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.go-rank-kills {
  font-size: 12px;
  color: #ffd43b;
  font-weight: 700;
}

/* ---- 结算统计行 ---- */
.go-stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  opacity: 0;
  animation: rankSlideIn 0.3s ease-out forwards;
}

.go-stat-item {
  text-align: center;
}

.go-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: #ffd43b;
}

.go-stat-label {
  font-size: 11px;
  color: #9fb0c0;
  margin-top: 2px;
}

/* ================================================================
   生存模式 — 淘汰回顾 + 幸存者卡片
   ================================================================ */

.go-elim-section {
  margin-bottom: 10px;
}

.go-elim-label {
  font-size: 12px;
  color: #6e7d8e;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.go-elim-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 10px;
  background: rgba(22, 32, 46, 0.6);
  border: 1px solid rgba(51, 65, 92, 0.5);
  margin-bottom: 8px;
  opacity: 0;
}

.go-elim-card.animate-in {
  animation: elimSlideIn 0.3s ease-out forwards;
}

.go-elim-card.shrink {
  animation: elimShrink 0.3s ease-in forwards;
}

.go-elim-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.go-elim-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.go-elim-time {
  font-size: 12px;
  color: #9fb0c0;
}

.go-elim-order {
  font-size: 11px;
  color: #6e7d8e;
}

.go-survivor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: 16px;
  border: 2px solid var(--player-color, #ffd43b);
  background: linear-gradient(135deg,
    rgba(255, 212, 59, 0.08),
    rgba(22, 32, 46, 0.6));
  margin-top: 12px;
  opacity: 0;
  box-shadow: 0 0 20px var(--player-color, #ffd43b), 0 0 40px rgba(255, 212, 59, 0.3);
}

.go-survivor-card.animate-in {
  animation: survivorBounceIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.go-survivor-card.glow {
  animation: survivorGlow 0.8s ease-in-out 3 forwards;
}

.go-survivor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* 幸存者头像眼睛 */
.go-survivor-avatar::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: #0a0f18;
  border-radius: 50%;
  top: 17px;
  left: 14px;
  box-shadow:
    0 0 0 2.5px #fff,
    22px 0 0 0 #0a0f18,
    22px 0 0 2.5px #fff;
}

.go-survivor-info {
  text-align: left;
}

.go-survivor-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.go-survivor-detail {
  font-size: 13px;
  color: #9fb0c0;
}

/* ================================================================
   合作模式 — 团队横幅 + 队员卡片
   ================================================================ */

.go-team-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  transform-origin: center;
  opacity: 0;
}

.go-team-banner.animate-in {
  animation: bannerUnfurl 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.go-team-banner.blue {
  background: linear-gradient(135deg, #1a73e8, #4dabf7);
  color: #e8f4fd;
  box-shadow: 0 0 30px rgba(77, 171, 247, 0.4);
}

.go-team-banner.red {
  background: linear-gradient(135deg, #c92a2a, #ff5b5b);
  color: #ffe8e8;
  box-shadow: 0 0 30px rgba(255, 91, 91, 0.4);
}

.go-team-members {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8px;
}

.go-member-card {
  width: 180px;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  opacity: 0;
}

.go-member-card.winner {
  border: 1.5px solid var(--player-color, #4dabf7);
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04),
    rgba(22, 32, 46, 0.6));
}

.go-member-card.winner.animate-in {
  animation: teammateBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.go-member-card.loser {
  opacity: 0;
  border: 1px solid rgba(51, 65, 92, 0.5);
  background: rgba(22, 32, 46, 0.4);
}

.go-member-card.loser.animate-in {
  animation: loserSlideUp 0.4s ease-out forwards;
}

.go-member-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 8px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* 队员头像眼睛 */
.go-member-avatar::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: #0a0f18;
  border-radius: 50%;
  top: 17px;
  left: 14px;
  box-shadow:
    0 0 0 2.5px #fff,
    22px 0 0 0 #0a0f18,
    22px 0 0 2.5px #fff;
}

.go-member-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.go-member-kills {
  font-size: 12px;
  color: #ffd43b;
  font-weight: 700;
}

.go-member-status {
  font-size: 11px;
  margin-top: 2px;
}

.go-member-card.winner .go-member-status { color: #51cf66; }
.go-member-card.loser .go-member-status { color: #ff8787; }

.go-team-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  color: #6e7d8e;
  font-size: 11px;
  opacity: 0;
}

.go-team-divider::before,
.go-team-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #33415c, transparent);
}

.go-team-divider.animate-in {
  animation: rankSlideIn 0.3s ease-out forwards;
}

/* ================================================================
   统一平局面板
   ================================================================ */

.go-draw-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.go-draw-player {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(22, 32, 46, 0.5);
  border: 1px solid #33415c;
}

.go-draw-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

.go-draw-name {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.go-draw-kills {
  font-size: 12px;
  color: #ffd43b;
  font-weight: 700;
}

.go-draw-team {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  background: rgba(51, 65, 92, 0.5);
  color: #9fb0c0;
}
