/* ===========================
   GH BAND — black & white punk
   Inspired by Indulgencia / smex
   =========================== */

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --bg-2: #141414;
  --paper: #ffffff;
  --muted: #8a8a8a;
  --border: #2a2a2a;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--paper);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* === ФОНОВАЯ АТМОСФЕРА === */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Дымка: два медленных радиальных пятна */
.bg-fx__haze {
  position: absolute;
  width: 120vmax;
  height: 120vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.bg-fx__haze--a {
  top: -40vmax;
  left: -30vmax;
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.11) 0%,
    rgba(255,255,255,0.05) 35%,
    transparent 70%);
  animation: hazeDrift1 38s ease-in-out infinite alternate;
}
.bg-fx__haze--b {
  bottom: -50vmax;
  right: -35vmax;
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.09) 0%,
    rgba(255,255,255,0.04) 40%,
    transparent 72%);
  animation: hazeDrift2 52s ease-in-out infinite alternate;
}

@keyframes hazeDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(8vmax, 6vmax) scale(1.08); }
  100% { transform: translate(-6vmax, 10vmax) scale(0.96); }
}
@keyframes hazeDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-10vmax, -5vmax) scale(1.1); }
  100% { transform: translate(7vmax, -9vmax) scale(0.95); }
}

/* Зерно: SVG-ноиз поверх всего, с лёгким мерцанием */
.bg-fx__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.12;
  mix-blend-mode: overlay;
  animation: grainShift 1.6s steps(6) infinite;
  will-change: transform;
}

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

/* Весь контент выше фоновых эффектов */
.nav, header, section, footer { position: relative; z-index: 1; }

/* Респект prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .bg-fx__haze, .bg-fx__grain { animation: none; }
}

img { max-width: 100%; display: block; }
a { color: var(--paper); text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: block; }
.nav-logo img {
  display: block;
  height: 56px;
  width: auto;
  transition: opacity 0.2s ease;
}
.nav-logo:hover img { opacity: 0.75; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.6; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--paper);
  transition: all 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}

/* Статичное фото + Ken Burns: медленный зум и панорамирование */
.hero-bg {
  position: absolute;
  inset: -7%; /* запас по краям под большой зум */
  background: url('images/hero.jpg') center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: heroKenBurns 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1.02) translate(0, 0); }
  50%  { transform: scale(1.10) translate(-1%, -1.5%); }
  100% { transform: scale(1.18) translate(-2.5%, -3%); }
}

