@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

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

:root {
  --bg: #000;
  --text: #fff;
  --border: #333;
  --accent: #fff;
  --font-head: 'Anton', sans-serif;
  --font-body: 'Poppins', 'Noto Sans JP', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  backdrop-filter: blur(8px) saturate(0%);
  -webkit-backdrop-filter: blur(8px) saturate(0%);
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.header-logo img { height: 44px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav a,
.header-nav button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  transition: opacity .2s;
}

.header-nav a:hover,
.header-nav button:hover { opacity: .6; }

.header-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.header-contact .arrow {
  font-size: 22px;
  line-height: 1;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}

/* mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(0,0,0,0.92);
  padding: 32px 24px 40px;
  flex-direction: column;
  gap: 28px;
  z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.15em;
  text-align: right;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 520px;
  margin-top: 80px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -18%; bottom: -18%; left: 0; right: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 80px 80px;
}

.hero-title img {
  width: clamp(320px, 60vw, 900px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 44px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4em;
  border: 1px solid var(--text);
  transition: background .2s, color .2s, transform .2s;
  min-width: 140px;
}

.btn-solid {
  background: var(--text);
  color: var(--bg);
}

.btn-outline { background: transparent; color: var(--text); }

.btn:hover { transform: scale(1.06); }

/* ── CONCEPT ── */
.concept {
  padding: 120px 80px 100px;
}

.concept-tag {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6em;
  margin-bottom: 6px;
  color: var(--text);
}

.concept-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.concept-sub {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.concept-body {
  font-size: 15px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  text-align: right;
}

/* ── RELEASES ── */
.releases {
  padding: 0 80px 120px;
}

.release-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.release-item:nth-child(even) { flex-direction: row-reverse; }

.release-cover {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  transition: transform .3s ease;
}

.release-cover:hover { transform: scale(1.04); }

.release-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.release-info { flex: 1; }

.release-date {
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  opacity: .7;
}

.release-title {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.release-desc {
  font-size: 14px;
  line-height: 1.8;
  opacity: .85;
}

/* ── NEWS ── */
.news { padding: 0 80px 160px; }

.section-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6em;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.1;
}

.section-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--text);
  margin-bottom: 4px;
  transition: transform .2s;
}
.section-more:hover { transform: scale(1.2); }
.section-more .material-icons { font-size: 20px; }

.news-list { display: flex; flex-direction: column; }

.news-item {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.news-date {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  min-width: 100px;
}

.news-link {
  font-size: 15px;
  transition: opacity .2s;
}
.news-link:hover { opacity: .6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: 64px;
  letter-spacing: 0.2em;
}

/* ── PROFILE ── */
.about {
  padding: 40px 80px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.about h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6em;
  margin-bottom: 4px;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.members { padding: 0 80px 120px; }

.members-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
}

.member-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.member-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.member-photo {
  flex-shrink: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
}

.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.member-info { flex: 1; }

.member-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  margin-bottom: 4px;
  opacity: .7;
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.member-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.member-socials {
  display: flex;
  gap: 16px;
}

.member-socials a {
  font-size: 20px;
  transition: opacity .2s;
}
.member-socials a:hover { opacity: .6; }

/* ── WORKS ── */
.works-list {
  padding: 0 80px 120px;
  display: flex;
  flex-direction: column;
}

.work-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: opacity .2s;
  cursor: pointer;
}

.work-item:hover { opacity: .7; }

.work-update {
  flex-shrink: 0;
  width: 80px;
}

.work-update-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: .5;
}

.work-update-date {
  font-size: 11px;
  opacity: .7;
}

