/* download.css
 * Download page specific styles.
 * migrated from symphonic2.css
 */

.download-page .download-demo-title {
  margin: 0 0 18px;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(24px, 2.1vw, 36px);
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 145, 230, 0.7),
    0 0 12px rgba(255, 95, 210, 0.5);
}

.download-page .download-demo-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 225, 0.65);
  background: rgba(0, 0, 0, 0.62);
  box-shadow:
    0 0 12px rgba(255, 110, 215, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: start;
  gap: 18px;
}

.download-page .download-demo-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 160, 235, 0.55);
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: clamp(220px, 24vw, 360px);
  background-image: url("../image/download/demo_cg.jpg");
  background-repeat: no-repeat;
  background-position: 50.2% 50%;
  background-size: cover;
  background-color: transparent;
}

.download-page .download-demo-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(220px, 24vw, 360px);
  gap: 14px;
}

.download-page .download-demo-desc {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 3px rgba(120, 210, 255, 0.6),
    0 0 9px rgba(70, 170, 255, 0.35);
}

.download-page .download-demo-note {
  margin: 14px 0 0;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.75;
  color: rgba(255, 205, 215, 0.96);
  text-shadow:
    0 0 3px rgba(255, 120, 150, 0.55),
    0 0 8px rgba(255, 80, 120, 0.3);
}

@media (max-width: 767px) {
  .download-page .download-demo-note {
    margin-top: 12px;
    font-size: 12px;
  }
}

.download-page .download-demo-btn {
  align-self: center;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 480px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1.02vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(100deg, rgba(104, 46, 146, 0.96) 0%, rgba(218, 83, 167, 0.96) 100%);
  border: 1px solid rgba(255, 180, 235, 0.85);
  box-shadow:
    0 0 12px rgba(255, 110, 215, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), filter 0.38s ease, background 0.42s ease, border-color 0.42s ease, box-shadow 0.42s ease;
}

.download-page .download-demo-btn:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.07);
  background: linear-gradient(100deg, rgba(38, 120, 78, 0.96) 0%, rgba(46, 195, 126, 0.96) 55%, rgba(114, 255, 190, 0.96) 100%);
  border-color: rgba(170, 255, 210, 0.95);
  box-shadow:
    0 0 10px rgba(120, 255, 170, 0.8),
    0 0 24px rgba(70, 255, 145, 0.55),
    inset 0 0 0 1px rgba(210, 255, 230, 0.35);
}

.download-page .download-pv-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 225, 0.65);
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 12px rgba(255, 110, 215, 0.25), inset 0 0 0 1px rgba(255,255,255,0.08);
  padding: 16px;
  display: block;
}

.download-page .download-pv-thumb.thumb-s01 { background-image: url("../image/download/pv_cg_s01.jpg"); }
.download-page .download-pv-thumb.thumb-s02 { background-image: url("../image/download/pv_cg_s02.jpg"); }
.download-page .download-pv-thumb.thumb-s03 { background-image: url("../image/download/pv_cg_s03.jpg"); }
.download-page .download-pv-thumb.thumb-s04 { background-image: url("../image/download/pv_cg_s04.jpg"); }

.download-page .download-pv-content { display: block; min-height: auto; }
.download-page .download-pv-desc { margin: 14px 0 16px; }
.download-page .download-pv-content .download-demo-btn { display: flex; width: fit-content; margin: 0 auto; }

/* --- Final PV visibility fix (canonical) --- */
.download-page .download-pv-main {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: clamp(210px, 28vw, 360px);
  border-radius: 10px;
  border: 1px solid rgba(255, 160, 235, 0.55);
  background-image: url("../image/download/pv_cg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-color: transparent;
}

.download-page .download-pv-thumbs {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.download-page .download-pv-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  min-height: clamp(64px, 7.2vw, 102px);
  border-radius: 8px;
  border: 1px solid rgba(255, 160, 235, 0.5);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
}

.download-page .download-pv-title {
  margin: 0 0 18px;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(24px, 2.1vw, 36px);
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 145, 230, 0.7),
    0 0 12px rgba(255, 95, 210, 0.5);
}

.download-page .download-demo-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  position: relative;
  padding: 34px 18px 86px;
}

