@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cuprum:wght@400;500;600;700&family=Jura:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;700&display=swap');

/* Шрифтовые переменные */
:root {
  /* Для цифр и латиницы */
  --font-display: 'Bebas Neue', sans-serif;
  /* Для кириллицы */
  --font-display-cyr: 'Cuprum', 'Jura', 'Arial Narrow', sans-serif;
  /* Моноширинный */
  --font-mono: 'IBM Plex Mono', 'Roboto Mono', 'Courier New', monospace;
}

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

body {
  background: #F7F5F0;
  color: #0A0A0A;
  font-family: var(--font-display);
  cursor: none;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}



/* ЛОАДЕР */
#loader {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 1000;
}

.artwork-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 6000px;
  will-change: transform;
}

.artwork-part {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 6000px;
  background-size: 1920px 6000px;
  background-position: top center;
  background-repeat: no-repeat;
}

.artwork-main {
  background-image: url('../bg.jpg');
  z-index: 1;
}

.artwork-second {
  background-image: url('../6mlbgsec.jpg');
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.red-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #C21414;
  top: 0%;
  z-index: 5;
}

.counter-display {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(60px, 10vw, 140px);
  letter-spacing: -3px;
  color: #0A0A0A;
  opacity: 0.85;
  z-index: 25;
  white-space: nowrap;
  text-shadow:
    0 0 12px rgba(247, 245, 240, 0.6),
    0 0 24px rgba(247, 245, 240, 0.4);
}

.counter-display.glitch {
  animation: glitch 0.1s infinite;
}

@keyframes glitch {
  0% { transform: translate(-50%, -50%) translate(0); }
  25% { transform: translate(-50%, -50%) translate(-6px, 3px); }
  50% { transform: translate(-50%, -50%) translate(6px, -3px); }
  75% { transform: translate(-50%, -50%) translate(-4px, 4px); }
  100% { transform: translate(-50%, -50%) translate(4px, -4px); }
}

#loader::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 3;
}

/* ХИРО */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  background: linear-gradient(180deg, #F7F5F0 0%, #F7F5F0 65%, #3A3A3A 100%);
  z-index: 100;
}

.hero.visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 100;
}

