/* Base tokens */
:root {
  --bg: #0B0B0F; /* background */
  --panel: #0F172A; /* panels */
  --text: #F1F5F9; /* text */
  --muted: #94A3B8;
  --p: #FF2EA6; /* primary */
  --s: #22D3EE; /* secondary */
  --t: #A78BFA; /* tertiary */
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.5);
}

@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(60% 40% at 70% -10%, rgba(255,46,166,.06), transparent 60%),
    radial-gradient(50% 30% at 0% 25%, rgba(34,211,238,.05), transparent 60%),
    radial-gradient(60% 40% at 45% 120%, rgba(167,139,250,.05), transparent 60%),
    var(--bg);
}

/* Subtle noise overlay for depth (data URI, allowed by CSP img-src 'self' data:) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='128' height='128' viewBox='0 0 128 128'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='table' tableValues='0 0 0 0 0 0.15 0'/></feComponentTransfer></filter><rect width='128' height='128' filter='url(%23n)'/></svg>");
}

/* Subtle scanlines overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0, rgba(255,255,255,.06) 1px, transparent 2px);
  mix-blend-mode: soft-light;
}

.container { width: min(1200px, 92%); margin-inline: auto; }
.row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.small { font-size: .85rem; color: var(--muted); }

.display {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 12px; }
.lead { color: var(--muted); font-size: 1.1rem; }

.glass {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.neon { text-shadow: 0 0 12px rgba(255,46,166,.6), 0 0 24px rgba(34,211,238,.4); }

.btn {
  background: linear-gradient(135deg, var(--p), var(--s));
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  color: #0b0b0f;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(255,46,166,.35);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.10) 0, rgba(255,255,255,.10) 1px, transparent 2px);
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.btn:hover::before { transform: translateY(0); }

/* Glitch text effect */
.glitch { position: relative; display: inline-block; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
  opacity: .8;
}
.glitch::before { color: var(--p); transform: translate(1px, 0); mix-blend-mode: screen; animation: glitch-scan 2.6s infinite linear; }
.glitch::after  { color: var(--s); transform: translate(-1px, 0); mix-blend-mode: screen; animation: glitch-scan 2.6s infinite linear reverse; }

@keyframes glitch-scan {
  0%   { clip-path: inset(0 0 85% 0); }
  10%  { clip-path: inset(0 0 10% 0); }
  20%  { clip-path: inset(0 0 40% 0); }
  30%  { clip-path: inset(0 0 5% 0); }
  40%  { clip-path: inset(0 0 60% 0); }
  50%  { clip-path: inset(0 0 30% 0); }
  60%  { clip-path: inset(0 0 75% 0); }
  70%  { clip-path: inset(0 0 15% 0); }
  80%  { clip-path: inset(0 0 50% 0); }
  90%  { clip-path: inset(0 0 25% 0); }
  100% { clip-path: inset(0 0 85% 0); }
}

/* Slight skew flicker for the base layer (very subtle) */
.glitch { animation: glitch-skew 5.5s infinite ease-in-out alternate; }
@keyframes glitch-skew {
  0%, 100% { transform: none; }
  50% { transform: skew(0.3deg); }
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(34,211,238,.35); }
.btn:disabled { opacity: .6; cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  transition: background .18s ease, border-color .18s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }

/* Icon button */
.btn-icon { display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; }
.btn-icon img { width: 18px; height: 18px; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 1px, 1px); white-space: nowrap; border: 0; }

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .75rem;
  background: var(--p);
  color: #08080a;
  font-weight: 800;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
  color: var(--text);
  cursor: pointer;
}
.chip.is-active { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.site-header::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; opacity: .7;
  background: rgba(8,8,10,.65);
}
.logo { font-family: "Space Grotesk", Inter, sans-serif; font-weight: 700; letter-spacing: .08em; text-decoration: none; color: var(--text); font-size: 1.2rem; }
.nav { display: flex; gap: 18px; }
.nav a { color: var(--text); text-decoration: none; opacity: .9; position: relative; }
.nav a:hover { opacity: 1; }
.nav a.active { opacity: 1; color: var(--p); }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--p); opacity: 0; transform: translateY(2px); transition: opacity .18s ease, transform .18s ease; }
.nav a:hover::after, .nav a.active::after { opacity: 1; transform: translateY(0); }

