/* ====================================================
   YUKI SHUNSUKE Official Website
   Aesthetic: Warm / Acoustic / Rustic / Minimalist
   ==================================================== */

/* Variables */
:root {
  --bg: #fafafa;
  --bg-cream: #f8f4ec;
  --text: #2a2a2a;
  --text-sub: #666666;
  --accent: #7c5e35;
  --btn: #a27b4c;
  --btn-hover: #8b6638;
  --divider: #e5ddd0;
  --serif: 'Noto Serif JP', Georgia, 'Times New Roman', serif;
}

/* ──────────── Reset ──────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--serif);
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.25s;
}

a:hover {
  opacity: 0.65;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
}

/* ──────────── Layout ──────────── */
.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 6%;
}

.section {
  padding: 110px 0;
}

.bg-cream {
  background: var(--bg-cream);
}

.text-center {
  text-align: center;
}

/* ──────────── Typography ──────────── */
h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 60px;
}

h3 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

h4 {
  font-size: 1.05rem;
  font-weight: 400;
}

/* ──────────── Buttons ──────────── */
.cta-btn,
.button-primary {
  display: inline-block;
  background: var(--btn);
  color: #fff !important;
  padding: 13px 34px;
  border-radius: 3px;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: background 0.3s;
  opacity: 1 !important;
}

.cta-btn:hover,
.button-primary:hover {
  background: var(--btn-hover);
  opacity: 1 !important;
}

/* ──────────── Header ──────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  z-index: 900;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

#header.scrolled {
  background: rgba(250, 250, 248, 0.97);
  padding: 14px 6%;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.logo {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--text);
  z-index: 901;
}

/* Nav Desktop */
.nav-menu ul {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-menu a:hover {
  opacity: 1;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  width: 26px;
  height: 18px;
  position: relative;
  z-index: 901;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
  left: 0;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.3px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.3px) rotate(-45deg);
}

/* ──────────── Hero ──────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-color: #e8ddd0;
}

/* オーバーレイ：写真の雰囲気を残しつつテキストを読みやすく */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 245, 0.42);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  letter-spacing: 0.12em;
  color: var(--text-sub);
  margin-bottom: 42px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.scroll-hint:hover {
  opacity: 0.8;
}

.scroll-arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  animation: bounce 1.8s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* ──────────── About ──────────── */
.about-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-portrait {
  flex: 0 0 200px;
}

.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 28px rgba(124, 94, 53, 0.18);
  border: 4px solid #fff;
}

.about-text-block p {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 2.2;
  margin-bottom: 22px;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

/* ──────────── Music ──────────── */
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.music-card {
  text-align: center;
}

.jacket-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 6px 24px rgba(124, 94, 53, 0.12);
  cursor: pointer;
  background: #e8d8b8;
  transition: box-shadow 0.3s;
}

.jacket-wrapper:hover {
  box-shadow: 0 10px 32px rgba(124, 94, 53, 0.22);
}

.jacket-svg,
.jacket-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jacket-wrapper:hover .jacket-svg,
.jacket-wrapper:hover .jacket-img {
  transform: scale(1.04);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  backdrop-filter: blur(4px);
}

.jacket-wrapper:hover .play-btn {
  opacity: 1;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.98);
}

.play-icon {
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--accent);
  margin-left: 4px;
  transition: all 0.2s;
}

/* Pause state */
.play-btn.playing .play-icon {
  width: 13px;
  height: 16px;
  border: none;
  border-left: 4px solid var(--accent);
  border-right: 4px solid var(--accent);
  margin-left: 0;
}

.music-info {
  margin-top: 18px;
}

.store-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.store-btn {
  font-size: 0.75rem;
  color: var(--text-sub);
  border: 1px solid var(--divider);
  padding: 5px 14px;
  border-radius: 20px;
  transition: border-color 0.25s, color 0.25s;
}

.store-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

/* ──────────── Live ──────────── */
.live-list {
  max-width: 680px;
  margin: 0 auto;
}

.live-item {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--divider);
  align-items: flex-start;
}

.live-item:last-child {
  border-bottom: none;
}