.layer-sun {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.layer-sun img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.layer-city {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  max-width: 110%;
  z-index: 2;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.layer-city img {
  width: 100%;
  height: auto;
  display: block;
}

.layer-branches {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  max-width: 60%;
  z-index: 5;
  will-change: transform;
  transition: transform 0.15s ease-out;
  pointer-events: none;
}

.layer-branches img {
  width: 100%;
  height: auto;
  display: block;
}

.logo {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.logo-title {
  font-family: var(--font-display);
  font-size: clamp(70px, 10vw, 160px);
  color: #0A0A0A;
  letter-spacing: -2px;
  line-height: 0.9;
  transform: scaleX(0.9);
  white-space: nowrap;
}

.logo-numbers {
  color: #0A0A0A;
  text-shadow:
    -2px -2px 0 #F7F5F0,
    2px -2px 0 #F7F5F0,
    -2px 2px 0 #F7F5F0,
    2px 2px 0 #F7F5F0,
    -1px 0 0 #F7F5F0,
    1px 0 0 #F7F5F0,
    0 -1px 0 #F7F5F0,
    0 1px 0 #F7F5F0;
}

.logo-word {
  color: #0A0A0A;
  text-shadow:
    -2px -2px 0 #F7F5F0,
    2px -2px 0 #F7F5F0,
    -2px 2px 0 #F7F5F0,
    2px 2px 0 #F7F5F0,
    -1px 0 0 #F7F5F0,
    1px 0 0 #F7F5F0,
    0 -1px 0 #F7F5F0,
    0 1px 0 #F7F5F0;
}

.logo-sub {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 4px;
  color: #0A0A0A;
  text-transform: lowercase;
  font-weight: 700;
  text-shadow:
    0 0 20px rgba(247, 245, 240, 0.95),
    0 0 40px rgba(247, 245, 240, 0.8);
}

.social-links {
  position: absolute;
  top: 20px;
  right: 8%;
  z-index: 9;
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.social-links a {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #0A0A0A;
  transition: color 0.2s;
  cursor: pointer;
  font-weight: bold;
}

.social-links a:hover {
  color: #C21414;
}

.actions {
  position: absolute;
  bottom: 15%;
  right: 8%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.action-btn {
  font-family: var(--font-mono);
  font-size: 17px;
  letter-spacing: 3px;
  text-decoration: none;
  color: #F7F5F0;
  padding: 14px 32px;
  border: 2px solid #F7F5F0;
  background: rgba(10, 10, 10, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  min-width: 200px;
}

.action-btn:hover {
  color: #0A0A0A;
  background: #C21414;
  border-color: #C21414;
  transform: translateX(-4px);
  box-shadow: 0 4px 20px rgba(194, 20, 20, 0.4);
}

.custom-cursor {
  position: fixed;
  width: 16px;
  height: 16px;
  border: 2px solid #C21414;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s, background 0.1s;
}

.custom-cursor.active {
  transform: scale(2);
  background: #C21414;
  opacity: 0.5;
}



/* О ГРУППЕ */

/* СКРОЛЛ-СЕКЦИЯ */
.scroll-section {
  position: relative;
  height: 100vh;
  background-color: #2a2a2a;
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  padding: 100px 40px 80px 40px;
  margin: 0;
}

.scroll-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 75% 75% at center, transparent 0%, transparent 40%, rgba(0,0,0,0.6) 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at center, transparent 0%, transparent 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.scroll-content {
  position: relative;
  z-index: 10;
}

.scroll-content {
  max-width: 900px;
  margin: 0 auto;
}

.scroll-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 9vw, 135px);
  text-align: center;
  color: #E6E6E6;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.scroll-title::after {
  content: '';
  display: block;
  width: 150px;
  height: 3px;
  background-color: #C21414;
  margin: 10px auto 50px;
}

.scroll-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scroll-card {
  border: 1px solid #666;
  background: rgba(20, 20, 20, 0.85);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

.scroll-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-card:hover {
  border-color: #C21414;
  transform: translateX(10px);
}

.scroll-card.red {
  border-color: #C21414;
  background: rgba(194, 20, 20, 0.25);
}

.card-date {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 100px;
}

.card-day {
  font-family: var(--font-display);
  font-size: 60px;
  color: #C21414;
  line-height: 0.9;
}

.card-month {
  font-family: var(--font-mono);
  font-size: 17px;
  color: #CCCCCC;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.card-time {
  font-family: var(--font-mono);
  font-size: 17px;
  color: #B0B0B0;
  letter-spacing: 1px;
}

.card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 48px;
  color: #F7F5F0;
  line-height: 1;
}

.card-desc {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #CCCCCC;
  letter-spacing: 1px;
}

.card-venue {
  font-family: var(--font-mono);
  font-size: 17px;
  color: #B0B0B0;
  letter-spacing: 2px;
}

.card-tickets {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #F7F5F0;
  padding: 10px 20px;
  border: 1px solid #F7F5F0;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.card-tickets:hover {
  background: #C21414;
  border-color: #C21414;
  color: #0A0A0A;
}

/* СОСТАВ */
.members-section {
  position: relative;
  height: 100vh;
  background: #1A1A1A;
  padding: 120px 40px;
}

.members-content {
  max-width: 900px;
  margin: 0 auto;
}

.members-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 115px);
  color: #F7F5F0;
  letter-spacing: -2px;
  margin-bottom: 40px;
  transform: scaleX(0.9);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.member-card {
  border: 1px solid #555;
  padding: 24px;
  transition: all 0.3s;
}

.member-card:hover {
  border-color: #C21414;
  background: rgba(194, 20, 20, 0.1);
}

.member-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: #F7F5F0;
  margin-bottom: 8px;
}

.member-role {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 2px;
  color: #CCCCCC;
  text-transform: lowercase;
}

.members-note {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #B0B0B0;
  letter-spacing: 1px;
}

/* ДИСКОГРАФИЯ */
.discography-section {
  position: relative;
  height: 100vh;
  background: #F7F5F0;
  padding: 120px 40px;
}

.discography-content {
  max-width: 1200px;
  margin: 0 auto;
}

.discography-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 115px);
  color: #0A0A0A;
  letter-spacing: -2px;
  margin-bottom: 40px;
  transform: scaleX(0.9);
}

