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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000000;
  color: #fff;
  overflow-x: hidden;
}

/* === ФОН === */
.gradient-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to top,
    #000000 0%,
    #000000 20%,
    #2a1f45 50%,
    #6b5790 80%,
    #907cb3 100%
  );
  background-size: 100% 200%;
  animation: gradientFlow 14s ease-in-out infinite;
  z-index: -2;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 0%; filter: brightness(0.95); }
  50%      { background-position: 0% 40%; filter: brightness(1.1); }
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === ЧАСТИЦЫ === */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 8px rgba(144, 124, 179, 0.9);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  from { transform: translateY(100vh) scale(0.3); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* ============================================ */
/* ПЕРВАЯ СЕКЦИЯ                                */
/* ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 8vh 6vw 0 6vw;
  position: relative;
  z-index: 2;
}

.title {
  font-size: clamp(2.4rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  text-shadow: 0 0 40px rgba(144, 124, 179, 0.35);
}

.title .line {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  filter: blur(14px);
  animation: riseIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.title .line:nth-child(1) { animation-delay: 0.3s; }
.title .line:nth-child(2) { animation-delay: 0.7s; }
.title .line:nth-child(3) { animation-delay: 1.1s; }

.title .white { color: #ffffff; }

.title .pink {
  color: #f44073;
  text-shadow:
    0 0 30px rgba(244, 64, 115, 0.55),
    0 0 60px rgba(244, 64, 115, 0.3);
}

@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* === GLITCH === */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch-text {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.glitch-layer {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #f44073;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  white-space: nowrap;
}

.glitch.active .glitch-layer-1 {
  opacity: 0.9;
  color: #00e5ff;
  animation: glitchShift1 0.3s infinite steps(4);
}

.glitch.active .glitch-layer-2 {
  opacity: 0.9;
  color: #ff00c8;
  animation: glitchShift2 0.3s infinite steps(4);
}

.glitch.active .glitch-text {
  animation: glitchShake 0.28s infinite;
}

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

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

@keyframes glitchShake {
  0%   { transform: translate(0, 0) skewX(0deg); }
  15%  { transform: translate(-3px, 1px) skewX(-3deg); }
  30%  { transform: translate(3px, -1px) skewX(2deg); }
  45%  { transform: translate(-2px, 2px) skewX(-1deg); }
  60%  { transform: translate(2px, -2px) skewX(3deg); }
  75%  { transform: translate(-1px, 1px) skewX(-2deg); }
  100% { transform: translate(0, 0) skewX(0deg); }
}

/* === СТРЕЛКА СКРОЛЛА === */
.scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  opacity: 0;
  animation: riseIn 1s ease 2.2s forwards;
}

.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50%      { top: 22px; opacity: 0.3; }
}

/* ============================================ */
/* ВТОРАЯ СЕКЦИЯ — СОЦСЕТИ + ЦЕЛИ               */
/* ============================================ */
.socials {
  min-height: 100vh;
  padding: 12vh 6vw;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.column-title {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.column-title .year {
  font-size: 0.75em;
  letter-spacing: 0.15em;
  color: #f44073;
  font-weight: 600;
  text-transform: none;
}

/* === СОЦСЕТИ === */
.socials-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  opacity: 0;
  transform: translateY(40px);
}

.socials.visible .column-title { opacity: 1; transform: translateY(0); }
.socials.visible .social-card,
.socials.visible .goal {
  opacity: 1;
  transform: translateY(0);
}

.socials.visible .social-card:nth-child(1) { transition-delay: 0.15s; }
.socials.visible .social-card:nth-child(2) { transition-delay: 0.3s; }
.socials.visible .social-card:nth-child(3) { transition-delay: 0.45s; }

.socials.visible .goal:nth-child(1) { transition-delay: 0.25s; }
.socials.visible .goal:nth-child(2) { transition-delay: 0.4s; }
.socials.visible .goal:nth-child(3) { transition-delay: 0.55s; }

.social-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(144, 124, 179, 0.5);
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 10px 40px rgba(144, 124, 179, 0.25),
    0 0 0 1px rgba(144, 124, 179, 0.2);
}

