/* ============================================================
   KIRASORA 單頁落地頁
   賽博龐克霓虹風格 / Cyberpunk Neon
   ============================================================ */

:root {
  --bg: #05060c;
  --bg-2: #0a0e1c;
  --panel: rgba(14, 18, 34, 0.72);
  --panel-line: rgba(120, 160, 255, 0.14);

  --blue: #2de2ff;
  --red: #ff3860;
  --purple: #b14bff;
  --yellow: #ffd60a;

  --text: #eaf0ff;
  --muted: #8a93b4;

  --font-display: "Orbitron", "Noto Sans SC", system-ui, sans-serif;
  --font-body: "Noto Sans SC", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1140px;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

/* ---------- 背景層 ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(transparent 0, transparent 2px, rgba(45, 226, 255, 0.06) 3px),
    linear-gradient(90deg, transparent 0, transparent 2px, rgba(45, 226, 255, 0.06) 3px);
  background-size: 46px 46px;
  transform: perspective(420px) rotateX(58deg) scale(2.4);
  transform-origin: center 70%;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 75%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 75%, #000 30%, transparent 80%);
  animation: gridmove 14s linear infinite;
  opacity: 0.9;
}
@keyframes gridmove {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 46px, 46px 0; }
}

.bg-glow {
  position: fixed;
  z-index: -2;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
}
.bg-glow--blue   { top: -18vw; left: -12vw; background: radial-gradient(circle, var(--blue), transparent 65%); }
.bg-glow--red    { top: 20vw; right: -18vw; background: radial-gradient(circle, var(--red), transparent 65%); }
.bg-glow--purple { bottom: -22vw; left: 30vw; background: radial-gradient(circle, var(--purple), transparent 65%); }

.bg-scan {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  opacity: 0.5;
}

/* ---------- 導覽列 ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 48px);
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5,6,12,0.85), rgba(5,6,12,0.35));
  border-bottom: 1px solid var(--panel-line);
  transition: padding 0.3s ease;
}
.nav--scrolled { padding-top: 10px; padding-bottom: 10px; }

.nav__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
}
.nav__logo {
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #04060f;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(45,226,255,0.6);
}
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link {
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  transition: width 0.25s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.nav__cta {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  color: var(--blue);
  box-shadow: 0 0 14px rgba(45,226,255,0.3) inset;
  transition: all 0.25s ease;
}
.nav__cta:hover { background: var(--blue); color: #04060f; box-shadow: 0 0 22px rgba(45,226,255,0.7); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* 右側操作區：語言按鈕 + hamburger 靠攏 */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 語言切換（地球按鈕） */
.nav__lang {
  width: 38px; height: 38px;
  margin-left: 14px;
  border-radius: 50%;
  border: 1px solid var(--panel-line);
  background: rgba(5,7,15,0.6);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.25s;
  flex-shrink: 0;
}
.nav__lang:hover { border-color: var(--blue); color: #fff; box-shadow: 0 0 14px rgba(45,226,255,0.55); }
.nav__lang:active { transform: scale(0.92); }

/* ---------- HERO（左右分欄：文字 + 樂團大相）---------- */
.hero {
  min-height: 100vh;
  padding: 110px clamp(18px, 4vw, 48px) 70px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero__grid {
  max-width: 1180px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

/* 左欄：文字（左對齊） */
.hero__text { text-align: left; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: clamp(2px, 0.8vw, 10px);
  line-height: 0.95;
  background: linear-gradient(180deg, #ffffff, #9fd8ff 55%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  filter: drop-shadow(0 0 26px rgba(45,226,255,0.42));
}
/* 故障/雙重霓虹效果 */
.hero__title::before, .hero__title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: transparent;
}
.hero__title::before { left: 2px; text-shadow: -2px 0 var(--red); clip-path: inset(0 0 0 0); animation: glitch 4.5s infinite linear alternate; opacity: 0.55; }
.hero__title::after  { left: -2px; text-shadow: 2px 0 var(--purple); animation: glitch 3.7s infinite linear alternate-reverse; opacity: 0.45; }

.hero__tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  margin-top: 18px;
  color: #fff;
}
.hero__sub { color: var(--muted); margin-top: 10px; font-size: 0.98rem; }
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* 右欄：樂團相片 */
.hero__visual {
  position: relative;
  display: grid; place-items: center;
}
.hero__img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  /* 霓虹邊框 */
  box-shadow:
    0 0 0 2px rgba(45,226,255,0.25),
    0 0 30px rgba(45,226,255,0.15),
    0 0 80px rgba(177,75,255,0.12),
    0 20px 50px rgba(0,0,0,0.45);
  transition: transform 0.5s cubic-bezier(.17,.67,.29,1.33), box-shadow 0.5s ease;
  /* 微微傾斜，更有動態感 */
  transform: rotate(-1.5deg);
}
.hero__img:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 0 0 2px rgba(45,226,255,0.5),
    0 0 44px rgba(45,226,255,0.3),
    0 0 110px rgba(177,75,255,0.2),
    0 24px 60px rgba(0,0,0,0.5);
}

/* 相片角落裝飾線（賽博風） */
.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero__visual::before {
  top: -8px; right: -8px;
  width: 36px; height: 36px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  filter: drop-shadow(0 0 8px var(--red));
}
.hero__visual::after {
  bottom: -8px; left: -8px;
  width: 36px; height: 36px;
  border-bottom: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  filter: drop-shadow(0 0 8px var(--blue));
}

/* Scroll 提示 */
.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span {
  width: 2px; height: 34px;
  background: linear-gradient(var(--blue), transparent);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes glitch {
  0%, 92%, 100% { transform: translate(0,0); clip-path: inset(0 0 0 0); }
  93% { transform: translate(-3px, 1px); clip-path: inset(20% 0 50% 0); }
  96% { transform: translate(3px, -1px); clip-path: inset(60% 0 10% 0); }
}
@keyframes scrolldot { 0%,100% { opacity: 0.2; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- 按鈕 ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-block;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #04060f;
  box-shadow: 0 0 22px rgba(45,226,255,0.45);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(45,226,255,0.75); }
.btn--ghost {
  border-color: rgba(255,255,255,0.28);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 18px rgba(45,226,255,0.3); }

/* ---------- 區塊通用 ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 11vw, 130px) clamp(18px, 5vw, 40px);
}
.section--alt {
  max-width: none;
  background: linear-gradient(180deg, rgba(10,14,28,0) 0%, rgba(10,14,28,0.6) 12%, rgba(10,14,28,0.6) 88%, rgba(10,14,28,0) 100%);
}
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.section__head { text-align: center; margin-bottom: 56px; }
.section__kicker {
  font-family: var(--font-display);
  letter-spacing: 5px;
  font-size: 0.78rem;
  color: var(--accent, var(--blue));
  filter: drop-shadow(0 0 10px currentColor);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 2px;
}
.section__lead { color: var(--muted); margin-top: 12px; font-size: 1.02rem; }

/* ---------- 成員 ---------- */
.members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.member {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  overflow: hidden;
  --accent-ink: var(--accent);   /* 可見霓虹色，預設等同代表色 */
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.member:hover {
  transform: translateY(-8px);
  border-color: var(--accent-ink);
  box-shadow: 0 0 34px color-mix(in srgb, var(--accent-ink) 45%, transparent);
}
.member__avatar {
  width: 88px; height: 88px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--accent) 30%, #0a0e1c), #060812);
  border: 2px solid var(--accent-ink);
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent-ink) 55%, transparent), inset 0 0 18px color-mix(in srgb, var(--accent-ink) 30%, transparent);
  position: relative;
}
.member__avatar::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 4px);
  opacity: 0.5;
  pointer-events: none;
}
.member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.member__initial {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--accent-ink);
  text-shadow: 0 0 16px var(--accent-ink);
}
.member__body { text-align: center; }
.member__role {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--accent-ink);
  margin-bottom: 6px;
}
.member__name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.member__desc { color: var(--muted); font-size: 0.92rem; }
.member__bar {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-ink), transparent);
  opacity: 0.8;
}

