/* ========= 基本 ========= */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  margin: 16px;
  background-color: #fafafa;
  color: #222;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.3rem;
  margin: 32px 0 16px;
}

h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
}

/* ========= カードリスト ========= */

.card-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========= カード ========= */

.card {
  width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.thumbnail {
  width: 100%;
  display: block;
}

.card-body {
  padding: 8px 10px;
}

/* ========= バッジ ========= */

.badge {
  display: inline-block;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 4px;
}

.badge.live {
  background-color: #e53935;
}

.badge.upcoming {
  background-color: #1e88e5;
}

/* ========= テキスト ========= */

.title {
  font-size: 14px;
  line-height: 1.4;
  margin: 4px 0;
}

.time {
  font-size: 12px;
  color: #666;
}

/* ========= Skeleton ========= */

.skeleton {
  width: 260px;
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    #eee 25%,
    #f5f5f5 37%,
    #eee 63%
  );
  background-size: 400% 100%;
  animation: skeleton 1.4s ease infinite;
}

@keyframes skeleton {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

/* ========= フリーチャット ========= */

#freechat-list section {
  margin-bottom: 24px;
}

#freechat-list img {
  max-width: 320px;
  border-radius: 12px;
  display: block;
}