.download-page .download-demo-section::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 30px;
  height: 1px;
  background:
    linear-gradient(
      to right,
      rgba(255, 150, 235, 0) 0%,
      rgba(255, 150, 235, 0.82) 26%,
      rgba(255, 150, 235, 0.82) 100%
    ) left center / calc(50% - 160px) 1px no-repeat,
    linear-gradient(
      to left,
      rgba(255, 150, 235, 0) 0%,
      rgba(255, 150, 235, 0.82) 26%,
      rgba(255, 150, 235, 0.82) 100%
    ) right center / calc(50% - 160px) 1px no-repeat;
  box-shadow: 0 0 10px rgba(255, 95, 210, 0.28);
}

@media (max-width: 767px) {
  .download-page .download-demo-section {
    padding: 20px 12px 72px;
  }

  

  .download-page .download-demo-section::after {
    left: 12px;
    right: 12px;
    bottom: 22px;
    background:
      linear-gradient(
        to right,
        rgba(255, 150, 235, 0) 0%,
        rgba(255, 150, 235, 0.82) 26%,
        rgba(255, 150, 235, 0.82) 100%
      ) left center / calc(50% - 110px) 1px no-repeat,
      linear-gradient(
        to left,
        rgba(255, 150, 235, 0) 0%,
        rgba(255, 150, 235, 0.82) 26%,
        rgba(255, 150, 235, 0.82) 100%
      ) right center / calc(50% - 110px) 1px no-repeat;
  }
}

/* shared neon divider style (also under promotion movie section) */
.download-page .download-pv-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  position: relative;
  padding: 8px 18px 86px;
}

.download-page .download-pv-section::before {
  content: "SYMPHONIC KNIGHTS 2";
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 1.05vw, 15px);
  letter-spacing: 0.18em;
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255, 145, 230, 0.45),
    0 0 12px rgba(255, 95, 210, 0.32);
  z-index: 1;
}

.download-page .download-pv-section::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 30px;
  height: 1px;
  background:
    linear-gradient(
      to right,
      rgba(255, 150, 235, 0) 0%,
      rgba(255, 150, 235, 0.82) 26%,
      rgba(255, 150, 235, 0.82) 100%
    ) left center / calc(50% - 160px) 1px no-repeat,
    linear-gradient(
      to left,
      rgba(255, 150, 235, 0) 0%,
      rgba(255, 150, 235, 0.82) 26%,
      rgba(255, 150, 235, 0.82) 100%
    ) right center / calc(50% - 160px) 1px no-repeat;
  box-shadow: 0 0 10px rgba(255, 95, 210, 0.28);
}

@media (max-width: 767px) {
  .download-page .download-pv-section {
    padding: 6px 12px 72px;
  }

  .download-page .download-pv-section::before {
    bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .download-page .download-pv-section::after {
    left: 12px;
    right: 12px;
    bottom: 22px;
    background:
      linear-gradient(
        to right,
        rgba(255, 150, 235, 0) 0%,
        rgba(255, 150, 235, 0.82) 26%,
        rgba(255, 150, 235, 0.82) 100%
      ) left center / calc(50% - 110px) 1px no-repeat,
      linear-gradient(
        to left,
        rgba(255, 150, 235, 0) 0%,
        rgba(255, 150, 235, 0.82) 26%,
        rgba(255, 150, 235, 0.82) 100%
      ) right center / calc(50% - 110px) 1px no-repeat;
  }
}

.sp-break { display: none; }

@media (max-width: 767px) {
  .sp-break { display: block; }
}

.download-page .download-song-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 8px 18px 86px;
  position: relative;
}

.download-page .download-song-title {
  margin: 0 0 18px;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(24px, 2.1vw, 36px);
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 145, 230, 0.7),
    0 0 12px rgba(255, 95, 210, 0.5);
}

.download-page .download-song-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 225, 0.65);
  background: rgba(0, 0, 0, 0.62);
  box-shadow:
    0 0 12px rgba(255, 110, 215, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.download-page .download-song-movie-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 160, 235, 0.55);
  aspect-ratio: 16 / 9;
  background: #000;
}

.download-page .download-song-movie-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* same divider style under song section */
.download-page .download-song-section::before {
  content: "SYMPHONIC KNIGHTS 2";
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 1.05vw, 15px);
  letter-spacing: 0.18em;
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(255, 145, 230, 0.45),
    0 0 12px rgba(255, 95, 210, 0.32);
  z-index: 1;
}