.discography-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-viewport {
  overflow: hidden;
  flex: 1;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-slide {
  min-width: 220px;
  text-align: center;
  padding: 20px;
  border: 1px solid #ccc;
  transition: all 0.3s;
}

.album-slide:hover {
  border-color: #C21414;
}

.album-cover {
  font-size: 80px;
  margin-bottom: 16px;
}

.album-year {
  font-family: var(--font-display);
  font-size: 28px;
  color: #C21414;
  margin-bottom: 8px;
}

.album-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: #0A0A0A;
  margin-bottom: 8px;
}

.album-type {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #A0A0A0;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.buy-btn {
  font-family: var(--font-mono);
  font-size: 17px;
  letter-spacing: 2px;
  padding: 10px 20px;
  background: #C21414;
  color: #F7F5F0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.buy-btn:hover {
  background: #0A0A0A;
}

.slider-btn {
  width: 40px;
  height: 40px;
  font-size: 20px;
  background: transparent;
  border: 2px solid #0A0A0A;
  color: #0A0A0A;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: #0A0A0A;
  color: #F7F5F0;
}

/* ГАРАЖНАЯ СТЕНА */


.wall-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      #333 50px,
      #333 52px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      #333 100px,
      #333 102px
    ),
    linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  opacity: 0.6;
  z-index: 0;
}

.wall-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Афиши */
.poster {
  position: absolute;
  background: #F7F5F0;
  padding: 25px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  max-width: 350px;
}

.poster-1 {
  top: 10%;
  left: 5%;
  transform: rotate(-3deg);
}

.poster-2 {
  top: 15%;
  right: 8%;
  transform: rotate(2deg);
  background: #f0e8d8;
}

.poster:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.poster-tape {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 80px;
  height: 25px;
  background: rgba(255, 255, 200, 0.7);
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.poster-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: #0A0A0A;
  margin-bottom: 15px;
  letter-spacing: 1px;
  border-bottom: 2px solid #C21414;
  padding-bottom: 5px;
}

.poster-content {
  font-family: var(--font-mono);
  font-size: 17px;
  line-height: 1.6;
  color: #E0E0E0;
}

.poster-line {
  margin-bottom: 5px;
}

.poster-name {
  font-weight: bold;
  color: #0A0A0A;
}

.poster-note {
  margin-top: 10px;
  font-size: 17px;
  color: #B0B0B0;
  font-style: italic;
  border-left: 2px solid #C21414;
  padding-left: 10px;
}

/* Дискография в афише */
.disc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 16px;
}

.disc-year {
  font-family: var(--font-display);
  font-size: 20px;
  color: #C21414;
  min-width: 40px;
}

.disc-name {
  font-weight: bold;
  color: #0A0A0A;
}

.disc-format {
  color: #B0B0B0;
  font-size: 10px;
}

/* Стикер */
.sticker {
  position: absolute;
  background: #FFD700;
  padding: 15px 20px;
  transform: rotate(5deg);
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 16px;
  color: #0A0A0A;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 3;
  letter-spacing: 1px;
}

.sticker-1 {
  top: 60%;
  left: 30%;
}