.live-date-block {
  flex: 0 0 72px;
  text-align: center;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 8px 6px;
}

.live-date-block.past {
  border-color: var(--divider);
  opacity: 0.6;
}

.live-month {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
}

.live-date-block.past .live-month {
  color: var(--text-sub);
}

.live-day {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text);
  font-weight: 300;
}

.live-year {
  display: block;
  font-size: 0.65rem;
  color: var(--text-sub);
  letter-spacing: 0.1em;
}

.live-info h4 {
  margin-bottom: 6px;
}

.live-info p {
  font-size: 0.88rem;
  color: var(--text-sub);
  margin-bottom: 12px;
}

.badge {
  font-size: 0.65rem;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  vertical-align: middle;
  margin-left: 8px;
}

.text-link {
  color: var(--btn);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 1px;
}

.text-link:hover {
  border-color: var(--btn);
  opacity: 1;
}

/* ──────────── Note ──────────── */
.note-list {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

.note-list::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 0;
  width: 1px;
  background: var(--divider);
}

.note-item {
  position: relative;
  padding: 0 0 44px 44px;
}

.note-item:last-child {
  padding-bottom: 0;
}

.note-item::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--btn);
  box-shadow: 0 0 0 4px var(--bg-cream);
}

.note-date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-sub);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.note-content {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 2;
}

/* ──────────── Contact ──────────── */
.contact-text {
  color: var(--text-sub);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
}

.sns-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.sns-btn {
  font-size: 0.82rem;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  border: 1px solid var(--divider);
  padding: 8px 20px;
  border-radius: 24px;
  transition: border-color 0.25s, color 0.25s;
}

.sns-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

/* ──────────── Footer ──────────── */
.footer {
  background: var(--bg-cream);
  padding: 44px 0;
  border-top: 1px solid var(--divider);
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin: 0 14px;
}

.copyright {
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 0.08em;
}

/* ──────────── Animations ──────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Hero fade-in fires immediately */
.hero .fade-in {
  animation: heroFade 1.4s ease 0.4s forwards;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ──────────── Responsive ──────────── */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 244, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 900;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu ul {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

  .nav-menu a {
    font-size: 1.4rem;
  }

  .about-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .about-portrait {
    flex: none;
    margin: 0 auto;
  }

  .live-item {
    flex-direction: column;
    gap: 16px;
  }

  .live-date-block {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 6px 14px;
    width: auto;
  }

  .live-day {
    font-size: 1.2rem;
  }

  .sns-links {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .music-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-content h1 {
    letter-spacing: 0.1em;
  }
}

/* ──────────── Modal ──────────── */
.detail-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 35, 25, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.visible {
  opacity: 1;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-box {
  background: #fff;
  border-radius: 6px;
  max-width: 520px;
  width: 100%;
  padding: 48px 44px 40px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.35s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-overlay.visible .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-sub);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.modal-tag.archive {
  background: var(--text-sub);
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.5;
}

.modal-detail {
  border-top: 1px solid var(--divider);
  margin-bottom: 24px;
}

.modal-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 0.9rem;
}

.modal-row dt {
  flex: 0 0 64px;
  color: var(--text-sub);
  font-weight: 400;
}

.modal-row dd {
  color: var(--text);
  line-height: 1.7;
}

.modal-info {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 28px;
}

.modal-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-footer a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.modal-footer .btn-primary {
  background: var(--btn);
  color: #fff;
}

.modal-footer .btn-primary:hover {
  background: var(--btn-hover);
  opacity: 1;
  color: #fff;
}

.modal-footer .btn-outline {
  border: 1px solid var(--divider);
  color: var(--text-sub);
}

.modal-footer .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

@media (max-width: 560px) {
  .modal-box {
    padding: 40px 24px 32px;
  }

  .modal-row {
    flex-direction: column;
    gap: 4px;
  }

  .modal-row dt {
    flex: none;
  }
}

/* ──────────── Note「もっと見る」 ──────────── */
.note-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.note-more-btn {
  background: none;
  border: 1px solid var(--divider);
  color: var(--text-sub);
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  padding: 10px 36px;
  border-radius: 24px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.note-more-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ──────────── Music: ジャケットオーバーレイ & 再生ボタン外配置 ──────────── */
.jacket-wrapper {
  /* button reset */
  appearance: none;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
}

.jacket-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 35, 25, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.jacket-wrapper:hover .jacket-overlay,
.jacket-wrapper:focus-visible .jacket-overlay {
  opacity: 1;
}

.jacket-detail-icon {
  color: #fff;
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 6px 18px;
  border-radius: 20px;
}

/* 再生ボタンをカード外側（music-infoの横）に配置 */
.music-card {
  position: relative;
}

.play-btn-outside {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(124, 94, 53, 0.1);
  border: 1px solid var(--divider);
  border-radius: 50%;
  cursor: pointer;
  margin: 12px auto 0;
  transition: background 0.3s;
}

.play-btn-outside:hover {
  background: rgba(124, 94, 53, 0.2);
}

.play-btn-outside .play-icon {
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--accent);
  margin-left: 3px;
}

.play-btn-outside.playing .play-icon {
  width: 10px;
  height: 12px;
  border: none;
  border-left: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  margin-left: 0;
}

/* ──────────── Album Modal ──────────── */
.album-modal-box {
  max-width: 680px;
  padding: 0;
  overflow: hidden;
}

.album-modal-inner {
  display: flex;
  gap: 0;
}

.album-modal-jacket {
  flex: 0 0 220px;
  background: #f0ebe0;
}

.album-modal-img {
  width: 220px;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
}

.album-modal-content {
  padding: 40px 36px 36px;
  flex: 1;
  overflow-y: auto;
  max-height: 80vh;
}

.album-modal-meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-sub);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.album-modal-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  line-height: 1.5;
}