.download-page .download-song-section::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 30px;
  height: 1px;
  background:
    linear-gradient(
      to right,
      rgba(255, 150, 235, 0) 0%,
      rgba(255, 150, 235, 0.82) 26%,
      rgba(255, 150, 235, 0.82) 100%
    ) left center / calc(50% - 160px) 1px no-repeat,
    linear-gradient(
      to left,
      rgba(255, 150, 235, 0) 0%,
      rgba(255, 150, 235, 0.82) 26%,
      rgba(255, 150, 235, 0.82) 100%
    ) right center / calc(50% - 160px) 1px no-repeat;
  box-shadow: 0 0 10px rgba(255, 95, 210, 0.28);
}

@media (max-width: 767px) {
  .download-page .download-song-section {
    padding: 6px 12px 72px;
  }

  .download-page .download-song-section::before {
    bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .download-page .download-song-section::after {
    left: 12px;
    right: 12px;
    bottom: 22px;
    background:
      linear-gradient(
        to right,
        rgba(255, 150, 235, 0) 0%,
        rgba(255, 150, 235, 0.82) 26%,
        rgba(255, 150, 235, 0.82) 100%
      ) left center / calc(50% - 110px) 1px no-repeat,
      linear-gradient(
        to left,
        rgba(255, 150, 235, 0) 0%,
        rgba(255, 150, 235, 0.82) 26%,
        rgba(255, 150, 235, 0.82) 100%
      ) right center / calc(50% - 110px) 1px no-repeat;
  }

  .download-page .download-song-card {
    padding: 12px;
  }

}

.download-page .download-song-action {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 16px;
}

.download-page .download-song-credit {
  grid-column: 1;
  justify-self: end;
  margin: 0;
  text-align: right;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.6;
  text-shadow:
    0 0 4px rgba(120, 210, 255, 0.45),
    0 0 10px rgba(70, 170, 255, 0.25);
}

.download-page .download-song-action .download-demo-btn {
  grid-column: 2;
  margin: 0;
}

.download-page .download-lyric-btn {
  grid-column: 3;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 180, 235, 0.8);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  text-decoration: none;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow:
    0 0 8px rgba(255, 120, 220, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.download-page .download-lyric-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(170, 255, 210, 0.95);
  box-shadow:
    0 0 10px rgba(120, 255, 170, 0.55),
    inset 0 0 0 1px rgba(220, 255, 235, 0.24);
}

@media (max-width: 767px) {
  .download-page .download-song-action {
    width: 100% !important;
    grid-template-columns: 1fr 1fr !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: 12px !important;
    row-gap: 10px !important;
  }

  .download-page .download-song-credit {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    text-align: right !important;
  }

  .download-page .download-lyric-btn {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    width: auto !important;
  }

  .download-page .download-song-action .download-demo-btn {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 420px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
  }
}

.lyric-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.lyric-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.lyric-lightbox__panel {
  width: min(92vw, 980px);
  max-height: 86vh;
  overflow: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 235, 0.7);
  box-shadow: 0 0 24px rgba(255, 95, 210, 0.35);
  padding: 18px 18px 20px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.96);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url("../image/top/mv.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.lyric-lightbox__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lyric-lightbox__title {
  margin: 2px 36px 18px 0;
  color: #2a1538;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lyric-lightbox__title-sub {
  display: block;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #201428;
  text-shadow:
    0 0 3px rgba(120, 210, 255, 0.75),
    0 0 8px rgba(70, 170, 255, 0.45),
    0 0 14px rgba(40, 140, 255, 0.28);
}

.lyric-lightbox__title-main {
  display: block;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #201428;
  text-shadow:
    0 0 3px rgba(120, 210, 255, 0.75),
    0 0 8px rgba(70, 170, 255, 0.45),
    0 0 14px rgba(40, 140, 255, 0.28);
}

.lyric-lightbox__body p {
  margin: 0 0 24px;
  color: #201428;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.8;
  font-weight: 700;
}

.lyric-lightbox__lyrics-block p {
  text-shadow:
    0 0 3px rgba(120, 210, 255, 0.75),
    0 0 8px rgba(70, 170, 255, 0.45),
    0 0 14px rgba(40, 140, 255, 0.28);
}

.lyric-lightbox__body p:last-child {
  margin-bottom: 0;
}

.lyric-lightbox__credit-block {
  margin-bottom: 24px;
}

.lyric-lightbox__credit {
  margin: 0 !important;
  font-size: clamp(13px, 0.95vw, 16px) !important;
  line-height: 1.3 !important;
  color: #201428 !important;
  text-shadow:
    0 0 3px rgba(130, 255, 180, 0.95),
    0 0 8px rgba(70, 255, 145, 0.72),
    0 0 14px rgba(30, 255, 130, 0.42);
}