/* Маркерная надпись */
.marker-text {
  position: absolute;
  bottom: 20%;
  left: 15%;
  font-family: var(--font-mono);
  font-size: 32px;
  color: #C21414;
  transform: rotate(-5deg);
  text-shadow: 0 0 5px rgba(194, 20, 20, 0.5);
  z-index: 4;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Граффити */
.graffiti {
  position: absolute;
  bottom: 30%;
  right: 10%;
  font-family: var(--font-display);
  font-size: 80px;
  color: #0A0A0A;
  opacity: 0.6;
  transform: rotate(2deg);
  z-index: 1;
  letter-spacing: -2px;
}

/* Потёки краски */
.paint-drip {
  position: absolute;
  width: 3px;
  height: 150px;
  background: linear-gradient(180deg, #C21414, transparent);
  z-index: 5;
}

.drip-1 {
  top: 0;
  left: 20%;
}

.drip-2 {
  top: 0;
  right: 25%;
  height: 100px;
}

/* Царапины */
.scratch {
  position: absolute;
  width: 150px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  z-index: 5;
}

.scratch-1 {
  top: 30%;
  left: 40%;
  transform: rotate(-15deg);
}

.scratch-2 {
  top: 50%;
  right: 30%;
  transform: rotate(20deg);
  width: 100px;
}

/* Обрывок объявления */
.torn-paper {
  position: absolute;
  bottom: 10%;
  right: 25%;
  background: #fffef0;
  padding: 15px;
  transform: rotate(-2deg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 17px;
  color: #E0E0E0;
  border: 1px solid #ddd;
}

.torn-text {
  line-height: 1.4;
}

.torn-edge {
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 10px;
  background: #fffef0;
  clip-path: polygon(0% 0%, 10% 30%, 20% 0%, 35% 20%, 50% 0%, 65% 40%, 75% 0%, 90% 25%, 100% 0%, 100% 100%, 0% 100%);
}

/* Адаптивность */
@media (max-width: 768px) {
  .poster {
    position: relative;
    max-width: 100%;
    margin-bottom: 30px;
    transform: rotate(-1deg) !important;
  }
  
  .poster-1 {
    top: auto;
    left: auto;
  }
  
  .poster-2 {
    top: auto;
    right: auto;
    transform: rotate(1deg) !important;
  }
  
  .sticker {
    position: relative;
    display: inline-block;
    margin: 20px;
  }
  
  .marker-text {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 30px 20px;
  }
  
  .graffiti {
    position: relative;
    bottom: auto;
    right: auto;
    font-size: 44px;
    margin: 20px;
  }
  
  .torn-paper {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px;
  }
  
  .paint-drip, .scratch {
    display: none;
  }
}


/* ========== ГАРАЖНАЯ СТЕНА ========== */
.garage-wall {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url('../images/garage.jpg') center/cover no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Интерактивные зоны */
.hotspot {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hotspot:hover {
  transform: scale(1.1);
}

.hotspot-label {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #F7F5F0;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 2px;
  border: 1px solid #A30303;
  transition: all 0.3s ease;
}

.hotspot:hover .hotspot-label {
  background: #A30303;
  color: #F7F5F0;
  box-shadow: 0 0 20px rgba(163, 3, 3, 0.5);
}

.hotspot-composition {
  top: 20%;
  left: 18%;
}

.hotspot-discography {
  top: 38%;
  right: 12%;
}

@media (max-width: 768px) {
  .garage-wall {
    height: 60vh;
  }
  
  .hotspot-label {
    font-size: 10px;
    padding: 8px 12px;
  }
  
  .hotspot-composition {
    top: 18%;
    left: 8%;
  }
  
  .hotspot-discography {
    top: 35%;
    right: 3%;
  }
}

/* МЕРЧ */
.merch-section {
  position: relative;
  min-height: 100vh;
  background: #F7F5F0;
  padding: 80px 40px;
  margin: 0;
}

.merch-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.merch-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 9vw, 135px);
  color: #0A0A0A;
  letter-spacing: -2px;
  margin-bottom: 60px;
  transform: scaleX(0.9);
}

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

.merch-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.merch-card:hover {
  border-color: #C21414;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.merch-card.featured {
  border-color: #C21414;
  background: #fffafa;
  transform: scale(1.05);
}

.merch-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.merch-card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #C21414;
  color: #F7F5F0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 5px 10px;
  z-index: 2;
}

.merch-card-image {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.merch-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.merch-card:hover .merch-card-image img {
  transform: scale(1.05);
}

.merch-card-info {
  text-align: center;
}

.merch-card-name {
  font-family: var(--font-display);
  font-size: 32px;
  color: #0A0A0A;
  margin-bottom: 8px;
}

.merch-card-desc {
  font-family: var(--font-mono);
  font-size: 17px;
  color: #A0A0A0;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.merch-card-price {
  font-family: var(--font-display);
  font-size: 40px;
  color: #C21414;
}

.merch-catalog-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 3px;
  text-decoration: none;
  color: #0A0A0A;
  padding: 16px 40px;
  border: 2px solid #0A0A0A;
  transition: all 0.3s ease;
  cursor: pointer;
}

.merch-catalog-btn:hover {
  background: #0A0A0A;
  color: #F7F5F0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .merch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .merch-card {
    padding: 20px;
  }
  
  .merch-card-image {
    height: 200px;
  }
}

/* КОНТАКТЫ */
.contacts-section {
  position: relative;
  min-height: 100vh;
  background: #1A1A1A;
  padding: 80px 40px;
  margin: 0;
}

.contacts-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contacts-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 9vw, 135px);
  color: #FFFFFF;
  letter-spacing: -2px;
  margin-bottom: 60px;
  transform: scaleX(0.9);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Сетка соцсетей */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 80px;
  gap: 15px;
  margin-bottom: 50px;
}

