/* === 近梅祭 混雑状況サイト === */
:root {
  --c-bg: #f5f0eb;
  --c-card: #ffffff;
  --c-text: #2d2a26;
  --c-text-sub: #6b6560;
  --c-border: #e0d8d0;
  --c-accent: #c0392b;
  --c-empty: #27ae60;
  --c-moderate: #f39c12;
  --c-crowded: #e67e22;
  --c-full: #c0392b;
  --c-closed: #95a5a6;
  --c-preparing: #3498db;
  --c-sold-out: #8e44ad;
  --c-finished: #7f8c8d;
  --c-info: #3498db;
  --c-warning: #f39c12;
  --c-danger: #e74c3c;
  --radius: 14px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --font: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}

/* Header */
.header {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #fff;
  padding: 18px 20px 14px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(192,57,43,0.3);
}
.header h1 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.header .subtitle {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 2px;
}
.header .live-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  margin-top: 6px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Emergency Banner */
.emergency-banner {
  background: #e74c3c;
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  animation: flash 1s ease-in-out infinite;
  display: none;
}
.emergency-banner.active { display: block; }
@keyframes flash {
  0%, 100% { background: #e74c3c; }
  50% { background: #c0392b; }
}

/* Announcements */
.announcements {
  padding: 0 16px;
  margin-top: 12px;
}
.announcement {
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.announcement.info { background: #ebf5fb; color: #2471a3; border-left: 4px solid var(--c-info); }
.announcement.warning { background: #fef5e7; color: #b7950b; border-left: 4px solid var(--c-warning); }
.announcement.danger { background: #fdedec; color: #c0392b; border-left: 4px solid var(--c-danger); }
.announcement .icon { font-size: 1.1rem; flex-shrink: 0; }

/* Search */
.search-bar {
  padding: 12px 16px 4px;
}
.search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: 12px;
  font-size: 0.95rem;
  background: var(--c-card);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--c-accent); }
.search-input::placeholder { color: #bbb; }

/* Filter Tabs */
.filter-bar {
  display: flex;
  gap: 8px;
  padding: 12px 16px 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  border: none;
  padding: 9px 18px;
  border-radius: 22px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--c-card);
  color: var(--c-text-sub);
  border: 1.5px solid var(--c-border);
}
.filter-btn.active {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

/* Floor Filter */
.floor-bar {
  display: flex;
  gap: 6px;
  padding: 4px 16px 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.floor-bar::-webkit-scrollbar { display: none; }
.floor-btn {
  flex-shrink: 0;
  border: none;
  padding: 7px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--c-card);
  color: var(--c-text-sub);
  border: 1.5px solid var(--c-border);
}
.floor-btn.active {
  background: #2c3e50;
  color: #fff;
  border-color: #2c3e50;
}

/* Legend */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 16px 12px;
  justify-content: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--c-text-sub);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Loading */
.loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--c-text-sub);
}
.loading .spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--c-border);
  border-top-color: var(--c-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Booth Grid */
.booth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 4px 16px 100px;
}
@media (min-width: 600px) {
  .booth-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .booth-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Category header */
.category-header {
  grid-column: 1 / -1;
  padding: 6px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  border-bottom: 3px solid var(--c-accent);
  margin-top: 8px;
}
.category-header:first-child { margin-top: 0; }

/* === Booth Card === */
.booth-card {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  border-left: 6px solid var(--c-closed);
}
.booth-card:active {
  transform: scale(0.98);
}

/* Border colors by status/crowd */
.booth-card[data-status="open"][data-crowd="empty"] { border-left-color: var(--c-empty); }
.booth-card[data-status="open"][data-crowd="moderate"] { border-left-color: var(--c-moderate); }
.booth-card[data-status="open"][data-crowd="crowded"] { border-left-color: var(--c-crowded); }
.booth-card[data-status="open"][data-crowd="full"] { border-left-color: var(--c-full); }
.booth-card[data-status="open"][data-crowd="unknown"] { border-left-color: var(--c-empty); }
.booth-card[data-status="closed"],
.booth-card[data-status="preparing"],
.booth-card[data-status="break"] { border-left-color: var(--c-closed); }
.booth-card[data-status="finished"] { border-left-color: var(--c-finished); opacity: 0.55; }
.booth-card[data-status="sold_out"] { border-left-color: var(--c-sold-out); }

.booth-card .card-body {
  padding: 16px 18px;
}

/* Card top: name + fav + badge */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.card-top-left {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.card-top-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.booth-card .booth-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.booth-card .booth-title {
  font-size: 0.85rem;
  color: var(--c-text-sub);
  margin-top: 2px;
}

/* Status badge */
.booth-card .status-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.status-badge.open { background: var(--c-empty); }
.status-badge.closed { background: var(--c-closed); }
.status-badge.preparing { background: var(--c-preparing); }
.status-badge.break { background: var(--c-warning); }
.status-badge.sold_out { background: var(--c-sold-out); }
.status-badge.finished { background: var(--c-finished); }

/* Card meta: location, type, floor */
.booth-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-text-sub);
  cursor: pointer;
}
.booth-card .meta-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.floor-tag {
  background: #ecf0f1;
  color: #2c3e50;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Crowd Indicator */
.crowd-indicator {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 12px;
  cursor: pointer;
}
.crowd-bar {
  height: 8px;
  flex: 1;
  border-radius: 4px;
  background: #ecf0f1;
  transition: background 0.3s;
}
.crowd-bar.active.level-1 { background: var(--c-empty); }
.crowd-bar.active.level-2 { background: var(--c-moderate); }
.crowd-bar.active.level-3 { background: var(--c-crowded); }
.crowd-bar.active.level-4 { background: var(--c-full); }

.crowd-label {
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 55px;
  text-align: right;
}
.crowd-label.empty { color: var(--c-empty); }
.crowd-label.moderate { color: var(--c-moderate); }
.crowd-label.crowded { color: var(--c-crowded); }
.crowd-label.full { color: var(--c-full); }
.crowd-label.unknown { color: var(--c-closed); }

/* Wait time */
.wait-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #ebf5fb;
  color: #2471a3;
}
.wait-badge.long { background: #fdedec; color: #c0392b; }

/* Message */
.booth-message {
  margin-top: 10px;
  padding: 8px 12px;
  background: #fef9e7;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #7d6608;
}

/* Sold out items */
.sold-out-list {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.sold-out-tag {
  padding: 3px 10px;
  background: #f5eef8;
  color: #8e44ad;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Updated time */
.updated-time {
  font-size: 0.72rem;
  color: #bbb;
  margin-top: 10px;
  text-align: right;
}

/* No results */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--c-text-sub);
  grid-column: 1 / -1;
  font-size: 0.95rem;
}

/* Favorites */
.booth-card.is-fav {
  box-shadow: 0 0 0 2px rgba(241,196,15,0.3), var(--shadow);
}
.fav-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #ddd;
  transition: color 0.2s, transform 0.15s;
  padding: 2px;
  line-height: 1;
}
.fav-btn:hover { color: #f1c40f; transform: scale(1.2); }
.fav-btn.active { color: #f1c40f; }
.fav-btn-large {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ddd;
  transition: color 0.2s, transform 0.15s;
  padding: 4px;
  line-height: 1;
}
.fav-btn-large:hover { color: #f1c40f; transform: scale(1.15); }
.fav-btn-large.active { color: #f1c40f; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 52px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.scroll-top.visible { display: flex; }

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--c-text-sub);
  z-index: 100;
}

/* === Tutorial (archeo-style) === */
.tutorial-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  transition: opacity 0.3s;
}
.tutorial-overlay.show { display: block; }
.tutorial-backdrop {
  position: absolute;
  inset: 0;
}
.tutorial-highlight {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 0 0 4000px rgba(0,0,0,0.7), 0 0 20px rgba(192,57,43,0.4);
  z-index: 20001;
  transition: all 0.4s ease;
  pointer-events: none;
}
.tutorial-tooltip {
  position: absolute;
  z-index: 20002;
  background: var(--c-card);
  border: 2px solid var(--c-accent);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 320px;
  width: calc(100vw - 40px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  animation: tutorialFadeIn 0.4s ease;
}
@keyframes tutorialFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tutorial-step-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.tutorial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: background 0.3s;
}
.tutorial-dot.active {
  background: var(--c-accent);
  box-shadow: 0 0 8px rgba(192,57,43,0.4);
}
.tutorial-dot.done {
  background: var(--c-empty);
}
.tutorial-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.tutorial-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 6px;
}
.tutorial-desc {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 16px;
}
.tutorial-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.tutorial-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tutorial-btn:active { transform: scale(0.95); }
.tutorial-btn-next {
  background: linear-gradient(135deg, var(--c-accent), #e74c3c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
  flex: 1;
}
.tutorial-btn-skip {
  background: transparent;
  color: var(--c-text-sub);
  padding: 10px 12px;
  font-size: 0.8rem;
}
.tutorial-btn-skip:hover { color: var(--c-text); }
.tutorial-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: var(--c-text-sub);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
  padding: 0;
}
.tutorial-close:hover {
  color: var(--c-accent);
  background: rgba(192,57,43,0.1);
}
.tutorial-welcome {
  text-align: center;
  padding: 30px 20px;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 20002;
  background: var(--c-card);
  border: 2px solid var(--c-accent);
  border-radius: 20px;
  max-width: 360px;
  width: calc(100vw - 40px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  animation: tutorialFadeIn 0.4s ease;
}
.tutorial-welcome .tutorial-icon { font-size: 2.5rem; margin-bottom: 12px; }
.tutorial-welcome .tutorial-title { font-size: 1.2rem; }
.tutorial-welcome .tutorial-desc { font-size: 0.88rem; }
.tutorial-welcome .tutorial-buttons { justify-content: center; flex-wrap: wrap; }
.tutorial-welcome .tutorial-btn-next { flex: none; padding: 12px 36px; border-radius: 24px; }

/* === Detail Modal === */
.detail-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.detail-modal-overlay.active { display: flex; }
.detail-modal-box {
  background: var(--c-card);
  border-radius: 20px 20px 0 0;
  padding: 28px 22px 44px;
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.25s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.detail-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-bg);
}
.detail-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-name {
  font-size: 1.3rem;
  font-weight: 700;
}
.detail-title {
  font-size: 0.9rem;
  color: var(--c-text-sub);
  margin-top: 3px;
}
.detail-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text-sub);
  min-width: 65px;
  flex-shrink: 0;
}
.detail-value {
  font-size: 0.92rem;
}
.detail-crowd {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.wait-value {
  color: var(--c-accent);
  font-weight: 700;
}

/* === Notifications === */
.notification-area {
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 92%;
  max-width: 420px;
  pointer-events: none;
}
.notification {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: auto;
}
.notification.show {
  opacity: 1;
  transform: translateY(0);
}
.notification.success { background: #eafaf1; color: #1e8449; border-left: 4px solid #27ae60; }
.notification.warning { background: #fef9e7; color: #b7950b; border-left: 4px solid #f39c12; }
.notification.info { background: #ebf5fb; color: #2471a3; border-left: 4px solid #3498db; }
.notif-icon { font-size: 1.1rem; flex-shrink: 0; }

/* === LIVE Badge (from Infinitus Live) === */
.booth-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e0245e;
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  animation: liveBadgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.booth-live-badge:hover {
  background: #c01e50;
}
@keyframes liveBadgePulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

/* === Live Stream Section (embedded in kinbaisai) === */
.live-section {
  margin: 12px 16px 4px;
}
.live-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #e0245e;
  margin-bottom: 10px;
}
.live-section-link {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e0245e;
  text-decoration: none;
  opacity: 0.7;
}
.live-section-link:active { opacity: 1; }
.live-section-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0245e;
  animation: liveSectionPulse 1.5s ease-in-out infinite;
}
@keyframes liveSectionPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224,36,94,0.4); }
  50% { box-shadow: 0 0 0 5px transparent; }
}
.live-stream-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.live-stream-scroll::-webkit-scrollbar { display: none; }

.live-stream-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--c-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.15s;
}
.live-stream-card:active { transform: scale(0.97); }
.live-stream-thumb {
  position: relative;
  width: 200px;
  height: 113px;
  background: #111;
  overflow: hidden;
}
.live-stream-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.live-stream-thumb .live-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #e0245e;
  color: #fff;
  padding: 1px 8px;
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.live-stream-thumb .no-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  color: #555;
}
.live-stream-label {
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === Live Player Modal (in kinbaisai) === */
.live-player-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 250;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.live-player-overlay.active { display: flex; }
.live-player-box {
  width: 100%;
  max-width: 600px;
  padding: 12px;
}
.live-player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.live-player-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.live-player-close {
  background: none;
  border: none;
  color: #999;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.live-player-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.live-player-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.live-player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--c-card);
  border-radius: 8px;
}
.live-player-badge {
  background: #e0245e;
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
}
.live-player-mute {
  background: #ecf0f1;
  border: none;
  color: var(--c-text);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--font);
}
.live-player-status {
  font-size: 0.72rem;
  color: var(--c-text-sub);
  margin-left: auto;
}
