@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Crimson+Pro:ital,wght@0,300;0,400;1,300;1,400&family=JetBrains+Mono:wght@300;400&display=swap");

/* ─── RESET & BASE ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #b30000;
  --red-dim: #6e0000;
  --red-glow: rgba(179, 0, 0, 0.25);
  --dark: #060606;
  --dark-2: #0f0f0f;
  --dark-3: #181818;
  --dark-4: #222222;
  --text: #eae8e0;
  --text-dim: rgba(234, 232, 224, 0.45);
  --text-muted: rgba(234, 232, 224, 0.22);
  --border: rgba(255, 255, 255, 0.06);
  --border-red: rgba(179, 0, 0, 0.35);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Crimson Pro", Georgia, serif;
  --font-mono: "JetBrains Mono", monospace;
  --banner-h: 80px;
  --nav-h: 64px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--banner-h) + var(--nav-h));
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--red-dim);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   TYBW BANNER
═══════════════════════════════════════════════════════════ */
.tybw-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--banner-h);
  z-index: 300;
  overflow: hidden;
}

.tybw-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.tybw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 6, 6, 0.85) 0%,
    rgba(6, 6, 6, 0.4) 50%,
    rgba(6, 6, 6, 0.85) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.tybw-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(179, 0, 0, 0.8);
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════════ */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: rgba(6, 6, 6, 0.97);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-red);
  z-index: 600;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 2rem;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 599;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.sidebar-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  align-self: flex-end;
  transition: border-color 0.2s;
  margin-bottom: 1.5rem;
}
.sidebar-close:hover {
  border-color: var(--red);
}
.sidebar-close img {
  width: 18px;
  filter: invert(1);
}

.sidebar-logo {
  margin-bottom: 2rem;
  padding: 0 8px;
}
.sidebar-logo img {
  width: 130px;
  filter: brightness(0.8);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-dim);
  padding: 11px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.sidebar-link img {
  width: 18px;
  filter: invert(1);
  opacity: 0.45;
  transition: opacity 0.2s;
}
.sidebar-link:hover {
  color: var(--text);
  background: rgba(179, 0, 0, 0.1);
  border-color: var(--border-red);
}
.sidebar-link:hover img {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   TOP NAV
═══════════════════════════════════════════════════════════ */
.topnav {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 200;
  transition:
    background 0.3s,
    top 0.3s;
}
.topnav.scrolled {
  background: rgba(6, 6, 6, 0.98);
}
.topnav.banner-hidden {
  top: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-logo:hover img {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  color: var(--text-dim);
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.nav-links a.nav-cta {
  color: var(--red);
  border-color: var(--border-red);
  background: rgba(179, 0, 0, 0.08);
}
.nav-links a.nav-cta:hover {
  background: rgba(179, 0, 0, 0.2);
  border-color: var(--red);
}

.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.nav-hamburger:hover {
  border-color: var(--red);
}
.nav-hamburger img {
  width: 20px;
  filter: invert(1);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 3px;
  background: var(--red);
  color: #fff;
  padding: 13px 32px;
  border-radius: 4px;
  border: 1px solid var(--red);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #d40000;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(179, 0, 0, 0.4);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 3px;
  background: transparent;
  color: var(--text-dim);
  padding: 13px 32px;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS
═══════════════════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}
.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}
.label-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 4px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: calc(var(--banner-h) + var(--nav-h));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6, 6, 6, 0.97) 30%, rgba(6, 6, 6, 0.2) 100%),
    linear-gradient(to top, rgba(6, 6, 6, 1) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw;
  max-width: 620px;
  animation: heroFadeUp 1s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* logo1.png as hero centrepiece */
.hero-logo {
  width: clamp(260px, 38vw, 480px);
  height: auto;
  filter: brightness(0.8);
  margin-bottom: 1.25rem;
  animation: heroFadeUp 1s 0.1s ease both;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  animation: heroFadeUp 1s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: heroFadeUp 1s 0.3s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 6vw;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 48px;
  height: 1px;
  background: var(--text-muted);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    width: 48px;
    opacity: 0.3;
  }
  50% {
    width: 72px;
    opacity: 0.8;
  }
}

/* ═══════════════════════════════════════════════════════════
   PLAYLIST
═══════════════════════════════════════════════════════════ */
.section-playlist {
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

/* main_02.jpg as playlist atmospheric background */
.playlist-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.playlist-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: saturate(0.4);
}
.playlist-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--dark-2) 0%,
    rgba(15, 15, 15, 0.7) 50%,
    var(--dark-2) 100%
  );
}

.playlist-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 6vw;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 16px;
  align-items: start;
}