/* Все ссылки одинаковые 3x3 */
.social-link {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
}

.social-link {
  font-family: var(--font-mono);
  font-size: 17px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #FFFFFF;
  padding: 20px;
  border: 1px solid #777;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  border-color: #C21414;
  background: rgba(194, 20, 20, 0.1);
  color: #C21414;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(194, 20, 20, 0.3);
}

/* Разделитель */
.contacts-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C21414, transparent);
  margin: 50px 0;
  position: relative;
}

.contacts-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #C21414;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(194, 20, 20, 0.5);
}

/* Блок менеджмента */
.management-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}

.management-label {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 2px;
  color: #AAA;
  text-transform: uppercase;
  text-align: center;
}

.management-info {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.management-name {
  font-family: var(--font-display);
  font-size: 52px;
  color: #FFFFFF;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.management-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 2px solid #C21414;
  padding-left: 30px;
}

.management-link {
  font-family: var(--font-mono);
  font-size: 17px;
  color: #DDD;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.management-link:hover {
  color: #C21414;
}

/* Адаптивность */
@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .social-link {
    font-size: 16px;
    padding: 15px;
  }
  
  .management-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .management-contacts {
    border-left: none;
    border-top: 2px solid #C21414;
    padding-left: 0;
    padding-top: 20px;
    align-items: center;
  }
  
  .management-name {
    font-size: 40px;
  }
}


/* Кнопка наверх */
.scroll-top-btn {
  display: block;
  margin: 30px auto 0;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 2px;
  color: #EEE;
  background: transparent;
  border: 1px solid #555;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.scroll-top-btn:hover {
  border-color: #C21414;
  color: #C21414;
  background: rgba(194, 20, 20, 0.1);
  box-shadow: 0 0 20px rgba(194, 20, 20, 0.3);
}

/* ФУТЕР */
.footer {
  position: relative;
  background: #0A0A0A;
  padding: 60px 40px 30px;
  border-top: 2px solid #C21414;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 44px;
  color: #FFFFFF;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.footer-social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social a {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #EEE;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  letter-spacing: 1px;
}