.lyric-lightbox__credit + .lyric-lightbox__credit {
  margin-top: 1px !important;
}

.lyric-lightbox__credit:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .lyric-lightbox__title {
    gap: 2px;
  }

  .lyric-lightbox__body p {
    margin-bottom: 20px;
  }

  .lyric-lightbox__credit-block {
    margin-bottom: 20px;
  }

  .lyric-lightbox__credit {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .download-page .download-demo-title,
  .download-page .download-song-title,
  .download-page .download-pv-title {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
  }
}

/* mobile trial section force-fix: image -> text -> button */
@media (max-width: 767px) {
  .download-page .download-demo-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 12px 12px 8px !important;
  }

  .download-page .download-demo-image-wrap {
    width: 100% !important;
    min-height: clamp(200px, 52vw, 320px) !important;
    order: 1;
  }

  .download-page .download-demo-content {
    width: 100% !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    order: 2;
  }

  .download-page .download-demo-desc {
    order: 1;
  }

  .download-page .download-demo-content .download-demo-btn {
    order: 2;
    width: 100% !important;
    margin: 0 !important;
    align-self: stretch !important;
  }
}

/* mobile download button alignment/width unify */
@media (max-width: 767px) {
  .download-page .download-demo-content .download-demo-btn {
    width: min(100%, 420px) !important;
    margin: 0 auto !important;
    align-self: center !important;
  }

  .download-page .download-song-action .download-demo-btn,
  .download-page .download-pv-content .download-demo-btn {
    display: flex !important;
    width: min(100%, 420px) !important;
    margin: 0 auto !important;
    align-self: center !important;
    justify-content: center !important;
  }
}

/* ===== download: free-talk (clean canonical block) ===== */
.download-page .download-talk-section {
  width: min(100%, 1280px);
  margin: 0 auto;
  margin-top: 0;
  padding: 8px 18px 54px;
}

.download-page .download-talk-title {
  margin: 0 0 clamp(16px, 2vw, 26px);
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(24px, 2.1vw, 36px);
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 5px rgba(255, 145, 230, 0.7),
    0 0 12px rgba(255, 95, 210, 0.5);
}

.download-page .download-talk-card {
  position: relative;
  min-height: clamp(180px, 24vw, 280px);
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 225, 0.65);
  background: rgba(0, 0, 0, 0.62);
  box-shadow:
    0 0 12px rgba(255, 110, 215, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 16px;
}

.download-page .download-talk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

