/* =======================================================
   album-title-contrast.css (left-aligned version)
   -------------------------------------------------------
   Phaseタイトルを左寄せ・小型化して
   グリッドと一体化した落ち着いた印象にする。
   ======================================================= */

.album .album-title,
#album .album-title {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 90%;
  margin: 20px 0 6px 4%;
  padding: 4px 12px 5px 14px;
  text-align: left;

  /* テキスト */
  color: #fff;
  font-weight: 600;
  font-size: clamp(13px, 1.1vw + 8px, 17px);
  letter-spacing: 0.03em;
  line-height: 1.4;

  /* 背景帯（細く軽い） */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
  border-radius: 6px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  /* 微妙な立体感 */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  box-shadow:
    0 0 6px rgba(0, 0, 0, 0.25),
    inset 0 0 3px rgba(255, 255, 255, 0.05);

  transition: all 0.3s ease;
}

/* === ホバー時（軽く光る） === */
.album .album-title:hover {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
  color: #e0feff;
  text-shadow:
    0 0 8px rgba(0, 255, 255, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.6);
}

/* === 明るい背景用 === */
.album-light-theme .album-title {
  color: #222;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.35) 70%,
    rgba(255, 255, 255, 0.05) 100%
  );
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.6),
    0 0 3px rgba(0, 0, 0, 0.2);
}

/* === ネオン・サイバー調（skin-glow） === */
.skin-glow .album-title {
  color: #ccf9ff;
  background: linear-gradient(
    90deg,
    rgba(0, 40, 50, 0.55) 0%,
    rgba(0, 70, 80, 0.25) 70%,
    rgba(0, 40, 50, 0.05) 100%
  );
  text-shadow:
    0 0 6px rgba(0, 255, 255, 0.5),
    0 0 14px rgba(0, 255, 255, 0.25);
}

/* === モバイル調整 === */
@media (max-width: 600px) {
  .album .album-title {
    margin: 18px 0 4px 5%;
    font-size: clamp(12px, 3.5vw, 16px);
    padding: 3px 10px;
    border-radius: 6px;
  }
}