.footer-social a:hover {
  color: #C21414;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 17px;
  color: #B0B0B0;
  letter-spacing: 1px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 16px;
  color: #C21414;
  letter-spacing: 2px;
  text-transform: lowercase;
  font-style: italic;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ТАЙМЛАЙН О ГРУППЕ */
.about-entry {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  padding-left: 60px;
}

.about-entry::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #C21414;
}

.about-entry::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 20%;
  width: 12px;
  height: 3px;
  background: #C21414;
  opacity: 0.7;
}

.year-highlight {
  font-family: var(--font-display);
  font-size: 80px;
  color: #0A0A0A;
  min-width: 130px;
  line-height: 0.8;
  position: relative;
  z-index: 2;
  background: #212121;
  padding: 0 10px;
  margin-left: -60px;
}

.about-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 30vw, 400px);
  color: #0A0A0A;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 10px;
  white-space: nowrap;
}

.text-highlight {
  color: #C21414;
  font-weight: bold;
}

.about-text strong {
  color: #0A0A0A;
  font-weight: bold;
}

/* О ГРУППЕ — ТАЙМЛАЙН */
.about-section {
  position: relative;
  padding: 50px 20px 50px 20px;
  background: #212121;
  overflow: hidden;
  z-index: 4;
  margin: 0;
}


.about-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #C21414;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(194, 20, 20, 0.9), 0 0 60px rgba(194, 20, 20, 0.5);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.about-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display-cyr);
  font-size: clamp(200px, 25vw, 400px);
  color: #CCCCCC;
  font-weight: bold;
  letter-spacing: -5px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 9vw, 120px);
  color: #0A0A0A;
  text-align: center;
  letter-spacing: -2px;
  transform: scaleX(0.95);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.timeline-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: clamp(50px, 5vw, 80px);
  color: #F7F5F0;
  background-color: #0A0A0A;
  padding: 10px 30px 5px 30px;
  line-height: 0.9;
  min-width: 140px;
  text-align: center;
  clip-path: polygon(
    0% 0%, 100% 0%,
    100% 5%, 98% 10%, 100% 20%, 95% 30%, 100% 45%, 97% 55%, 100% 70%, 94% 80%, 100% 90%, 99% 100%,
    0% 100%, 2% 90%, 0% 80%, 4% 70%, 0% 55%, 3% 40%, 0% 25%, 4% 15%, 0% 5%
  );
  flex-shrink: 0;
}

.timeline-line {
  width: 3px;
  background-color: #C21414;
  align-self: stretch;
  min-height: 100%;
  flex-shrink: 0;
}

.timeline-text {
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1.7;
  color: #1A1A1A;
  padding-top: 5px;
  font-weight: 500;
}

.timeline-text strong {
  color: #0A0A0A;
}

.timeline-text .red-text {
  color: #A30303;
  font-weight: bold;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .timeline-line {
    width: 50px;
    height: 3px;
    align-self: center;
    min-height: auto;
  }
  .timeline-year {
    min-width: 100px;
    font-size: 44px;
  }
}


/* Отступы между секциями */
section {
  margin: 0;
}



/* Кириллические заголовки — Oswald */
@supports (font-family: 'Oswald') {
  .scroll-title,
  .about-title,
  .merch-title,
  .contacts-title,
  .card-title,
  .member-name,
  .merch-card-name,
  .footer-logo,
  .timeline-year {
    font-family: var(--font-display-cyr);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
}

/* Латиница и цифры — Bebas Neue */
.logo-title,
.logo-numbers,
.logo-word,
.card-day,
.disc-year,
.action-btn {
  font-family: var(--font-display);
  letter-spacing: 1px;
}

/* Усиление читабельности */
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Десктоп: показываем сетку, скрываем слайдер */
.merch-grid {
  display: grid;
}

.merch-slider-mobile {
  display: none;
}

/* Скрываем мобильную навигацию на десктопе */
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}
