/* ===== Home Page ===== */

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 24px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,18,26,0.2), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
}

.hero-copy{
  min-width: 0;
}

.hero-kicker{
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfcfe0;
  opacity: 0.85;
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(2.0rem, 3.6vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.hero-lead {
  color: #cfcfe0;
  margin-bottom: 14px;
  max-width: 56ch;
}

.hero-facts{
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0 0 18px 0;
  padding: 0;
}
.hero-facts li{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 4px 12px;
  border-radius: 14px;
}
.fact-label{
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #cfcfe0;
  opacity: 0.85;
}
.fact-value{
  color: #e9e9f1;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Live Card */
.live-card {
  padding: 0;
  border-color: rgba(145, 70, 255, 0.45);
}

.live-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f0f15;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: #aaa;
  border-bottom: 1px solid #1a1a22;
}

.live-body {
  padding: 14px 14px 16px 14px;
}

.live-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.live-game {
  font-size: 0.85rem;
  color: #cfcfe0;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}

.live-cta{
  font-size: 0.88rem;
  color: #cfcfe0;
  opacity: 0.9;
}

/* Offline Card */
.offline-card{
  padding: 0;
  border-color: rgba(75, 0, 185, 0.45);
}

.offline-thumb{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid #1a1a22;

  /* 画像（ユーザー用意の webp） */
  background-image:
    linear-gradient(180deg, rgba(11,11,15,0.25), rgba(11,11,15,0.85)),
    radial-gradient(800px 380px at 30% 20%, rgba(145,70,255,0.14), transparent 60%),
    radial-gradient(700px 320px at 80% 10%, rgba(51,209,255,0.10), transparent 60%),
    url("/assets/images/offline-thumb.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
}

.status-badge.offline{
  background: rgba(233,233,241,0.06);
  border-color: rgba(233,233,241,0.12);
  color: #cfcfe0;
  box-shadow: none;
}

.offline-thumb-text{
  color: #e9e9f1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.65);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(11,11,15,0.35);
  border: 1px solid rgba(233,233,241,0.10);
}

.offline-body{
  padding: 14px 14px 16px 14px;
}

.offline-desc{
  color: #cfcfe0;
  opacity: 0.92;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.offline-cta{
  font-size: 0.88rem;
  color: #cfcfe0;
  opacity: 0.9;
}

/* About */
.about-box {
  padding: 18px 18px;
}

.about-list {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  color: #cfcfe0;
}

/* Nav cards */
.nav-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.nav-card {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.nav-card-title {
  font-size: 1.05rem;
  font-weight: 900;
}

.nav-card-desc {
  color: #cfcfe0;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .nav-grid {
    grid-template-columns: 1fr;
  }
  .hero{
    padding-top: 40px;
  }
  .hero-inner{
    padding: 20px;
  }
}

/* ===== Status Badge (共通思想) ===== */
.status-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
  background: rgba(233,233,241,0.08);
  border: 1px solid rgba(233,233,241,0.18);
  color: #e9e9f1;
}

/* ONLINE 専用 */
.status-badge.online{
  background: rgba(255, 64, 64, 0.18);
  border-color: rgba(255, 96, 96, 0.45);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 64, 64, 0.35);
}