.album-track-list {
  list-style: none;
  counter-reset: track-counter;
  border-top: 1px solid var(--divider);
  margin-bottom: 24px;
}

.album-track-list li {
  counter-increment: track-counter;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--divider);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.album-track-list li::before {
  content: counter(track-counter, decimal-leading-zero);
  font-size: 0.7rem;
  color: var(--text-sub);
  min-width: 20px;
}

.album-modal-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 28px;
}

.album-modal-stores {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.album-modal-stores a {
  font-size: 0.78rem;
  color: var(--text-sub);
  border: 1px solid var(--divider);
  padding: 7px 18px;
  border-radius: 20px;
  transition: border-color 0.25s, color 0.25s;
  letter-spacing: 0.08em;
}

.album-modal-stores a:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
}

/* Album modal close button */
.album-modal-box .modal-close {
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  width: 30px;
  height: 30px;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .album-modal-inner {
    flex-direction: column;
  }

  .album-modal-jacket {
    flex: none;
  }

  .album-modal-img {
    width: 100%;
    height: 200px;
    min-height: unset;
  }

  .album-modal-content {
    padding: 28px 24px 28px;
  }
}

/* ──────────── Now Playing Bar ──────────── */
.now-playing-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(42, 35, 25, 0.92);
  backdrop-filter: blur(10px);
  color: #f5ede0;
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.now-playing-bar[hidden] {
  display: flex !important;
  /* hiddenでも初期非表示はtransformで制御 */
  visibility: hidden;
}

.now-playing-bar.visible {
  transform: translateY(0);
  visibility: visible;
}

.now-playing-icon {
  font-size: 1rem;
  animation: pulse-note 1.6s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulse-note {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.now-playing-title {
  flex: 1;
}

.now-playing-stop {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f5ede0;
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 0.7rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, background 0.2s;
}

.now-playing-stop:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

/* ──────────── SNS Icon Buttons ──────────── */
.sns-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  color: var(--text-sub);
  font-size: 1.2rem;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
  opacity: 1;
}

.sns-icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(124, 94, 53, 0.06);
  transform: translateY(-2px);
  opacity: 1;
}

/* ──────────── SoundCloud Player ──────────── */
.soundcloud-player {
  max-width: 680px;
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(124, 94, 53, 0.10);
  border: 1px solid var(--divider);
}

.soundcloud-player iframe {
  display: block;
}