/* ---------- 音樂作品 ---------- */
.music { display: grid; gap: 26px; }
.release {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 22px;
  align-items: center;
}
.release__art {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid var(--panel-line);
  overflow: hidden;
  background: #0a0f20;
}
.release__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release__eq { display: flex; gap: 6px; align-items: flex-end; height: 64px; }
.release__eq i {
  width: 8px;
  background: linear-gradient(var(--blue), var(--purple));
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(45,226,255,0.6);
  animation: eq 1s ease-in-out infinite;
}
.release__eq i:nth-child(1){ height: 30%; animation-delay: 0s; }
.release__eq i:nth-child(2){ height: 80%; animation-delay: 0.2s; }
.release__eq i:nth-child(3){ height: 50%; animation-delay: 0.4s; }
.release__eq i:nth-child(4){ height: 95%; animation-delay: 0.15s; }
@keyframes eq { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

.release__tag { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 2px; color: var(--blue); }
.release__title { font-size: 1.8rem; font-weight: 700; margin: 6px 0 10px; }
.release__desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.release__play {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.release__play:hover { background: var(--blue); color: #04060f; box-shadow: 0 0 20px rgba(45,226,255,0.6); }

.tracklist { list-style: none; display: grid; gap: 10px; }
.track {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(14,18,34,0.5);
  border: 1px solid var(--panel-line);
  border-radius: 12px;
  transition: 0.25s;
}
.track:hover { border-color: var(--purple); background: rgba(177,75,255,0.08); transform: translateX(4px); }
.track__no { font-family: var(--font-display); color: var(--muted); font-size: 0.9rem; }
.track__name { font-weight: 500; color: #fff; text-decoration: none; transition: 0.25s; }
.track__name:hover { color: var(--blue); text-shadow: 0 0 12px rgba(45,226,255,0.6); }
.track__play {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--panel-line);
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  transition: 0.25s;
}
.track__play:hover { background: var(--blue); color: #04060f; }

/* 各平台收聽 */
.listen {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.listen__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}
.listen__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.listen__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 13px 14px;
  border: 1px solid var(--panel-line);
  border-radius: 12px;
  color: #e9edff;
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(14,18,34,0.5);
  transition: 0.25s;
}
.listen__link:hover {
  border-color: var(--blue);
  color: #fff;
  background: rgba(45,226,255,0.1);
  box-shadow: 0 0 18px rgba(45,226,255,0.35);
  transform: translateY(-3px);
}
/* 「查看全部曲目」強調按鈕 */
.listen__link--more {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(45,226,255,0.08);
}
.listen__link--more:hover {
  background: var(--blue);
  color: #04060f;
  box-shadow: 0 0 18px rgba(45,226,255,0.45);
  transform: translateY(-3px);
}

/* 音樂作品：卡片格 */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 22px;
  margin-bottom: 50px;
}
.track-card {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.track-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 0 30px rgba(45,226,255,0.22);
}
.track-card__cover {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.track-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.track-card:hover .track-card__cover img { transform: scale(1.06); }
.track-card__cover--ph {
  display: grid; place-items: center;
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(45,226,255,0.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(177,75,255,0.35), transparent 55%),
    linear-gradient(135deg, #0a0f20, #1a1030);
}
.track-card__cover--ph::after {
  content: "歌詞 ↗";
  position: absolute;
  bottom: 10px; right: 12px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--blue);
  opacity: 0.7;
}
.track-card__ph-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
  color: #eaf0ff;
  text-shadow: 0 0 14px rgba(45,226,255,0.5);
}
.track-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.track-card__title {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.track-card__play {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  color: var(--blue);
  transition: 0.25s;
}
.track-card__play:hover {
  background: var(--blue);
  color: #04060f;
  box-shadow: 0 0 18px rgba(45,226,255,0.5);
}

/* ---------- 歌詞頁 ---------- */
.lyric {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}
.lyric__cover {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  background: linear-gradient(135deg, #0a0f20, #1a1030);
}
.lyric__cover img { width: 100%; display: block; }
.lyric__cover.is-ph {
  display: grid; place-items: center;
  aspect-ratio: 1;
  padding: 20px;
  text-align: center;
}
.lyric__ph {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #eaf0ff;
  text-shadow: 0 0 14px rgba(45,226,255,0.5);
  line-height: 1.4;
}
.lyric__back {
  display: inline-block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  transition: 0.25s;
}
.lyric__credit {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 0.82rem;
  color: var(--blue);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 10px rgba(45,226,255,0.4));
}
.lyric__back:hover { color: var(--blue); text-shadow: 0 0 12px rgba(45,226,255,0.5); }
.lyric__text {
  font-family: var(--font-body);
  white-space: pre-wrap;
  color: #d6ddf0;
  font-size: 1.05rem;
  line-height: 2;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 22px;
}
.lyric__play {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-weight: 600;
  transition: 0.25s;
}
.lyric__play:hover { background: var(--blue); color: #04060f; box-shadow: 0 0 18px rgba(45,226,255,0.5); }
@media (max-width: 760px) {
  .lyric { grid-template-columns: 1fr; }
  .lyric__cover { max-width: 240px; }
}

/* ---------- 廣告位 ---------- */
.ad-slot {
  max-width: 1000px;
  margin: 40px auto;
  padding: 14px 18px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 10px, transparent 10px 20px),
    rgba(14,18,34,0.4);
  border: 1px dashed var(--panel-line);
  border-radius: var(--radius);
}
.ad-slot__label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--muted);
  opacity: 0.7;
}
.ad-slot .adsbygoogle { width: 100%; }

/* ---------- 最新動態 ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.news {
  position: relative;
  padding: 26px 24px;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news:hover { transform: translateY(-5px); box-shadow: 0 0 26px rgba(45,226,255,0.25); }
.news__date { font-family: var(--font-display); color: var(--blue); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 8px; }
.news__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.news__text { color: var(--muted); font-size: 0.93rem; }

/* ---------- 訂閱 ---------- */
.subscribe { display: grid; place-items: center; }
.subscribe__card {
  width: min(640px, 100%);
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 22px;
  padding: clamp(34px, 6vw, 56px);
  box-shadow: 0 0 50px rgba(45,226,255,0.15);
}
.subscribe__title { font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.4rem); letter-spacing: 1px; }
.subscribe__lead { color: var(--muted); margin: 12px 0 26px; }
.subscribe__form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.subscribe__input {
  flex: 1 1 260px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--panel-line);
  background: rgba(5,7,15,0.6);
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: 0.25s;
}
.subscribe__input:focus { border-color: var(--blue); box-shadow: 0 0 16px rgba(45,226,255,0.3); }
.subscribe__note { color: var(--muted); font-size: 0.85rem; margin-top: 16px; }