.download-page .download-talk-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.download-page .download-talk-label {
  position: static;
  margin: 0 0 6px;
  max-width: 100%;
  text-align: left;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(22px, 1.9vw, 34px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 4px rgba(255, 145, 230, 0.45), 0 0 9px rgba(255, 95, 210, 0.28);
}

.download-page .download-talk-label .talk-role {
  display: block;
  font-size: clamp(14px, 0.98vw, 17px);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: none;
}

.download-page .download-talk-label .talk-name {
  display: block;
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: clamp(22px, 1.9vw, 34px);
  line-height: 1;
  color: #d9ffe8;
  text-shadow: 0 0 3px rgba(120, 255, 170, 0.95), 0 0 8px rgba(70, 255, 145, 0.78), 0 0 15px rgba(35, 235, 120, 0.58);
}

.download-page .download-talk-label .talk-honorific {
  font-size: 0.62em;
  color: #fff;
  text-shadow: none;
}

.download-page .download-talk-cell {
  position: relative;
  min-height: clamp(90px, 9vw, 140px);
  border-radius: 10px;
  border: 1px solid rgba(255, 160, 235, 0.55);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 8px rgba(255, 120, 220, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1200px) {
  .download-page .download-talk-grid { row-gap: 14px; }
}

@media (max-width: 767px) {
  .download-page .download-talk-section {
    padding: 6px 12px 34px;
  }

  .download-page .download-talk-title {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .download-page .download-talk-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .download-page .download-talk-cell {
    min-height: clamp(72px, 18vw, 110px);
  }
}

/* canonical: trial section divider label */
.download-page .download-demo-section::before {
  content: "SYMPHONIC KNIGHTS 2";
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 0 10px;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(12px, 1.05vw, 15px);
  letter-spacing: 0.18em;
  color: #fff;
  background: transparent;
  text-shadow:
    0 0 6px rgba(255, 145, 230, 0.45),
    0 0 12px rgba(255, 95, 210, 0.32);
  z-index: 1;
}

@media (max-width: 767px) {
  .download-page .download-demo-section::before {
    bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.14em;
    padding: 0 10px;
  }

  /* mobile final fixes */
  .download-page .download-song-action .download-demo-btn {
    width: min(100%, 520px) !important;
  }

  .download-page .download-pv-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
}


.download-page .download-talk-actions {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: clamp(110px, 34%, 220px);
}

.download-page .download-talk-btn {
  max-width: 100%;
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 10px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(100deg, rgba(104, 46, 146, 0.96) 0%, rgba(218, 83, 167, 0.96) 100%);
  border: 1px solid rgba(255, 180, 235, 0.85);
  box-shadow:
    0 0 10px rgba(255, 110, 215, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.28s ease, filter 0.28s ease, box-shadow 0.28s ease;
}

.download-page .download-talk-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.07);
  background: linear-gradient(100deg, rgba(38, 120, 78, 0.96) 0%, rgba(46, 195, 126, 0.96) 55%, rgba(114, 255, 190, 0.96) 100%);
  border-color: rgba(170, 255, 210, 0.95);
  box-shadow:
    0 0 10px rgba(120, 255, 170, 0.7),
    0 0 20px rgba(70, 255, 145, 0.45),
    inset 0 0 0 1px rgba(210, 255, 230, 0.28);
}

.download-page .download-talk-btn__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-image: url("../image/download/mic.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.download-page .download-talk-btn__text {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
}

@media (max-width: 767px) {
  .download-page .download-talk-actions {
    width: clamp(210px, 60%, 300px);
    right: 8px;
    gap: 8px;
    flex-direction: row;
  }

  .download-page .download-talk-btn {
    min-height: 60px;
    border-radius: 10px;
    font-size: 11px;
    gap: 6px;
    padding-left: 8px;
    padding-right: 10px;
  }

  .download-page .download-talk-btn__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .download-page .download-talk-actions {
    width: min(34%, 170px);
    right: 8px;
    top: 50%;
    gap: 10px;
  }

  .download-page .download-talk-btn {
    min-height: 34px;
    font-size: 11px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .download-page .download-talk-btn__text {
    white-space: nowrap;
    letter-spacing: 0.01em;
  }
}

@media (min-width: 1025px) and (max-width: 1240px) {
  .download-page .download-talk-actions {
    width: clamp(104px, 30%, 168px);
    right: 8px;
    top: 50%;
    gap: 10px;
  }

  .download-page .download-talk-btn {
    min-height: 36px;
    font-size: 11px;
    padding: 0 10px;
  }
}


@media (max-width: 767px) {
  .download-page .download-talk-label .talk-role {
    font-size: 11px;
  }
}


.download-page .download-talk-item:nth-child(1) .download-talk-cell {
  background-image: url("../image/download/freetalk_bg_01.jpg");
}

.download-page .download-talk-item:nth-child(2) .download-talk-cell {
  background-image: url("../image/download/freetalk_bg_02.jpg");
}

.download-page .download-talk-item:nth-child(3) .download-talk-cell {
  background-image: url("../image/download/freetalk_bg_03.jpg");
}

.download-page .download-talk-item:nth-child(4) .download-talk-cell {
  background-image: url("../image/download/freetalk_bg_04.jpg");
}



@media (min-width: 768px) {
  .download-page .download-demo-card {
    align-items: stretch;
  }

  .download-page .download-demo-content {
    height: 100%;
    min-height: 0;
  }
}


/* release lock (for staged publishing) */
.download-page .release-lock[data-release="off"] {
  position: relative;
}

.download-page .release-lock[data-release="off"] > *:not(h2):not(.download-demo-title):not(.download-pv-title):not(.download-talk-title):not(.release-locked-message) {
  display: none !important;
}

.download-page .release-locked-message {
  margin: 6px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 170, 235, 0.6);
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.95);
  font-family: "Oxanium", "M PLUS 1p", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.04em;
  text-shadow: 0 0 6px rgba(255, 145, 230, 0.35);
}

@media (max-width: 767px) {
  .download-page .release-locked-message {
    text-align: center;
    font-size: 13px;
    padding: 12px;
  }
}


.download-page .download-talk-btn.is-locked {
  opacity: 0.55;
  filter: grayscale(0.25);
}
