/*
Theme Name: KPOP-ANALYZER
Theme URI: https://www.kpop-analyzer.com/
Author: KPOP-ANALYZER
Description: Dark, neon-edged K-POP analysis theme for KPOP-ANALYZER with multi-language support and custom content types.
Version: 0.1.0
Text Domain: kpop-analyzer
*/

/* Basic reset / typography scaffold.
   Tailwind やビルド済みCSSを後で追加する前提の、最低限のベースのみ */

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background-color: #020617; /* slate-950 */
  color: #e5e7eb; /* slate-200 */
}

/* ========================================
   特集記事ヘッダー：背景画像を暗くして
   タイトルとリード文の可読性を確保
   ======================================== */
.features-hero-overlay {
  /* 下部ほど暗く、上に向かって少しだけ明るくする */
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.95) 0%,
    rgba(2, 6, 23, 0.9) 35%,
    rgba(2, 6, 23, 0.75) 65%,
    rgba(2, 6, 23, 0.4) 100%
  );
}

a {
  color: #a855f7; /* purple-500 */
  text-decoration: none;
}

a:hover {
  color: #22c55e; /* green-500 */
}

/* ========================================
   ［特集記事］記事本文（見出し・リスト・余白）
   Tailwind CDN に typography が含まれないため、
   ここで必ず反映されるようにする
   ======================================== */
.features-article-body {
  line-height: 1.75;
  color: #cbd5e1; /* slate-300 */
}
.features-article-body p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.features-article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #475569; /* slate-600 */
  color: #f1f5f9;
}
.features-article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
}
.features-article-body ul,
.features-article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.features-article-body ul {
  list-style-type: disc;
}
.features-article-body ol {
  list-style-type: decimal;
}
.features-article-body li {
  margin: 0.375rem 0;
  padding-left: 0.25rem;
}
.features-article-body hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #475569;
}