/* ---------- 頁尾 ---------- */
.footer {
  border-top: 1px solid var(--panel-line);
  padding: 44px clamp(18px, 5vw, 40px);
  text-align: center;
  background: rgba(5,6,12,0.7);
}
.footer__brand { font-family: var(--font-display); font-weight: 900; letter-spacing: 5px; font-size: 1.4rem; margin-bottom: 16px; }
.footer__social { display: flex; gap: 22px; justify-content: center; margin-bottom: 18px; }
.footer__social a { color: var(--muted); font-size: 0.95rem; transition: 0.25s; }
.footer__social a:hover { color: var(--blue); text-shadow: 0 0 12px var(--blue); }
.footer__copy { color: var(--muted); font-size: 0.82rem; }
.footer__links { display: flex; gap: 18px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: 0.85rem; transition: 0.25s; }
.footer__links a:hover { color: var(--blue); text-shadow: 0 0 12px var(--blue); }

/* ---------- 法律頁（Privacy / Terms） ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px clamp(18px, 5vw, 40px) 80px;
}
.legal__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffffff, #9fd8ff 60%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(45,226,255,0.35));
  margin-bottom: 10px;
}
.legal__updated { color: var(--muted); font-size: 0.88rem; margin-bottom: 36px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue);
  margin: 34px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}
.legal p, .legal li { color: #c8cee0; font-size: 0.96rem; line-height: 1.8; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 22px; display: grid; gap: 8px; }
.legal a { color: var(--blue); text-decoration: underline; }
.legal a:hover { text-shadow: 0 0 12px var(--blue); }
.legal__back {
  display: inline-block;
  margin-top: 30px;
  padding: 11px 24px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 600;
  transition: 0.25s;
}
.legal__back:hover { background: var(--blue); color: #04060f; box-shadow: 0 0 20px rgba(45,226,255,0.6); }

/* ---------- 子頁標題（page-hero） ---------- */
.page-hero {
  text-align: center;
  padding: 130px clamp(18px, 5vw, 50px) 60px;
}
.page-hero__kicker {
  font-family: var(--font-display);
  letter-spacing: 4px;
  font-size: 0.78rem;
  color: var(--blue);
  text-shadow: 0 0 12px rgba(45,226,255,0.6);
  margin-bottom: 10px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 5rem);
  letter-spacing: 3px;
  background: linear-gradient(180deg, #ffffff, #9fd8ff 55%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(45,226,255,0.35));
}
.page-hero__lead { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.page-hero--alt .page-hero__title { filter: drop-shadow(0 0 24px rgba(255,56,96,0.35)); }
.page-hero--alt .page-hero__kicker { color: var(--red); text-shadow: 0 0 12px rgba(255,56,96,0.6); }
.page-hero--shop .page-hero__title { filter: drop-shadow(0 0 24px rgba(177,75,255,0.35)); }
.page-hero--shop .page-hero__kicker { color: var(--purple); text-shadow: 0 0 12px rgba(177,75,255,0.6); }

/* Landing Hero（首頁：無 SCROLL 提示） */
.hero--landing .hero__scroll { display: none; }

/* ---------- 首頁摘要 ---------- */
.timeline--compact .news { padding: 18px 22px; }
.news__link { color: inherit; transition: 0.25s; }
.news__link:hover { color: var(--blue); text-shadow: 0 0 10px rgba(45,226,255,0.5); }
.section__foot { text-align: center; margin-top: 28px; }

.listen--compact {
  border-top: none;
  padding: 22px 24px;
  overflow: visible;
}

/* ---------- 商店 ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.product {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 0 0 30px rgba(177,75,255,0.2);
}
.product__img {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0c1022, #131a32);
  border-bottom: 1px solid var(--panel-line);
}
.product__placeholder {
  font-size: 3rem;
  color: var(--purple);
  opacity: 0.5;
}
.product__info { padding: 20px; }
.product__name { font-family: var(--font-body); font-size: 1.08rem; font-weight: 600; color: #eef; margin-bottom: 6px; }
.product__desc { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 12px; }
.product__price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple);
  text-shadow: 0 0 10px rgba(177,75,255,0.4);
}
.shop__coming {
  text-align: center;
  margin-top: 48px;
  padding: 36px;
  border: 1px dashed var(--panel-line);
  border-radius: var(--radius);
}
.shop__coming-text { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }

/* 商店建設中 */
.shop-building {
  max-width: 560px;
  margin: 16px auto;
  text-align: center;
  padding: 56px 32px;
  border: 1px dashed color-mix(in srgb, var(--blue) 45%, transparent);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--blue) 12%, #0a0e1c), #060812);
  box-shadow: 0 0 40px color-mix(in srgb, var(--blue) 18%, transparent) inset;
}
.shop-building__icon {
  display: inline-grid;
  place-items: center;
  font-size: 2.6rem;
  color: var(--blue);
  text-shadow: 0 0 18px var(--blue);
  animation: spin 9s linear infinite;
  margin-bottom: 18px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.shop-building__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  letter-spacing: 6px;
  background: linear-gradient(180deg, #fff, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(45,226,255,0.5));
}
.shop-building__sub {
  font-family: var(--font-display);
  letter-spacing: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 8px 0 22px;
}
.shop-building__text {
  color: #cdd6ee;
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 28px;
}
@media (prefers-reduced-motion: reduce) { .shop-building__icon { animation: none; } }

/* ---------- 滾動揭示動畫 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 響應式 ---------- */
@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: 62px; right: 16px; left: 16px;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    background: rgba(8,10,20,0.96);
    border: 1px solid var(--panel-line);
    border-radius: 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__toggle { display: flex; }
  .release { grid-template-columns: 1fr; }
  .release__art { max-width: 200px; margin: 0 auto; }

  /* Hero 手機版：上下堆疊，相片在上 */
  .hero { padding: 90px 18px 50px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__text { text-align: center; order: 2; }   /* 文字在相片下面 */
  .hero__visual { order: 1; }
  .hero__img {
    transform: none !important;   /* 手機唔傾斜 */
    border-radius: 14px;
  }
  .hero__img:hover { transform: scale(1.02); }
  .hero__actions { justify-content: center; }
  /* 手機隱藏角落裝飾線 */
  .hero__visual::before,
  .hero__visual::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-grid, .hero__title::before, .hero__title::after, .release__eq i, .hero__scroll span { animation: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