/* Прожекторы: три световых конуса сверху, пульсируют в разном ритме */
.hero-spotlights {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.spot {
  position: absolute;
  top: -10%;
  width: 40vw;
  height: 90vh;
  transform-origin: 50% 0%;
  background: radial-gradient(ellipse 50% 60% at 50% 0%,
    rgba(255,255,255,0.85) 0%,
    rgba(255,255,255,0.45) 22%,
    rgba(255,255,255,0.18) 48%,
    transparent 78%);
  filter: blur(2px);
  will-change: opacity, transform;
}
.spot-1 {
  left: 8%;
  transform: rotate(8deg);
  animation: spotPulse1 4.2s ease-in-out infinite;
}
.spot-2 {
  left: 50%;
  margin-left: -20vw;
  transform: rotate(0deg);
  animation: spotPulse2 5.6s ease-in-out infinite 0.4s;
}
.spot-3 {
  right: 8%;
  transform: rotate(-8deg);
  animation: spotPulse3 3.8s ease-in-out infinite 0.8s;
}
@keyframes spotPulse1 {
  0%, 100% { opacity: 0.85; transform: rotate(8deg)  scaleY(1); }
  40%      { opacity: 1;    transform: rotate(13deg) scaleY(1.08); }
  60%      { opacity: 0.5;  transform: rotate(4deg)  scaleY(0.94); }
}
@keyframes spotPulse2 {
  0%, 100% { opacity: 0.9;  transform: rotate(0deg)  scaleY(1); }
  30%      { opacity: 0.45; transform: rotate(-4deg) scaleY(0.92); }
  70%      { opacity: 1;    transform: rotate(4deg)  scaleY(1.09); }
}
@keyframes spotPulse3 {
  0%, 100% { opacity: 0.8;  transform: rotate(-8deg)  scaleY(1); }
  25%      { opacity: 1;    transform: rotate(-13deg) scaleY(1.07); }
  75%      { opacity: 0.5;  transform: rotate(-4deg)  scaleY(0.94); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
  .spot { animation: none; opacity: 0.55; }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 32px;
  cursor: default;
  isolation: isolate;
}

.hero-logo {
  display: block;
  position: relative;
  z-index: 2;
  width: clamp(280px, 55vw, 620px);
  height: auto;
  filter:
    drop-shadow(0 0 10px rgba(255,240,210,0.6))
    drop-shadow(0 0 24px rgba(255,200,140,0.5))
    drop-shadow(0 0 48px rgba(255,160,90,0.4))
    drop-shadow(0 8px 30px rgba(0,0,0,0.8));
  animation: logoCandle 6s ease-in-out infinite;
  transition: transform 0.6s ease, filter 0.6s ease;
  will-change: filter, transform;
}

/* Круговое свечение вокруг логотипа: два слоя круглых градиентов в тёплых тонах,
   излучают во все стороны равномерно — как пламя свечи */
.hero-logo-flame {
  position: absolute;
  inset: -35%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255,210,150,0.55) 0%,
      rgba(255,180,110,0.38) 18%,
      rgba(255,150,80,0.22) 35%,
      rgba(255,130,60,0.10) 55%,
      transparent 75%);
  filter: blur(20px);
  mix-blend-mode: screen;
  animation: candleBreathe 6s ease-in-out infinite;
  will-change: transform, opacity;
}
.hero-logo-flame::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 50% 50%,
    rgba(255,230,180,0.55) 0%,
    rgba(255,200,140,0.35) 25%,
    rgba(255,160,90,0.15) 55%,
    transparent 80%);
  filter: blur(14px);
  mix-blend-mode: screen;
  animation: candleBreathe 4.5s ease-in-out infinite reverse;
  opacity: 0.85;
}
.hero-logo-flame::after {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%,
    rgba(255,220,160,0.32) 0%,
    rgba(255,180,110,0.18) 30%,
    rgba(255,150,80,0.08) 55%,
    transparent 80%);
  filter: blur(28px);
  mix-blend-mode: screen;
  animation: candleBreathe 7.5s ease-in-out infinite;
  opacity: 0.75;
}
@keyframes candleBreathe {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.06); opacity: 1; }
}
@keyframes logoCandle {
  0%, 100% {
    filter:
      drop-shadow(0 0 10px rgba(255,240,210,0.6))
      drop-shadow(0 0 24px rgba(255,200,140,0.5))
      drop-shadow(0 0 48px rgba(255,160,90,0.4))
      drop-shadow(0 8px 30px rgba(0,0,0,0.8));
  }
  50% {
    filter:
      drop-shadow(0 0 14px rgba(255,240,210,0.75))
      drop-shadow(0 0 32px rgba(255,200,140,0.65))
      drop-shadow(0 0 64px rgba(255,160,90,0.52))
      drop-shadow(0 8px 30px rgba(0,0,0,0.8));
  }
}

/* Hover: свечение плавно разгорается, логотип чуть увеличивается */
.hero-logo-wrap:hover .hero-logo {
  transform: scale(1.025);
  filter:
    drop-shadow(0 0 16px rgba(255,240,210,0.85))
    drop-shadow(0 0 38px rgba(255,200,140,0.75))
    drop-shadow(0 0 72px rgba(255,150,70,0.6))
    drop-shadow(0 8px 30px rgba(0,0,0,0.8));
}
.hero-logo-wrap:hover .hero-logo-flame {
  transform: scale(1.12);
  filter: blur(18px);
  transition: transform 0.8s ease, filter 0.8s ease;
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo, .hero-logo-flame, .hero-logo-flame::before, .hero-logo-flame::after {
    animation: none;
  }
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
  margin-bottom: 12px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--paper);
  margin: 16px auto 24px;
  opacity: 0.6;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.25em;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid var(--paper);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--paper); color: var(--black); }