.work-title {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

.work-arrow {
  font-size: 18px;
  opacity: .5;
}

/* ── LIVE ── */
.live-section {
  padding: 0 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.live-flyer {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
  overflow: hidden;
}

.live-flyer img { width: 100%; }

.live-info {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.live-date-title {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.live-detail {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  text-align: left;
}

.live-detail-row {
  display: flex;
  gap: 12px;
}

.live-detail-label {
  flex-shrink: 0;
  font-weight: 700;
  min-width: 80px;
  font-size: 13px;
  letter-spacing: 0.05em;
  opacity: .7;
}

/* ── CONTACT ── */
.contact-section {
  padding: 0 80px 120px;
  max-width: 700px;
}

.contact-lead {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.form-label span { color: #bf2325; margin-left: 4px; }

.form-input,
.form-textarea {
  background: #222;
  border: none;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: box-shadow .2s;
  border-radius: 2px;
}

.form-input:focus,
.form-textarea:focus { box-shadow: 0 0 0 1px var(--text); }

.form-textarea { min-height: 160px; resize: vertical; }

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.privacy-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--text);
  width: 16px; height: 16px;
}

.privacy-check a { text-decoration: underline; opacity: .7; }

.form-submit {
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4em;
  height: 52px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}

.form-submit:hover { opacity: .85; }
.form-submit:disabled { opacity: .5; cursor: not-allowed; }

.form-status {
  font-size: 13px;
  letter-spacing: 0.05em;
  min-height: 20px;
}

/* ── FOOTER ── */
.site-footer {
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-logo img { height: auto; width: 240px; }

.footer-divider {
  width: 20px; height: 1px;
  background: var(--text);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  font-size: 22px;
  transition: color .3s;
}

.footer-socials a:nth-child(1):hover { color: #1d9bf0; }
.footer-socials a:nth-child(2):hover { color: #f00; }
.footer-socials a:nth-child(3):hover { color: #e1306c; }
.footer-socials a:nth-child(4):hover { color: #69c9d0; }

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: opacity .2s;
}
.footer-nav a:hover { opacity: .6; }

.footer-copy {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: .6;
}

.pagetop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: .6;
  transition: opacity .2s;
}
.pagetop:hover { opacity: 1; }
.pagetop .material-icons { font-size: 20px; }

/* ── FADE-IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 990px) {
  .concept, .releases, .news, .about, .members,
  .works-list, .live-section, .contact-section { padding-left: 40px; padding-right: 40px; }
  .news-article { padding-left: 40px; padding-right: 40px; }
  .hero-title { padding: 0 40px 60px; }
  .site-header { padding: 0 24px; }
  .release-item, .release-item:nth-child(even) { flex-direction: column; }
  .release-cover { width: 100%; height: 260px; }
  .live-date-title { font-size: 22px; }
}

@media (max-width: 690px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero — show full landscape image without cropping */
  .hero { height: 66.7vw; min-height: unset; }
  .hero-bg { top: 0; bottom: 0; background-size: contain; background-position: top center; }
  .hero-title { padding: 0 20px 20px; }
  .hero-title img { width: clamp(180px, 72vw, 600px); }
  .hero-buttons { flex-wrap: wrap; gap: 12px; }
  .btn { min-width: 120px; padding: 0 20px; }

  /* Page hero */
  .page-hero { padding-top: 120px; padding-bottom: 40px; }
  .page-hero-title { font-size: 40px; }

  /* Concept */
  .concept { padding: 72px 20px 56px; }
  .concept-title { font-size: 32px; }
  .concept-body { text-align: left; margin-left: 0; }

  /* Releases */
  .releases { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .release-cover { height: 220px; }
  .release-title { font-size: 20px; }

  /* News (index) */
  .news { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .section-title { font-size: 32px; }
  .news-item { flex-direction: column; gap: 2px; }
  .news-date { min-width: unset; font-size: 12px; }
  .news-link { font-size: 14px; }

  /* Profile */
  .about { padding-left: 20px; padding-right: 20px; padding-bottom: 56px; }
  .members { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .members-title { font-size: 32px; margin-bottom: 40px; }
  .member-list { gap: 48px; }
  .member-item { flex-direction: column; }
  .member-photo { width: 140px; height: 140px; }
  .member-desc br { display: none; }

  /* Works */
  .works-list { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .work-title { font-size: 14px; }

  /* Live */
  .live-section { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .live-date-title { font-size: 18px; }
  .live-detail { display: flex; width: 100%; }
  .live-detail-row { flex-direction: column; gap: 4px; }
  .live-detail-label { min-width: unset; }

  /* Contact */
  .contact-section { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }

  /* News article */
  .news-article { padding: 0 20px 60px; }
  .news-article + .news-article { padding-top: 60px; }
  .article-title { font-size: 18px; }

  /* Footer */
  .site-footer { padding: 60px 20px; }
  .footer-logo img { width: 180px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-socials a { width: 48px; height: 48px; font-size: 18px; }
}

/* ── GOODS SECTION ── */
.goods-section { padding: 0 80px 120px; }

.goods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.goods-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: #080808;
  color: inherit;
}

.goods-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
}

.goods-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.goods-card:hover .goods-card-img img {
  transform: scale(1.06);
}

.goods-card-body {
  padding: 20px 20px 24px;
  border-top: 1px solid #111;
}

.goods-card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5em;
  opacity: 0.4;
  margin-bottom: 6px;
}

.goods-card-name {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.goods-card-shop {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}

.goods-card:hover .goods-card-shop {
  opacity: 0.7;
  transform: translateX(0);
}

.goods-footer {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.goods-cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 36px;
  color: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.goods-cta-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

@media (max-width: 990px) {
  .goods-section { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 690px) {
  .goods-section { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .goods-grid { grid-template-columns: 1fr 1fr; }
  .goods-card-name { font-size: 15px; }
}
@media (max-width: 400px) {
  .goods-grid { grid-template-columns: 1fr; }
}

/* ── NEWS ARTICLE (news.html) ── */
.news-article {
  padding: 0 80px 80px;
  max-width: 800px;
}
.news-article + .news-article {
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.article-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: .6;
  margin-bottom: 12px;
}
.article-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}
.article-body {
  font-size: 14px;
  line-height: 1.9;
}

.article-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.article-images img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* ── WORK DETAIL (individual work pages) ── */
.work-detail { padding: 60px 80px 120px; max-width: 860px; }

.work-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: .1em;
  opacity: .6;
  margin-bottom: 48px;
  transition: opacity .2s;
}
.work-detail-back:hover { opacity: 1; }

.work-detail-meta {
  font-size: 13px;
  letter-spacing: .1em;
  opacity: .6;
  margin-bottom: 12px;
}

.work-detail-title {
  font-family: var(--font-head);
  font-size: 36px;
  letter-spacing: .05em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.work-detail-artist {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 32px;
}

.work-detail-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.work-detail-row {
  display: flex;
  gap: 24px;
  font-size: 14px;
  margin-bottom: 12px;
}

.work-detail-label {
  opacity: .5;
  width: 80px;
  flex-shrink: 0;
}

@media (max-width: 990px) {
  .work-detail { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 690px) {
  .work-detail { padding: 40px 20px 80px; }
  .work-detail-title { font-size: 26px; }
  .work-detail-row { flex-direction: column; gap: 4px; }
  .work-detail-label { width: unset; opacity: .5; }
}

@media (max-width: 400px) {
  .page-hero-title { font-size: 32px; }
  .concept-title { font-size: 26px; }
  .section-title { font-size: 26px; }
  .members-title { font-size: 26px; }
  .hero-title img { width: 82vw; }
  .work-update { width: 64px; }
  .work-update-date { font-size: 10px; }
}

/* ─────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #ff2020, #ff6a00, #ffd200, #ff2d78, #a020f0, #1e90ff);
  z-index: 100001;
  pointer-events: none;
  will-change: width;
  transition: width 0.05s linear;
}

/* ─────────────────────────────
   CUSTOM CURSOR
───────────────────────────── */
.custom-cursor,
.custom-cursor * { cursor: none !important; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.3s, width 0.2s, height 0.2s;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  opacity: 0;
  transition: width 0.25s ease, height 0.25s ease,
              border-color 0.25s ease, opacity 0.3s;
  will-change: transform;
}

/* ─────────────────────────────
   TEXT SPLIT ANIMATION
───────────────────────────── */
.char-split { overflow: hidden; }

.char-split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(90%) rotate(5deg);
}

.char-animate .char {
  animation: char-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i) * 0.05s);
}

@keyframes char-in {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* ─────────────────────────────
   GRAIN OVERLAY
───────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23g)'/></svg>");
  background-size: 200px;
  animation: grain .38s steps(1) infinite;
}

@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3px, -4px); }
  40%  { transform: translate(4px, 2px); }
  60%  { transform: translate(-2px, 5px); }
  80%  { transform: translate(3px, -2px); }
  100% { transform: translate(-1px, 3px); }
}

/* ─────────────────────────────
   MARQUEE
───────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.25em;
  opacity: 0.4;
  animation: marquee 24s linear infinite;
}

.marquee-track .msep {
  opacity: 0.35;
  font-size: 10px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────
   COUNTDOWN BAR (index)
───────────────────────────── */
.countdown-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 80px;
  border-bottom: 1px solid #1a1a1a;
  flex-wrap: wrap;
}

.countdown-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  opacity: 0.45;
  flex-shrink: 0;
  text-transform: uppercase;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-num {
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 1;
  min-width: 60px;
  text-align: center;
}

.countdown-unit-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  opacity: 0.35;
  margin-top: 6px;
}

.countdown-colon {
  font-family: var(--font-head);
  font-size: 36px;
  opacity: 0.3;
  margin-bottom: 14px;
}

.countdown-cta {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 22px;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}

.countdown-cta:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* ─────────────────────────────
   MV SECTION (index)
───────────────────────────── */
.mv-section { padding: 0 80px 120px; }

.mv-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mv-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.mv-placeholder-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 16px;
  color: inherit;
  transition: opacity .2s;
  opacity: 0.35;
}

.mv-placeholder-link:hover { opacity: 0.7; }

.mv-yt-icon { font-size: 64px; color: #f00; }

.mv-yt-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
}

/* ─────────────────────────────
   GLITCH TEXT
───────────────────────────── */
.glitch { position: relative; }

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}

.glitch::before {
  left: 3px;
  color: #ff2d55;
  clip-path: polygon(0 12%, 100% 12%, 100% 44%, 0 44%);
  animation: glitch-a 6s infinite;
}

.glitch::after {
  left: -3px;
  color: #0ef;
  clip-path: polygon(0 56%, 100% 56%, 100% 88%, 0 88%);
  animation: glitch-b 6s infinite;
}

@keyframes glitch-a {
  0%, 78%, 100%  { transform: none; opacity: 0; }
  80%, 84%, 88%  { transform: translateX(-6px) skewX(-1deg); opacity: 1; }
  82%, 86%       { transform: translateX(5px) skewX(1deg); opacity: 1; }
}

@keyframes glitch-b {
  0%, 74%, 100%  { transform: none; opacity: 0; }
  76%, 80%, 84%  { transform: translateX(6px) skewX(1deg); opacity: 1; }
  78%, 82%       { transform: translateX(-5px) skewX(-1deg); opacity: 1; }
}

/* ─────────────────────────────
   LIVE PAGE — COUNTDOWN
───────────────────────────── */
.live-countdown {
  width: 100%;
  max-width: 600px;
  padding: 40px;
  border: 1px solid #222;
  text-align: center;
}

.live-countdown-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  opacity: 0.45;
  margin-bottom: 28px;
}

.live-countdown .countdown-timer {
  justify-content: center;
}

.live-countdown .countdown-num {
  font-size: 56px;
  min-width: 76px;
}

.live-countdown .countdown-colon {
  font-size: 44px;
  margin-bottom: 18px;
}

/* ─────────────────────────────
   RESPONSIVE (new additions)
───────────────────────────── */
@media (max-width: 990px) {
  .countdown-bar { padding: 24px 40px; }
  .mv-section { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 690px) {
  .countdown-bar { padding: 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .countdown-timer { width: 100%; }
  .countdown-num { font-size: 30px; min-width: 44px; }
  .countdown-colon { font-size: 24px; }
  .mv-section { padding-left: 20px; padding-right: 20px; padding-bottom: 80px; }
  .live-countdown { padding: 24px 16px; }
  .live-countdown .countdown-num { font-size: 36px; min-width: 48px; }
  .live-countdown .countdown-colon { font-size: 28px; }
}