.social-card.youtube:hover { border-color: rgba(255, 0, 0, 0.6); box-shadow: 0 10px 40px rgba(255, 0, 0, 0.25); }
.social-card.roblox:hover  { border-color: rgba(255, 255, 255, 0.5); }
.social-card.discord:hover { border-color: rgba(88, 101, 242, 0.7); box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3); }

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-card:hover .social-icon {
  background: rgba(255, 255, 255, 0.12);
}

.social-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.social-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.social-handle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* === ЦЕЛИ === */
.goals-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.goal {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid #f44073;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  opacity: 0;
  transform: translateY(40px);
}

.goal:hover {
  background: rgba(244, 64, 115, 0.06);
  border-color: rgba(244, 64, 115, 0.4);
  transform: translateY(-2px) translateX(4px);
  box-shadow: 0 8px 30px rgba(244, 64, 115, 0.15);
}

.goal-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.goal-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f44073;
  box-shadow: 0 0 12px rgba(244, 64, 115, 0.8);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

.goal:nth-child(1) .goal-marker { animation-delay: 0s; }
.goal:nth-child(2) .goal-marker { animation-delay: 0.4s; }
.goal:nth-child(3) .goal-marker { animation-delay: 0.8s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

.goal-text {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.goal-text strong {
  color: #fff;
  font-weight: 700;
}

/* === ПРОГРЕСС-БАР === */
.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: calc(8px + 1rem);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f44073 0%, #907cb3 100%);
  border-radius: 50px;
  width: 0%;
  box-shadow: 0 0 12px rgba(244, 64, 115, 0.6);
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  animation: progressShine 2.5s ease-in-out infinite;
}

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

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  font-variant-numeric: tabular-nums;
}

.progress-current {
  color: #f44073;
  font-weight: 700;
}

/* ============================================ */
/* ТРЕТЬЯ СЕКЦИЯ — SETUP + ROBLOX + NOW PLAYING */
/* ============================================ */
.setup {
  min-height: 100vh;
  padding: 12vh 6vw;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.setup-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Setup + Roblox в одной строке */
.setup-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  width: 100%;
  margin-bottom: 5rem;
}

.setup-column {
  display: flex;
  flex-direction: column;
}

.setup-title {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.setup.visible .setup-title {
  opacity: 1;
  transform: translateY(0);
}

.setup.visible .setup-column:nth-child(2) .setup-title {
  transition-delay: 0.15s;
}

.setup-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.setup-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #f44073;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  opacity: 0;
  transform: translateY(30px);
}

.setup.visible .setup-item {
  opacity: 1;
  transform: translateY(0);
}

.setup.visible .setup-column:nth-child(1) .setup-item:nth-child(1) { transition-delay: 0.1s; }
.setup.visible .setup-column:nth-child(1) .setup-item:nth-child(2) { transition-delay: 0.15s; }
.setup.visible .setup-column:nth-child(1) .setup-item:nth-child(3) { transition-delay: 0.2s; }
.setup.visible .setup-column:nth-child(1) .setup-item:nth-child(4) { transition-delay: 0.25s; }
.setup.visible .setup-column:nth-child(1) .setup-item:nth-child(5) { transition-delay: 0.3s; }

.setup.visible .setup-column:nth-child(2) .setup-item:nth-child(1) { transition-delay: 0.2s; }
.setup.visible .setup-column:nth-child(2) .setup-item:nth-child(2) { transition-delay: 0.25s; }
.setup.visible .setup-column:nth-child(2) .setup-item:nth-child(3) { transition-delay: 0.3s; }
.setup.visible .setup-column:nth-child(2) .setup-item:nth-child(4) { transition-delay: 0.35s; }
.setup.visible .setup-column:nth-child(2) .setup-item:nth-child(5) { transition-delay: 0.4s; }

.setup-item:hover {
  background: rgba(244, 64, 115, 0.05);
  border-color: rgba(244, 64, 115, 0.35);
  transform: translateY(-2px) translateX(4px);
  box-shadow: 0 6px 24px rgba(244, 64, 115, 0.12);
}

.setup-marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f44073;
  box-shadow: 0 0 10px rgba(244, 64, 115, 0.8);
  flex-shrink: 0;
}