.btn-primary { background: var(--paper); color: var(--black); }
.btn-primary:hover { background: transparent; color: var(--paper); }
.btn-block { width: 100%; }

/* === SECTIONS === */
section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.4em;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper);
}

.section-divider {
  width: 80px;
  height: 1px;
  background: var(--paper);
  margin: 28px auto 0;
  opacity: 0.5;
}

/* === ABOUT === */
.about { background: transparent; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  gap: 32px;
}
.about-text p {
  font-size: 17px;
  margin-bottom: 18px;
  color: #d4d4d4;
  line-height: 1.8;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--paper); font-weight: 600; }

.about-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 24px;
}
.about-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  border-left: 1px solid var(--border);
}
.about-stats li:first-child { border-left: none; }

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--paper);
  line-height: 1;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.25em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

/* === GALLERY === */
.gallery { background: transparent; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item figcaption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}
.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* === RELEASE / SINGLE === */
.release { background: transparent; border-top: 1px solid var(--border); }

.release-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.release-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #111 0%, #1c1c1c 50%, #0a0a0a 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.release-cover::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.release-cover-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
}
.release-mark {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1;
  text-transform: uppercase;
}
.release-meta {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  min-width: 160px;
}

.release-content { color: var(--paper); }
.release-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.release-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 24px;
}
.release-text {
  font-size: 16px;
  line-height: 1.75;
  color: #cfcfcf;
  max-width: 560px;
  margin-bottom: 32px;
}
.release-tracks {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  border-top: 1px solid var(--border);
}
.release-tracks li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 16px;
  transition: padding 0.25s;
}
.release-tracks li:hover { padding-left: 14px; }
.release-tracks li span:first-child {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2em;
  min-width: 28px;
}
.track-meta {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  margin-left: 8px;
}

.release-platforms-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.platform-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border: 1px solid var(--border);
  color: var(--paper);
  background: transparent;
  min-height: 120px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.platform-card[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}
.platform-card:hover {
  background: var(--paper);
  color: var(--black);
  border-color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: inherit;
  transition: transform 0.3s ease;
}
.platform-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.platform-card:hover .platform-icon {
  transform: scale(1.08);
}
.platform-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.platform-status {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
}
.platform-card:hover .platform-status { color: var(--black); opacity: 0.7; }

/* === CONTACT === */
.contact { background: transparent; }

.contact-simple {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.contact-lead {
  font-size: 18px;
  color: #d4d4d4;
  line-height: 1.7;
  letter-spacing: 0.02em;
  max-width: 520px;
}
.vk-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 22px 36px;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.vk-link:hover {
  background: var(--paper);
  color: var(--black);
  transform: translateY(-2px);
}
.vk-mark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-right: 1px solid currentColor;
  padding-right: 24px;
}
.vk-text {
  font-size: 15px;
}
.vk-arrow {
  font-size: 20px;
  transition: transform 0.25s;
}
.vk-link:hover .vk-arrow { transform: translateX(6px); }

/* === FOOTER === */
.footer {
  background: var(--black);
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo img {
  display: block;
  height: 64px;
  width: auto;
  opacity: 0.7;
}
.footer-text p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-small {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.footer-credit {
  color: var(--paper);
  font-weight: 600;
  letter-spacing: 0.35em;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 86vh;
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  width: 48px; height: 48px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lightbox-close:hover { background: var(--paper); color: var(--black); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 14px 24px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 13px; letter-spacing: 0.12em; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats li { border-left: none; border-top: 1px solid var(--border); }
  .about-stats li:first-child { border-top: none; }
  .release-grid { grid-template-columns: 1fr; gap: 40px; }
  .release-cover { max-width: 320px; margin: 0 auto; width: 100%; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .nav-logo img { height: 42px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; }
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vk-link { padding: 18px 24px; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .vk-mark { padding-right: 16px; font-size: 18px; }
  .vk-text { font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .btn { width: 80%; text-align: center; }
  .stat-num { font-size: 40px; }
  .contact-list a { font-size: 18px; }
  .release-mark { font-size: 84px; }
  .release-title { font-size: 36px; }
  .platforms-grid { grid-template-columns: 1fr; gap: 10px; }
}