.track-card {
  background: rgba(24, 24, 24, 0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(4px);
}
.track-card:hover {
  border-color: var(--border-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}
.track-card.playing {
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

.track-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.track-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.track-card:hover .track-thumb img {
  transform: scale(1.06);
}

.track-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.track-card:hover .track-play-overlay,
.track-card.playing .track-play-overlay {
  opacity: 1;
}

.track-play-icon {
  font-size: 1.7rem;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.track-info {
  padding: 14px 14px 16px;
}
.track-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.track-artist {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════
   MOVIES
═══════════════════════════════════════════════════════════ */
.section-movies {
  position: relative;
  background: var(--dark);
  padding: 6rem 6vw;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.movies-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 42%;
  z-index: 0;
  pointer-events: none;
}
.movies-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left;
  opacity: 0.06;
}

.movies-inner {
  position: relative;
  z-index: 1;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.movie-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-3);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.movie-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.movie-poster {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.movie-poster img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}
.movie-card:hover .movie-poster img {
  transform: scale(1.04);
}

.movie-zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.movie-card:hover .movie-zoom-hint {
  opacity: 1;
}
.movie-zoom-hint span {
  font-size: 1.6rem;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.movie-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.movie-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.movie-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}
.movie-year {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--red);
  background: rgba(179, 0, 0, 0.15);
  border: 1px solid var(--border-red);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.movie-btn {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-align: center;
  color: var(--text-dim);
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
}
.movie-btn:hover {
  color: #fff;
  background: rgba(179, 0, 0, 0.15);
  border-color: var(--border-red);
}

/* ─── LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 2rem;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 540px;
  width: 100%;
  animation: lightboxPop 0.3s ease both;
}
@keyframes lightboxPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s;
}
.lightbox-close:hover {
  background: var(--red);
  border-color: var(--red);
}

.lightbox-inner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}
.lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px 0;
  gap: 12px;
}
#lightbox-title {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
}
#lightbox-year {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--red);
  background: rgba(179, 0, 0, 0.15);
  border: 1px solid var(--border-red);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   BANKAI
═══════════════════════════════════════════════════════════ */
.section-bankai {
  position: relative;
  background: var(--dark-2);
  padding: 6rem 6vw;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.bankai-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bankai-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.07;
}
.bankai-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--dark-2) 0%,
    transparent 55%,
    var(--dark-2) 100%
  );
}

.bankai-inner {
  position: relative;
  z-index: 2;
}

.bankai-table-wrap {
  overflow-x: auto;
}

.bankai-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}
.bankai-table thead tr {
  border-bottom: 1px solid var(--border-red);
}
.bankai-table th {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 12px 20px;
}
.bankai-table td {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(234, 232, 224, 0.6);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.bankai-table tbody tr:hover td {
  background: rgba(179, 0, 0, 0.05);
  color: var(--text);
}
.bankai-table td.num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
  width: 52px;
}
.bankai-table td.bankai-name-cell {
  font-style: italic;
  color: rgba(200, 80, 80, 0.85);
}
.bankai-table tbody tr:hover td.bankai-name-cell {
  color: #e05050;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.section-about {
  position: relative;
  background: var(--dark);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

/* aizen-gif.gif — right floating character */
.about-char {
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 40%;
  z-index: 0;
  pointer-events: none;
}
.about-char img {
  width: 100%;
  height: auto;
  opacity: 0.18;
  filter: grayscale(30%) contrast(1.1);
}
.about-char-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--dark) 0%, transparent 30%),
    linear-gradient(to top, var(--dark) 0%, transparent 20%);
}

.about-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 6vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.about-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.85;
}

/* logo1.png as a faded stamp below the text */
.about-logo-stamp {
  width: 140px;
  height: auto;
  margin-top: 2.5rem;
  filter: brightness(0.8);
}

.about-video-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  background: var(--dark-3);
}
.about-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  padding: 2rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.8;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-socials a:hover {
  border-color: var(--border-red);
  color: var(--text);
  background: rgba(179, 0, 0, 0.08);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.footer-copy a {
  color: inherit;
  transition: color 0.2s;
}
.footer-copy a:hover {
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .movie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-char {
    width: 60%;
    bottom: 40px;
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  :root {
    --banner-h: 56px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .topnav {
    padding: 0 1.25rem;
  }

  .tybw-text {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }

  .playlist-inner,
  .section-movies,
  .section-bankai,
  .about-inner {
    padding: 4rem 1.5rem;
  }

  .hero-content {
    padding: 0 1.5rem;
  }
  .hero-scroll-hint {
    left: 1.5rem;
  }
  .hero-logo {
    width: clamp(200px, 60vw, 320px);
  }

  .footer-inner {
    padding: 1.75rem 1.5rem;
  }
  .footer-left {
    display: none;
  }
}

@media (max-width: 540px) {
  .track-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .movie-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