.setup-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.setup-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.setup-value {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================ */
/* NOW PLAYING                                  */
/* ============================================ */
.now-playing-block {
  width: 100%;
}

.now-playing-block .setup-title {
  margin-bottom: 2rem;
}

.setup.visible .now-playing-block .setup-title {
  transition-delay: 0.5s;
}

.now-playing {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  opacity: 0;
  transform: translateY(40px);
}

.setup.visible .now-playing {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.now-playing:hover {
  background: rgba(244, 64, 115, 0.05);
  border-color: rgba(244, 64, 115, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(244, 64, 115, 0.2);
}

.now-playing-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #1a0d2e;
}

.now-playing-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.now-playing:hover .now-playing-thumb img {
  transform: scale(1.06);
}

.now-playing-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  transition: opacity 0.3s ease;
}

.now-playing-play svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 20px rgba(244, 64, 115, 0.9));
}

.now-playing-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.now-playing-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f44073;
  box-shadow: 0 0 12px rgba(244, 64, 115, 0.9);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.live-text {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.track-name {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.track-artist {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

.track-hint {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f44073;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.now-playing:hover .track-hint {
  transform: translateX(6px);
}

/* ============================================ */
/* ЧЕТВЁРТАЯ СЕКЦИЯ — ВИДЕО                     */
/* ============================================ */
.videos {
  min-height: 100vh;
  padding: 12vh 6vw;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.videos-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.videos-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.videos.visible .videos-title {
  opacity: 1;
  transform: translateY(0);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  opacity: 0;
  transform: translateY(40px);
}

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

.videos.visible .video-card:nth-child(1) { transition-delay: 0.15s; }
.videos.visible .video-card:nth-child(2) { transition-delay: 0.3s; }
.videos.visible .video-card:nth-child(3) { transition-delay: 0.45s; }

.video-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(244, 64, 115, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(244, 64, 115, 0.2);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a0d2e;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .video-play {
  opacity: 1;
}

.video-play svg {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 20px rgba(244, 64, 115, 0.8));
}

.video-info {
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.video-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.video-skeleton {
  aspect-ratio: 16 / 9;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================ */
/* ПЯТАЯ СЕКЦИЯ — FAQ                           */
/* ============================================ */
.faq {
  min-height: 100vh;
  padding: 12vh 6vw;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.faq-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq.visible .faq-title {
  opacity: 1;
  transform: translateY(0);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid #f44073;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  opacity: 0;
  transform: translateY(40px);
}

.faq.visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.faq.visible .faq-item:nth-child(1) { transition-delay: 0.15s; }
.faq.visible .faq-item:nth-child(2) { transition-delay: 0.25s; }
.faq.visible .faq-item:nth-child(3) { transition-delay: 0.35s; }
.faq.visible .faq-item:nth-child(4) { transition-delay: 0.45s; }
.faq.visible .faq-item:nth-child(5) { transition-delay: 0.55s; }

.faq-item:hover {
  background: rgba(244, 64, 115, 0.05);
  border-color: rgba(244, 64, 115, 0.35);
}

.faq-item.open {
  background: rgba(244, 64, 115, 0.07);
  border-color: rgba(244, 64, 115, 0.5);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f44073;
  box-shadow: 0 0 12px rgba(244, 64, 115, 0.8);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

.faq-q-text {
  flex: 1;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #f44073;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.4rem 1.3rem calc(8px + 2rem);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* === ТОСТ === */
.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 80px);
  padding: 0.8rem 1.6rem;
  background: #f44073;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(244, 64, 115, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
}

.copy-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* === АДАПТАЦИЯ === */
@media (max-width: 900px) {
  .two-columns {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .setup-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .now-playing {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .hero { padding: 6vh 6vw 0 6vw; }
  .socials { padding: 10vh 6vw; }
  .videos { padding: 10vh 6vw; }
  .setup { padding: 10vh 6vw; }
  .faq { padding: 10vh 6vw; }
  .social-card { padding: 1rem 1.1rem; }
  .social-icon { width: 38px; height: 38px; }
  .social-icon img { width: 20px; height: 20px; }
  .goal { padding: 1rem 1.1rem; }
  .column-title { margin-bottom: 1.8rem; }
  .faq-question { padding: 1rem 1.1rem; }
  .faq-answer p { padding: 0 1.1rem 1.1rem calc(8px + 1.5rem); }
  .videos-grid { gap: 1rem; }
  .video-name { font-size: 0.9rem; }
  .setup-item { padding: 0.8rem 1rem; }
  .now-playing { padding: 1rem; }
  .track-name { font-size: 1.1rem; }
}