/* content-pop.css v1.0.0
 * ゴールド × 薄いオレンジのポップテーマ
 * content-base.css / content-components.css の後に読み込んで上書きする。
 * カラーは .claude/colors.md のメインゴールド (#FFD700) を主軸に、
 * アクセントとしてパレットの「薄いオレンジ」(#FFB870) を使用。
 */

/* === デザイントークン上書き === */
:root {
  --color-bg: #FFFDF5;
  --color-surface: #FFFFFF;
  --color-surface-alt: #FFFACD;
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-tertiary: #888888;
  --color-gold: #FFD700;
  --color-gold-light: #FFFACD;
  --color-gold-dark: #FFB000;
  --color-accent: #FFB870;
  --color-accent-hover: #F0A050;
  --color-border: #EFEAD8;
  --color-border-gold: #FFD700;
}

body { background: #FFFDF5; color: #333333; }

/* === Header === */
.global-header { background: #ffffff; border-bottom: 1px solid #EFEAD8; }
.header-cta .btn-primary {
  background: #FFD700;
  color: #333333;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  font-weight: 700;
}
.header-cta .btn-primary:hover { background: #FFC000; color: #333333; }

/* === Article header (Hero) === */
.article-header {
  background: #FFFACD;
  border: none;
  border-bottom: 3px solid #FFD700;
  border-radius: 12px;
  padding: 36px 32px;
  margin: 24px 0 40px;
}
.article-header h1 {
  font-size: 1.875rem;
  font-weight: 800;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 12px;
}
.article-header .article-meta { color: #888888; font-weight: 500; }
.article-header .article-lead { font-weight: 500; color: #666666; }

/* === Headings === */
h2 {
  display: block;
  color: #333333;
  background: transparent;
  border-left: 4px solid #FFB870;
  border-radius: 0;
  box-shadow: none;
  padding: 4px 0 4px 16px;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-band h2,
.related-articles h2 { border-left: none; padding-left: 0; }
h3 { font-weight: 700; color: #333333; }

/* === Breadcrumb === */
.breadcrumb a { color: #FFB000; }

/* === Mode cards (lottery-modes.html 等) === */
.mode-card {
  background: #ffffff;
  border: 1px solid #EFEAD8;
  border-radius: 14px;
  padding: 28px;
  margin: 18px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.mode-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.mode-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.mode-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFD700;
  color: #333333;
  border-radius: 12px;
  border: none;
  flex-shrink: 0;
}
.mode-icon svg { stroke: #333333; display: block; }
.mode-title { font-size: 20px; font-weight: 800; color: #333333; }
.mode-subtitle { color: #888888; font-weight: 500; font-size: 13px; }
.mode-desc { color: #666666; line-height: 1.85; margin-bottom: 14px; }
.mode-features {
  background: #FFFDF5;
  border: none;
  border-radius: 10px;
  padding: 14px 18px;
}
.mode-features h3 {
  font-size: 13px;
  color: #333333;
  margin-bottom: 8px;
  background: none;
  padding: 0;
  border: none;
  box-shadow: none;
  display: block;
}
.mode-features ul { margin: 0; padding-left: 18px; color: #666666; }
.mode-best-for {
  background: #FFFACD;
  color: #333333;
  border-radius: 10px;
  border-left: 3px solid #FFD700;
  padding: 12px 16px;
  margin-top: 14px;
}
.mode-best-for strong { color: #333333; }
.mode-best-for p { color: #666666; }

.try-button {
  display: inline-block;
  margin-top: 14px;
  background: #FFB870;
  color: #333333;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.try-button:hover {
  background: #F0A050;
  transform: translateY(-1px);
  color: #333333;
  text-decoration: none;
}

/* === Demo start button === */
.demo-start-button {
  background: #FFD700;
  color: #333333;
  border: none;
  border-bottom: 4px solid #FFB000;
  border-radius: 10px;
  font-weight: 700;
}
.demo-start-button:hover { background: #FFC000; border-bottom-color: #C8A600; }

/* === Comparison table === */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #EFEAD8;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.comparison-table th {
  background: #FFFACD;
  color: #333333;
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 2px solid #FFD700;
}
.comparison-table td {
  border-bottom: 1px solid #EFEAD8;
  color: #333333;
  padding: 12px 14px;
}
.comparison-table tr:nth-child(even) { background: #FFFDF5; }
.comparison-table tr:hover { background: #FFFACD; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:last-child,
.comparison-table th:last-child { background: #FFF8CC; }

/* === Scene cards === */
.scene-card {
  background: #ffffff;
  border: 1px solid #EFEAD8;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 20px 22px;
  margin: 12px 0;
}
.scene-card-title {
  color: #333333;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.scene-card-recommend {
  display: inline-block;
  background: #FFB870;
  color: #333333;
  border: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 14px;
  font-size: 13px;
  margin-bottom: 8px;
}
.scene-card p { color: #666666; }

/* === Tip / Warning / Point box === */
.tip-box,
.warning-box,
.point-box { border-radius: 10px; }

/* === FAQ === */
.faq-item {
  border: 1px solid #EFEAD8;
  border-radius: 10px;
  margin-bottom: 8px;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
}
.faq-question { background: #ffffff; font-weight: 700; color: #333333; }
.faq-question::before { background: #FFD700; color: #333333; }

/* === CTA band === */
.cta-band {
  background: #FFFACD;
  border: none;
  border-top: 3px solid #FFD700;
  border-bottom: 3px solid #FFD700;
  border-radius: 0;
  box-shadow: none;
  padding: 48px 28px;
  margin: 48px 0;
}
.cta-band h2 {
  background: transparent;
  color: #333333;
  border: none;
  box-shadow: none;
  font-size: 1.75rem;
  padding: 0;
}

/* === Primary button === */
.btn-primary {
  background: #FFD700;
  color: #333333;
  border: none;
  border-radius: 10px;
  box-shadow: none;
  font-weight: 700;
  padding: 12px 28px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: #FFC000;
  color: #333333;
  transform: translateY(-1px);
}

/* === Related cards === */
.related-card {
  background: #ffffff;
  border: 1px solid #EFEAD8;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.related-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.related-card-icon {
  background: #FFD700;
  height: 4px;
  width: 32px;
  border-radius: 2px;
}
.related-card-title { font-weight: 700; color: #333333; }

/* === Footer === */
.global-footer { background: #333333; }
.footer-logo { color: #FFD700; font-weight: 700; }

/* === Mobile === */
@media (max-width: 640px) {
  .mode-card { padding: 20px; }
  .article-header h1 { font-size: 1.5rem; }
  .article-header { padding: 24px; }
  .comparison-table { font-size: 12px; }
  .comparison-table th,
  .comparison-table td { padding: 8px; }
}
