/* ========================================
   Stripchat Casts — sc- prefix
   (既存サイトの CSS と衝突しないよう sc- プレフィックスを使用)
   ======================================== */
*, *::before, *::after { box-sizing: border-box; }

.sc-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ---- バッジ ---- */
.sc-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}
.sc-badge--live {
  background: #e53935;
  color: #fff;
  animation: sc-pulse 1.5s infinite;
}
@keyframes sc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

/* ---- ボタン ---- */
.sc-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
  text-decoration: none;
}
.sc-btn:hover { opacity: 0.85; text-decoration: none; }
.sc-btn--primary {
  background: linear-gradient(135deg, #f06292, #e91e63);
  color: #fff;
}
.sc-btn--large { padding: 14px 32px; font-size: 1.1rem; }
.sc-btn--block { display: block; width: 100%; }

/* ---- キャスト一覧 ---- */
.sc-page-title { font-size: 1.75rem; margin: 32px 0 24px; }

.sc-cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.sc-cast-card {
  background: #1e1e2e;
  border-radius: 10px;
  overflow: hidden;
  color: #e0e0e0;
  transition: transform 0.2s;
}
.sc-cast-card:hover { transform: translateY(-4px); }

.sc-cast-card__thumb-link { position: relative; display: block; }
.sc-cast-card__thumb { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sc-cast-card__thumb-link .sc-badge--live {
  position: absolute; top: 8px; left: 8px;
}

.sc-cast-card__body { padding: 12px; }
.sc-cast-card__name { font-size: 1rem; margin-bottom: 6px; }
.sc-cast-card__name a { color: #fff; text-decoration: none; }

.sc-cast-card__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 8px;
  padding: 0;
}
.sc-cast-card__meta li::after { content: "·"; margin-left: 4px; color: #555; }
.sc-cast-card__meta li:last-child::after { content: ""; }

.sc-cast-card__viewers { font-size: 0.82rem; color: #f06292; margin-bottom: 10px; }

/* ---- プロフィール（single） ---- */
.sc-cast-profile { padding: 32px 0; }

.sc-cast-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .sc-cast-hero { grid-template-columns: 1fr; } }

.sc-cast-hero__media { position: relative; }
.sc-cast-hero__snapshot { border-radius: 10px; width: 100%; display: block; }
.sc-cast-hero__avatar {
  position: absolute;
  bottom: -16px; left: 16px;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid #1e1e2e;
  object-fit: cover;
}

.sc-cast-hero__name {
  font-size: 2rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sc-cast-hero__username { color: #888; font-size: 0.9rem; margin-bottom: 16px; }

.sc-cast-hero__meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  padding: 0;
}
.sc-meta-label { color: #888; margin-right: 6px; font-size: 0.8rem; }

.sc-cast-hero__stats { display: flex; gap: 20px; margin-bottom: 24px; }
.sc-stat { text-align: center; }
.sc-stat__value { display: block; font-size: 1.4rem; font-weight: bold; color: #f06292; }
.sc-stat__label { display: block; font-size: 0.75rem; color: #888; }

.sc-cast-hero__cta { margin-bottom: 20px; }
.sc-cast-hero__cta-note { color: #f06292; font-size: 0.85rem; margin-top: 6px; }

.sc-cast-rates__title { font-size: 0.9rem; color: #aaa; margin-bottom: 6px; }
.sc-cast-rates__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  padding: 0;
}
.sc-cast-rates__list li {
  background: #2a2a3e;
  padding: 4px 10px;
  border-radius: 20px;
  color: #e0e0e0;
}

/* ---- 本文 ---- */
.sc-cast-content {
  background: #1e1e2e;
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 32px;
  color: #ccc;
}
.sc-cast-content h2 {
  font-size: 1.25rem;
  border-left: 4px solid #f06292;
  padding-left: 12px;
  margin: 28px 0 14px;
  color: #fff;
}
.sc-cast-content h2:first-child { margin-top: 0; }
.sc-cast-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 12px;
  overflow-x: auto;
  display: block;
}
.sc-cast-content th, .sc-cast-content td {
  padding: 8px 12px;
  border: 1px solid #333;
  text-align: left;
  vertical-align: top;
}
.sc-cast-content th { background: #2a2a3e; color: #bbb; font-weight: normal; }
.sc-cast-content td img { max-width: 160px; border-radius: 4px; }

/* ---- SNS ---- */
.sc-cast-sns { margin-bottom: 32px; }
.sc-section-title {
  font-size: 1.25rem;
  border-left: 4px solid #f06292;
  padding-left: 12px;
  margin-bottom: 14px;
}
.sc-cast-sns__list { list-style: none; display: flex; gap: 12px; flex-wrap: wrap; padding: 0; }
.sc-cast-sns__list a {
  background: #2a2a3e;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #e0e0e0;
  text-decoration: none;
}
.sc-cast-sns__list a:hover { background: #f06292; color: #fff; }

/* ---- ページ下部 CTA ---- */
.sc-cast-cta-bottom {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #333;
}