/* Hero */
.hero { position: relative; padding: 80px 0 40px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.hero-visual { position: relative; min-height: 320px; }
.blob, .blob-2 { display: none; }
.hero-visual, .hero-copy { position: relative; z-index: 1; }
.mv-card { position: absolute; right: 0; bottom: 0; width: min(100%, 420px); }
.mv-thumb { aspect-ratio: 16/9; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(167,139,250,.12); display: grid; place-items: center; background-size: cover; background-position: center; }
.mv-open { font-size: 28px; width: 64px; height: 64px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: var(--text); cursor: pointer; }
.mv-meta { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; }
.hero-ctas { display: flex; gap: 12px; margin-top: 18px; }

/* Sections */
.section { padding: 48px 0; background: transparent; isolation: isolate; position: relative; clear: both; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.filters, .chips { display: flex; gap: 10px; }

/* Members carousel */
.carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.carousel::-webkit-scrollbar { height: 8px; }
.carousel::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 999px; }
.member-card { padding: 16px; scroll-snap-align: start; display: grid; gap: 6px; align-content: start; }
.avatar { width: 100%; aspect-ratio: 1; border-radius: 14px; background: rgba(34,211,238,.18); box-shadow: inset 0 0 60px rgba(0,0,0,.3); }
.avatar.no-face { position: relative; overflow: hidden; }
.avatar.no-face::after {
  content: "NO-FACE";
  position: absolute; inset: auto 10px 10px auto; z-index: 1;
  font-size: .7rem; font-weight: 800; letter-spacing: .08em;
  color: #0b0b0f; padding: 6px 8px; border-radius: 999px;
  background: var(--p);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.avatar.no-face { background: var(--panel); }
.avatar.no-face .sig { position: absolute; inset: 0; display: grid; place-items: center; font-family: "Space Grotesk", Inter, sans-serif; font-weight: 800; letter-spacing: .08em; color: rgba(241,245,249,.9); opacity: .08; font-size: clamp(1.6rem, 6vw, 3rem); }
.concept-note { margin: 6px 0 14px; }
.avatar.a1 { background: rgba(255,46,166,.22); }
.avatar.a2 { background: rgba(167,139,250,.22); }
.avatar.a3 { background: rgba(34,211,238,.22); }
.avatar.a4 { background: rgba(95,155,255,.22); }
.avatar.a5 { background: rgba(255,88,194,.22); }

/* Discography */
.grid { display: grid; gap: 16px; }
.grid-albums { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.album-card { padding: 14px; display: grid; gap: 8px; align-content: start; }
.cover { border-radius: 12px; aspect-ratio: 1; background: rgba(34,211,238,.18); position: relative; overflow: hidden; background-size: cover; background-position: center; }
.cover .badge { position: absolute; top: 10px; left: 10px; }
.cover.c1 { background-image: url('../images/W0RLD_T0UR/1.S30UL_H3ARTBE4T_cover_2000.png'); background-color: rgba(255,46,166,.22); }
.cover.c2 { background: rgba(163,255,18,.22); }
.cover.c3 { background-image: url('../images/W0RLD_T0UR/0.W0RLD_T0UR_2000.png'); background-color: rgba(95,155,255,.22); }
.cover.c4 { background: rgba(255,88,194,.22); }

/* Tour */
.grid-tour { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.tour-card { padding: 16px; display: grid; gap: 8px; }

/* Tracklist */
.grid-tracks { display: none; }
.tracklist-simple { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tracklist-item { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; padding: 14px; border-radius: 12px; }
.tracklist-item .num { font-family: "Space Grotesk", Inter, sans-serif; font-weight: 700; opacity: .7; }
.tracklist-item .title { font-weight: 700; letter-spacing: .01em; }
.tracklist-item .yt img { width: 20px; height: 20px; display: block; }
.tracklist-item .yt.disabled { opacity: .4; filter: grayscale(1); cursor: default; }

/* MV Embed */
.mv-embed { padding: 8px; }
.mv-embed iframe { width: 100%; aspect-ratio: 16/9; border-radius: 12px; }

/* Fan Zone */
.grid-fan { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.polaroid {
  padding: 22px; aspect-ratio: 1; display: grid; place-items: center;
  font-weight: 700; color: #0b0b0f; background: var(--panel);
}

/* Social Section */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.tiktok-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  max-width: fit-content;
  height: 800px;
  background: transparent;
  border: none;
}

.tiktok-container h3 {
  margin-bottom: 1rem;
  color: var(--p);
  font-size: 1.2rem;
  font-weight: 600;
}

.tweets-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  max-width: fit-content;
  height: 800px;
  background: transparent;
  border: none;
}

.tweets-container h3 {
  margin-bottom: 1rem;
  color: var(--p);
  font-size: 1.2rem;
  font-weight: 600;
}

.tweets-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  flex: 1;
}

.tweet-item {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.tweet-icon {
  width: 16px;
  height: 16px;
  filter: saturate(0.7) brightness(0.9);
}

.tweet-author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.tweet-date {
  color: var(--muted);
  font-size: 0.8rem;
  margin-left: auto;
}

.tweet-content {
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.tweet-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.tweet-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cache-indicator {
  text-align: center;
  padding: 0.5rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.cache-indicator small {
  color: #ffc107;
  font-size: 0.75rem;
  opacity: 0.8;
}

.cache-indicator-small {
  color: var(--muted);
  font-size: 0.7rem;
  opacity: 0.5;
  font-weight: normal;
}

.tiktok-embed {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  width: 100%;
  height: auto;
}

.tiktok-embed iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

/* Newsletter */
.newsletter-inner { padding: 18px; display: grid; gap: 10px; }
.newsletter form input[type="email"] {
  flex: 1; min-width: 220px; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.02); color: var(--text);
}

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 11, 15, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 1000;
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.socials { display: flex; gap: 12px; }
.socials a { 
  color: var(--text); 
  text-decoration: none; 
  opacity: .85; 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.socials img {
  width: 20px;
  height: 20px;
  display: block;
  filter: saturate(0.7) brightness(0.9);
}

/* Player */
.player {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; display: grid; align-items: center; gap: 12px;
  grid-template-columns: auto 1fr 1fr auto; padding: 12px 14px;
}
.is-hidden { display: none !important; }
.player-btn { width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: var(--text); cursor: pointer; }
.track-meta { display: grid; gap: 4px; }
.track-meta .title { font-weight: 700; }
.track-meta .time { color: var(--muted); font-size: .85rem; }
.progress-wrap { height: 6px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.progress { height: 100%; width: 0%; background: var(--p); filter: blur(.2px); }
.volume { width: 120px; accent-color: var(--p); }

/* Utilities */
.card { overflow: hidden; }
.hover-elevate { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.hover-elevate:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.5); }

/* Focus visibility */
:focus-visible { outline: 2px solid var(--p); outline-offset: 2px; }

/* Section separator */
hr.section-sep {
  border: 0; height: 1px; width: 100%; margin: 0; opacity: .9;
  background: rgba(255,255,255,.14);
  clear: both;
  position: relative;
  z-index: 2;
}

/* Modal */
.modal { position: fixed; inset: 0; z-index: 80; display: none; }
.modal[aria-hidden="false"] { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px); }
.modal-dialog { position: relative; width: min(720px, 92%); margin: 8vh auto; padding: 16px; }
.modal-header { padding: 6px 6px 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.modal-body { display: grid; gap: 10px; padding-top: 10px; color: var(--text); }
.modal-close { position: absolute; top: 8px; right: 8px; width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: var(--text); cursor: pointer; }

/* World Tour Page Specific Styles */
.album-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background-image: url('../images/W0RLD_T0UR/0.W0RLD_T0UR_2000.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.album-info {
  display: grid;
  gap: 8px;
}

.album-info h2 {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0;
}

.album-title {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.album-meta {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.album-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.concept-card {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.concept-card h3 {
  font-size: 1.3rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tracklist-detailed {
  display: grid;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.track-group h3 {
  font-size: 1.4rem;
  margin: 0 0 16px;
  color: var(--p);
}

.tracklist-item .track-info {
  display: grid;
  gap: 4px;
}

.tracklist-item .country {
  font-size: 0.85rem;
  color: var(--muted);
}

.track-released {
  border: 1px solid var(--p);
  background: rgba(255,46,166,.05);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
  float: none;
}

.wt-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
  float: none;
}

.mv-card {
  padding: 16px;
  display: grid;
  gap: 12px;
  max-width: 400px;
}

.wt-mv-card {
  padding: 16px;
  display: grid;
  gap: 12px;
  max-width: 400px;
}

.wt-mv-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

.wt-mv-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.mv-card h3 {
  margin: 0;
  font-size: 1.2rem;
}



.mv-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

#mv {
  position: relative;
  z-index: 1;
  clear: both;
  display: block;
  width: 100%;
  float: none;
}

#world-tour-mv {
  position: relative;
  z-index: 1;
  clear: both;
  display: block;
  width: 100%;
  float: none;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.credit-card {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.credit-card h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--s);
}

.credit-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* ==========================
   RESPONSIVE DESIGN SYSTEM
   ========================== */

/* Breakpoints:
   - Desktop: 1200px+
   - Tablet: 768px - 1199px  
   - Mobile: 320px - 767px
*/

/* ==========================
   TABLET (768px - 1199px)
   ========================== */
@media (max-width: 1199px) {
  .container { width: 95%; }
  
  /* Header */
  .header-inner {
    padding: 1rem 0;
  }
  
  .nav {
    gap: 1.5rem;
  }
  
  .nav a {
    font-size: 0.9rem;
  }
  
  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-copy {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
    justify-self: center;
  }
  
  .display {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }
  
  /* Grids */
  .grid-albums {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .grid-fan {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .concept-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  /* Members page */
  .members-grid {
    gap: 2rem;
  }
  
  .member-profile {
    grid-template-columns: 250px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  /* World Tour page */
.tracklist-detailed {
  gap: 1.5rem;
}

.tracklist-simple {
  gap: 0.75rem;
}

.wt-mv-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

/* Album hero styles */
.album-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
  max-width: 500px;
}

.album-cover {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  background-image: url('../images/W0RLD_T0UR/0.W0RLD_T0UR_2000.png');
  background-size: cover;
  background-position: center;
  background-color: rgba(95,155,255,.22);
}

.album-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.album-info h2 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--text);
}

.album-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--p);
  margin: 0;
}

.album-meta, .album-desc {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

/* Track groups */
.track-group h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* Credits grid */
.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.credit-card {
  padding: 1.5rem;
}

.credit-card h4 {
  color: var(--s);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.credit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credit-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.credit-list li:last-child {
  border-bottom: none;
}
  
  /* Buttons */
  .row {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* ==========================
   MOBILE (320px - 767px)
   ========================== */
@media (max-width: 767px) {
  .container { width: 92%; }
  
  /* Header */
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .nav a {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
  }
  
  /* Hero */
  .hero {
    padding: 2rem 0;
  }
  
  .hero-inner {
    gap: 1.5rem;
  }
  
  .display {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  /* Sections */
  .section {
    padding: 2rem 0;
  }
  
  .section-head {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }
  
  /* Grids */
  .grid-albums {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .grid-fan {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Album cards */
  .album-card {
    padding: 1rem;
  }
  
  .album-card h3 {
    font-size: 1.1rem;
  }
  
  .album-card .row {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Members page */
  .members-grid {
    gap: 1.5rem;
  }
  
  .member-profile {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem;
  }
  
  .member-visual {
    order: -1;
  }
  
  .member-image {
    max-width: 200px;
  }
  
  .member-content h3 {
    font-size: 1.5rem;
  }
  
  .member-role {
    font-size: 1rem;
  }
  
  .member-details {
    gap: 1rem;
  }
  
  /* World Tour page */
  .tracklist-detailed {
    gap: 1rem;
  }
  
  .tracklist-simple {
    gap: 0.5rem;
  }
  
  .tracklist-item {
    padding: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .track-info {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .wt-mv-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .wt-mv-card {
    padding: 1rem;
  }
  
  /* Buttons */
  .row {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .btn-ghost {
    width: 100%;
    max-width: 250px;
  }
  
  /* Filters */
  .filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .chip {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .socials {
    gap: 1rem;
  }
  
  /* Audio player */
  .player {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem;
    padding: 0.75rem;
  }
  
  .progress-wrap {
    grid-column: 1 / -1;
  }
  
  .volume {
    display: none;
  }
  
  .player-controls {
    gap: 0.5rem;
  }
  
  .player-info {
    font-size: 0.8rem;
  }
}

/* ==========================
   SMALL MOBILE (320px - 480px)
   ========================== */
@media (max-width: 480px) {
  .container { width: 95%; }
  
  /* Header */
  .logo {
    font-size: 1.5rem;
  }
  
  .nav {
    gap: 0.5rem;
  }
  
  .nav a {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  
  /* Hero */
  .display {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }
  
  .lead {
    font-size: 0.9rem;
  }
  
  /* Sections */
  .section {
    padding: 1.5rem 0;
  }
  
  .h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }
  
  /* Album cards */
  .album-card {
    padding: 0.75rem;
  }
  
  .album-card h3 {
    font-size: 1rem;
  }
  
  /* Members */
  .member-image {
    max-width: 150px;
  }
  
  .member-content h3 {
    font-size: 1.3rem;
  }
  
  /* Tracklist */
  .tracklist-item {
    padding: 0.5rem;
  }
  
  .track-info .title {
    font-size: 0.9rem;
  }
  
  .track-info .country {
    font-size: 0.8rem;
  }
  
  /* Buttons */
  .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  /* Footer */
  .footer-inner {
    font-size: 0.9rem;
  }
  
  .socials a {
    width: 28px;
    height: 28px;
  }
  
  .socials img {
    width: 18px;
    height: 18px;
  }
  
  /* Cookie banner responsive */
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .cookie-content p {
    font-size: 0.85rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons .btn {
    flex: 1;
    max-width: 120px;
  }
  
  /* Social responsive */
  .social-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tiktok-container {
    max-width: 180px;
    height: 500px;
  }
  
  .tweets-container {
    padding: 1rem;
    height: 500px;
  }
  
  .tweet-item {
    padding: 0.75rem;
  }
  
  .tweet-content {
    font-size: 0.85rem;
  }
  
  .tweet-stats {
    gap: 0.75rem;
    font-size: 0.75rem;
  }
}
  
  .tiktok-embed {
    max-width: 100%;
    min-width: 280px;
  }

/* ==========================
   LANDSCAPE MOBILE (orientation: landscape)
   ========================== */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    padding: 1rem 0;
  }
  
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
  }
  
  .hero-copy {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
  }
  
  .display {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-ctas {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .section {
    padding: 1rem 0;
  }
}

/* ==========================
   HIGH DPI DISPLAYS
   ========================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .member-image,
  .album-card .cover,
  .mv-thumb {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* ==========================
   PAGE-SPECIFIC RESPONSIVE
   ========================== */

/* World Tour page specific responsive */
@media (max-width: 1199px) {
  .album-hero {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .album-info h2 {
    font-size: 1.5rem;
  }
  
  .album-title {
    font-size: 1.2rem;
  }
  
  .album-meta, .album-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .album-hero {
    max-width: 300px;
  }
  
  .album-info h2 {
    font-size: 1.3rem;
  }
  
  .album-title {
    font-size: 1.1rem;
  }
  
  .album-meta, .album-desc {
    font-size: 0.85rem;
  }
  
  .track-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .tracklist-item {
    padding: 0.75rem;
  }
  
  .tracklist-item .num {
    font-size: 0.9rem;
    min-width: 30px;
  }
  
  .track-info .title {
    font-size: 0.95rem;
  }
  
  .track-info .country {
    font-size: 0.8rem;
  }
  
  .wt-mv-card {
    padding: 0.75rem;
  }
  
  .wt-mv-embed iframe {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .album-hero {
    max-width: 250px;
  }
  
  .album-info h2 {
    font-size: 1.1rem;
  }
  
  .album-title {
    font-size: 1rem;
  }
  
  .album-meta, .album-desc {
    font-size: 0.8rem;
  }
  
  .tracklist-item {
    padding: 0.5rem;
  }
  
  .tracklist-item .num {
    font-size: 0.8rem;
    min-width: 25px;
  }
  
  .track-info .title {
    font-size: 0.85rem;
  }
  
  .track-info .country {
    font-size: 0.75rem;
  }
  
  .wt-mv-card {
    padding: 0.5rem;
  }
}

/* Members page specific responsive */
@media (max-width: 1199px) {
  .member-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .detail-section h4 {
    font-size: 0.9rem;
  }
  
  .detail-section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .member-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .detail-section h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .detail-section p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .concept-card h3 {
    font-size: 1.1rem;
  }
  
  .concept-card p {
    font-size: 0.9rem;
  }
  
  /* Messages responsive */
  .message-card {
    padding: 1.5rem;
  }
  
  .message-header h3 {
    font-size: 1.25rem;
  }
  
  .message-content h4 {
    font-size: 1.1rem;
  }
  
  .message-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .member-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .detail-section h4 {
    font-size: 0.8rem;
  }
  
  .detail-section p {
    font-size: 0.85rem;
  }
  
  .concept-card h3 {
    font-size: 1rem;
  }
  
  .concept-card p {
    font-size: 0.85rem;
  }
  
  /* Messages responsive small */
  .message-card {
    padding: 1rem;
  }
  
  .message-header h3 {
    font-size: 1.1rem;
  }
  
  .message-content h4 {
    font-size: 1rem;
  }
  
  .message-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Credits responsive */
  .credits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .credit-card {
    padding: 1rem;
  }
  
  .credit-card h4 {
    font-size: 1rem;
  }
  
  .credit-list li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
}

/* ==========================
   TOUCH DEVICES
   ========================== */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .glass:hover,
  .album-card:hover,
  .member-profile:hover {
    transform: none;
  }
  
  .btn:active,
  .glass:active,
  .album-card:active,
  .member-profile:active {
    transform: scale(0.98);
  }
  
  /* Larger touch targets */
  .btn {
    min-height: 44px;
    padding: 12px 20px;
  }
  
  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .chip {
    min-height: 36px;
    padding: 8px 12px;
  }
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Members page */
.members-grid {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}

.member-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.member-profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.member-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.member-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.member-profile:hover .member-image {
  transform: scale(1.02);
}

.member-badge {
  background: linear-gradient(135deg, var(--p), var(--s));
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.member-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.member-role {
  font-size: 1.125rem;
  color: var(--p);
  margin-bottom: 2rem;
  font-weight: 600;
}

.member-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-section h4 {
  color: var(--s);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-section p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Messages to V3CTORS */
.messages-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.message-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.message-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.message-header h3 {
  font-size: 1.5rem;
  margin: 0 0 0.25rem 0;
  color: var(--text);
}

.message-role {
  font-size: 0.875rem;
  color: var(--p);
  font-weight: 600;
}

.message-content {
  color: var(--text);
  line-height: 1.7;
}

.message-content h4 {
  color: var(--s);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.message-content p {
  margin: 0 0 1rem 0;
  color: var(--text);
}

.message-content p:last-child {
  margin-bottom: 0;
}

.message-content strong {
  color: var(--p);
  font-weight: 600;
}



/* ==========================
   Glitch theme accents
   ========================== */

/* Real glitch effects */
.display, .section-head .h2 {
  position: relative;
  animation: glitch-real 3s infinite;
}

.display::before,
.display::after,
.section-head .h2::before,
.section-head .h2::after {
  content: attr(data-text, "LEGAC3");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 0 0);
}

.display::before,
.section-head .h2::before {
  animation: glitch-1 2s infinite linear alternate-reverse;
  color: #ff2ea6;
  z-index: -1;
}

.display::after,
.section-head .h2::after {
  animation: glitch-2 2.5s infinite linear alternate-reverse;
  color: #22d3ee;
  z-index: -2;
}

@keyframes glitch-real {
  0%, 90%, 100% { transform: translate(0); }
  10% { transform: translate(-2px, 2px); }
  20% { transform: translate(-2px, -2px); }
  30% { transform: translate(2px, 2px); }
  40% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  70% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
  0%, 100% { clip-path: inset(40% 0 61% 0); }
  20% { clip-path: inset(92% 0 1% 0); }
  40% { clip-path: inset(43% 0 1% 0); }
  60% { clip-path: inset(25% 0 58% 0); }
  80% { clip-path: inset(54% 0 7% 0); }
}

@keyframes glitch-2 {
  0%, 100% { clip-path: inset(25% 0 58% 0); }
  20% { clip-path: inset(54% 0 7% 0); }
  40% { clip-path: inset(40% 0 61% 0); }
  60% { clip-path: inset(92% 0 1% 0); }
  80% { clip-path: inset(43% 0 1% 0); }
}

/* Nav underline with glitchy sweep */
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px; height: 2px;
  background: linear-gradient(90deg, var(--p), var(--s), var(--p));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.nav a:hover { text-shadow: 0 0 15px rgba(255,46,166,.5); animation: nav-glitch 0.3s ease; }

@keyframes nav-glitch {
  0% { transform: translateX(0); }
  25% { transform: translateX(-1px); }
  50% { transform: translateX(1px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

/* Cards: real glitch border effect */
.glass { position: relative; overflow: hidden; }
.glass::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 2px,
    rgba(255,46,166,.8) 2px 4px,
    transparent 4px 6px,
    rgba(34,211,238,.6) 6px 8px,
    transparent 8px 10px
  );
  transition: opacity .3s ease;
}
.glass:hover::before { 
  opacity: 1; 
  animation: glitch-scan 0.8s steps(4,end) infinite;
}

/* Désactiver l'effet glitch pour les blocs sociaux */
.tiktok-container.glass:hover::before,
.tweets-container.glass:hover::before {
  opacity: 0;
  animation: none;
}

/* Désactiver l'effet glitch pour la vidéo YouTube */
.mv-embed.glass:hover::before {
  opacity: 0;
  animation: none;
}

/* Désactiver l'effet glitch pour toutes les cartes */
.album-card.glass:hover::before,
.polaroid.glass:hover::before,
.card.glass:hover::before {
  opacity: 0;
  animation: none;
}

/* Désactiver l'effet glitch pour TOUTES les pages */
.concept-card.glass:hover::before,
.credit-card.glass:hover::before,
.member-profile.glass:hover::before,
.wt-mv-card.glass:hover::before,
.wt-mv-embed.glass:hover::before,
.mv-card.glass:hover::before,
.mv-embed.glass:hover::before {
  opacity: 0;
  animation: none;
}

@keyframes glitch-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes neon-pan {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Buttons: real glitch effect */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 1px,
    rgba(255,255,255,.1) 1px 2px,
    transparent 2px 3px
  );
  opacity: 0;
  transition: opacity .2s ease;
}
.btn:hover::before { opacity: 1; }
.btn:hover { 
  animation: btn-glitch 0.3s steps(3,end) infinite;
  box-shadow: 0 14px 40px rgba(34,211,238,.5);
}

@keyframes btn-glitch {
  0% { transform: translateY(-2px) translateX(0); }
  25% { transform: translateY(-2px) translateX(-1px); }
  50% { transform: translateY(-2px) translateX(1px); }
  75% { transform: translateY(-2px) translateX(-1px); }
  100% { transform: translateY(-2px) translateX(0); }
}

/* Section separator: subtle shimmer */
hr.section-sep {
  position: relative;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
}
hr.section-sep::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--p), var(--s), var(--p), transparent);
  opacity: .25;
  animation: sep-glide 2.5s linear infinite;
}
@keyframes sep-glide {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

/* MV embeds: glitch border accent */
.mv-embed, .wt-mv-embed { position: relative; }
.mv-embed::before, .wt-mv-embed::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 12px;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,46,166,.5) 0 2px, rgba(34,211,238,.4) 2px 4px, transparent 4px 6px);
  opacity: 0;
}
.mv-embed:hover::before, .wt-mv-embed:hover::before { opacity: 0; animation: none; }
@keyframes glitch-run {
  0% { transform: translateX(0); }
  100% { transform: translateX(8px); }
}

/* Chips: active flicker */
.chip.is-active {
  box-shadow: 0 0 0 2px rgba(255,46,166,.6), 0 0 30px rgba(34,211,238,.4);
  animation: chip-flicker 2s linear infinite;
}
@keyframes chip-flicker {
  0%, 100% { filter: brightness(1) saturate(1); }
  25% { filter: brightness(1.15) saturate(1.1); }
  50% { filter: brightness(1.3) saturate(1.3); }
  75% { filter: brightness(1.15) saturate(1.1); }
}

/* Album/single covers: clean hover effects */
.album-card .cover, .wt-mv-card, .mv-card {
  transition: box-shadow .25s ease, transform .25s ease;
}
.album-card:hover .cover { box-shadow: 0 8px 25px rgba(0,0,0,.3); transform: translateY(-2px) scale(1.01); }
.mv-card:hover, .wt-mv-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,.3); transform: translateY(-2px) scale(1.01); }

/* Fan polaroids: clean hover effects */
.grid-fan .polaroid { transition: transform .25s ease, box-shadow .25s ease; }
.grid-fan .polaroid:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.3); }

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  .display, .section-head .h2, .glass:hover::after, .btn:hover, .mv-embed:hover::before, .wt-mv-embed:hover::before, .chip.is-active, .album-card:hover .cover, .mv-card:hover, .wt-mv-card:hover, .grid-fan .polaroid:hover { animation: none !important; }
}


