:root {
  --font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --primary: #ffffff;
  --gray-15: #999999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  font-family: var(--font-family);
  color: var(--primary);
  overflow-x: hidden;
  padding-left: 80px;
  padding-right: 80px;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 12px 80px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 94px;
  align-items: center;
}

.nav-links a {
  position: relative;
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #521EFC 0%,
    #A740FD 35%,
    #FD62FE 65%,
    #521EFC 100%
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.logo {
  cursor: pointer;
}

.logo:hover svg {
  filter: brightness(0.8) grayscale(20%);
  transition: filter 0.3s ease;
}

.logo-link {
  text-decoration: none;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.burger {
  display: none;
  width: 32px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.burger-label {
  display: none;
}

.burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #DCDCDC;
  border-radius: 1px;
}

.nav-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.97);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}

#nav-toggle:checked ~ .nav-overlay {
  transform: translateX(0);
  visibility: visible;
}


#nav-toggle:checked ~ .nav-overlay {
  transform: translateX(0);
  visibility: visible;
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}

.overlay-logo {
  display: flex;
  align-items: center;
}

.overlay-logo img,
.mobile-logo img {
  width: 43px;
  height: 40px;
}

.mobile-logo {
  display: none;
  align-items: center;
}

.overlay-close {
  color: #DCDCDC;
  font-size: 32px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  margin-top: 80px;
}

.overlay-links label {
  cursor: pointer;
}

.overlay-links a {
  color: #DCDCDC;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding: 4px 0;
  transition: color 0.3s ease, background 0.3s ease;
}

.overlay-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #521EFC 0%,
    #A740FD 35%,
    #FD62FE 65%,
    #521EFC 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.overlay-links a:hover,
.overlay-links a:focus-visible,
.overlay-links a:active {
  background: linear-gradient(
    90deg,
    #521EFC 0%,
    #A740FD 35%,
    #FD62FE 65%,
    #521EFC 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overlay-links a:hover::after,
.overlay-links a:focus-visible::after,
.overlay-links a:active::after {
  transform: scaleX(1);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 125px;
  min-height: 100vh;
  width: 100%;
}

/* ==========================================================================
   EQ VISUALIZER
   ========================================================================== */

.eq-wrapper {
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eq-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 30%, #1C1C1D 0%, #000000 60%, #1B1920 100%);
  position: relative;
  overflow: hidden;
}

.glass-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 20%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 10;
}

#eqCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* ==========================================================================
   PLAY BUTTON
   ========================================================================== */

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes snakeBorder {
  to { --angle: 360deg; }
}

.play-btn {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 25px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  background: rgba(0, 180, 220, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #ececec;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;

  overflow: visible;
  isolation: isolate;
  transition: background 0.8s, border-color 0.8s;
}

.play-btn:hover {
  background: rgba(0, 200, 255, 0.13);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.18);
  transform: translateX(-50%);
}

.play-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 27px;
  padding: 2px;
  background: conic-gradient(
    from var(--angle),
    transparent        0deg,
    transparent      300deg,
    rgba(120, 0, 180, 0.2)  315deg,
    #A740FD 325deg,
    rgba(210, 80,  255, 1)  332deg,
    #FD62FE  336deg,
    #521EFC  338deg,
    rgba(240, 160, 255, 1)  340deg,
    rgba(210, 80,  255, 1)  344deg,
    rgba(180, 20, 240, 0.7) 350deg,
    #521EFC 357deg,
    transparent      360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: snakeBorder 2.6s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.play-btn > * {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   HERO TITLE CANVAS
   ========================================================================== */

.hero-title-canvas {
  margin: 64px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-title-canvas canvas {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   SOCIAL SIDEBAR
   ========================================================================== */

.social-sidebar {
  position: fixed;
  left: 16px;
  top: auto;
  bottom: max(20px, calc((100vh - 100%) / 2));
  transform: none;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
}

.social-sidebar a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 240, 240, 0.55);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.social-sidebar a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.social-sidebar a svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   SCROLL REVEAL SECTION
   ========================================================================== */

.scroll-reveal-section {
  position: relative;
  min-height: 200vh;
  background-color: #000;
  overflow: hidden;
}

.scroll-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.big-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  background: rgba(220, 220, 220, 0.02);
  border-radius: 50%;
  padding: 60px;
  border: 1px solid rgba(220, 220, 220, 0.06);
  box-shadow:
    0 4px 15px 0 rgba(220, 220, 220, 0.04),
    inset 0 0 20px rgba(255, 255, 255, 0.015);
  will-change: transform, opacity;
}

.big-logo.visible {
  opacity: 1;
}

.big-logo svg {
  width: 400px;
  height: 400px;
  filter:
    drop-shadow(0 0 15px rgba(220, 220, 220, 0.15))
    drop-shadow(0 0 30px rgba(220, 220, 220, 0.08));
}

.big-logo svg rect,
.big-logo svg path {
  fill: #DCDCDC;
  filter: brightness(1.08);
}

.about-reveal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  z-index: 10;
  max-width: 800px;
  padding: 40px;
  transition: opacity 0.15s linear;
  pointer-events: none;
  will-change: transform, opacity;
}

.about-reveal.visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal-title {
  font-weight: 600;
  font-size: clamp(48px, 8vw, 72px);
  line-height: 120%;
  color: var(--primary);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.reveal-content {
  background: rgba(13, 13, 13, 0.92);
  border-radius: 20px;
  padding: 60px 40px;
  border: 1px solid rgba(220, 220, 220, 0.08);
}

.reveal-text {
  font-weight: 300;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 150%;
  color: #DCDCDC;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reveal-btn {
  display: inline-block;
  padding: 16px 48px;
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.reveal-btn:hover {
  background-color: #DCDCDC;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   YOUTUBE SECTION
   ========================================================================== */

.youtube-section {
  background-color: #000000;
  padding: 64px 80px;
  margin-top: 64px;
  margin-bottom: 232px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.youtube-heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 72px;
  line-height: 120%;
  text-align: center;
  color: var(--primary);
  margin-bottom: 64px;
  grid-column: 1 / -1;
}

.youtube-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(70, 70, 70, 0.3);
  border: 1px solid rgba(13, 11, 110, 0.2);
  transition: all 0.3s ease;
}

.youtube-player:hover {
  background: rgba(13, 11, 110, 0.15);
  border: 1px solid rgba(13, 11, 110, 0.4);
  box-shadow: 0 0 30px rgba(13, 11, 110, 0.3);
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  pointer-events: auto;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
  background-color: #000000;
  padding: 80px 0;
}

.section-heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 72px;
  line-height: 120%;
  text-align: center;
  color: var(--primary);
  margin-bottom: 64px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
  max-width: 1920px;
  margin: 0 auto;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(20px);
  padding: 80px;
  border-radius: 12px;
}

.about-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 880px;
  height: 631px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.about-image img:hover {
  filter: grayscale(0%);
}

.about-text {
  flex: 0 0 auto;
  max-width: 480px;
  min-width: 0;
  padding-left: 0;
}

.about-title {
  font-family: var(--font-family);
  font-weight: 480;
  font-size: 48px;
  line-height: 120%;
  color: var(--primary);
  margin-bottom: 40px;
}

.about-description {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 135%;
  color: #DCDCDC;
  margin-bottom: 56px;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 3px solid transparent;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-more-btn:hover {
  background-color: #DCDCDC;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   MUSIC SECTION
   ========================================================================== */

.music-section {
  background-color: #000000;
  margin-top: 232px;
}

.music-heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 72px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 64px;
}

.music-player-block {
  max-width: 1920px;
  margin: 0 auto;
  background: rgba(13, 13, 13, 0.8);
  padding: 64px 64px;
  border-radius: 12px;
}

.spotify-player {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.spotify-player iframe {
  width: 100%;
  height: 352px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   SOUNDCLOUD SECTION
   ========================================================================== */

.soundcloud-section {
  background-color: #000000;
  margin-top: 232px;
}

.soundcloud-heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 72px;
  line-height: 120%;
  text-align: center;
  color: var(--primary);
  margin-bottom: 64px;
  padding: 0 80px;
}

.soundcloud-player-block {
  max-width: 1920px;
  margin: 0 auto;
  background: rgba(13, 13, 13, 0.8);
  padding: 64px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-radius: 12px;
}

.soundcloud-player h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: var(--primary);
  margin-bottom: 16px;
}

.soundcloud-player iframe {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   SERVICE SECTION
   ========================================================================== */

.service-section {
  background-color: #000000;
  margin-top: 232px;
}

.service-heading {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 72px;
  line-height: 120%;
  text-align: center;
  color: var(--primary);
  padding: 64px 80px;
  margin: 0;
}

.service-hero {
  position: relative;
  height: 810px;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('images/DJ_studio.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.animated-text-container {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.animated-text-line {
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 -1px 0 rgba(255, 255, 255, 0.20);
  padding: 8px 0;
}

.animated-text-line.second-line {
  margin-bottom: 0;
}

  .moving-text {
    display: inline-block;
    white-space: nowrap;
    font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    font-size: 120px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke: 0px;
    text-shadow:
      0 0 0 rgba(207, 211, 221, 0.6),
      1px 0 0 rgba(207, 211, 221, 0.6),
      -1px 0 0 rgba(207, 211, 221, 0.6),
      0 1px 0 rgba(207, 211, 221, 0.6),
      0 -1px 0 rgba(207, 211, 221, 0.6),
      0 0 25px rgba(220, 235, 255, 0.35),
      0 0 60px rgba(160, 200, 255, 0.12);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

.moving-text .marquee-segment {
  display: inline-block;
}

.service-tickets-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 56px 0;
  background-color: #000000;
}

.tickets-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 417px;
  height: 59px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  color: #000000;
  font-family: 'SF UI Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.tickets-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.tickets-btn:hover::before {
  left: 100%;
}

.tickets-btn:hover {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
}

.tickets-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* ==========================================================================
   FOOTER MODERN
   ========================================================================== */

.footer-modern {
  background-color: #000000;
  color: #ffffff;
  font-family: 'SF UI Display', -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  width: 100%;
  padding: 60px 80px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 232px;
  position: relative;
  z-index: 9999;
}

.footer-social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10000;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 191px;
  height: 48px;
  padding: 0;
  background-color: #121212;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  background-color: #1f1f1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.social-btn:active {
  transform: translateY(-1px);
}

.social-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.social-btn:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}

.social-btn span {
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
  color: #ffffff;
}

.footer-content-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 80px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.contact-block h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-block a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.contact-block a:hover {
  color: #ffffff;
}

.footer-nav-modern {
  display: flex;
  gap: 80px;
  margin-top: 188px;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-column a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-column a:hover {
  color: #dcdcdc;
}

.footer-copyright-modern {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  font-weight: 400;
  padding-top: 32px;
  color: rgba(179, 179, 179, 0.93);
}

/* ==========================================================================
   RESPONSIVE — 1680px
   ========================================================================== */

@media (max-width: 1680px) {
  .about-container {
    padding: 70px 70px;
    gap: 48px;
  }
  .about-image img {
    max-width: 750px;
  }
}

/* ==========================================================================
   RESPONSIVE — 1440px
   ========================================================================== */

@media (max-width: 1440px) {
  .about-container {
    padding: 60px;
    gap: 40px;
  }
  .about-image img {
    max-width: 560px;
    height: auto;
  }
  .about-text {
    max-width: 520px;
  }
  .about-title {
    font-size: 40px;
    margin-bottom: 28px;
  }
  .section-heading {
    font-size: 60px;
    margin-bottom: 50px;
  }
}

/* ==========================================================================
   RESPONSIVE — 1280px
   ========================================================================== */

@media (max-width: 1280px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 40px;
    gap: 32px;
  }
  .about-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .about-text {
    max-width: 700px;
    padding: 0;
  }
  .about-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .about-description {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .section-heading {
    font-size: 52px;
  }
}

/* ==========================================================================
   RESPONSIVE — 1200px
   ========================================================================== */

@media (max-width: 1200px) {
  .service-hero    { height: 700px; }
  .service-heading { font-size: 64px; padding: 50px 60px; }
  .moving-text     { font-size: 90px; }

  .about-image img {
    max-width: 480px;
    height: auto;
  }
  .big-logo svg {
    width: 300px;
    height: 300px;
  }
  .spotify-player {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .soundcloud-player-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 50px 50px;
  }
  .soundcloud-heading {
    font-size: 64px;
    margin-bottom: 50px;
    padding: 0 60px;
  }
  .soundcloud-player h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .tickets-btn {
    width: 350px;
    height: 55px;
    font-size: 15px;
  }
}

/* ==========================================================================
   RESPONSIVE — 1024px
   ========================================================================== */

@media (max-width: 1024px) {
  body {
    padding-left: 40px;
    padding-right: 40px;
  }
  .navbar {
    padding: 12px 40px;
  }
  .hero-graphic img {
    width: 350px;
  }
  .youtube-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 40px;
    margin-top: 32px;
    margin-bottom: 232px;
  }
  .youtube-heading {
    font-size: 48px;
    margin-bottom: 40px;
  }
  .about-section {
    padding: 16px;
    margin-top: 16px;
  }
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    padding: 40px 24px;
  }
  .about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .about-text {
    max-width: 100%;
    padding: 0;
  }
  .about-title {
    font-size: 32px;
    margin-bottom: 16px;
    padding-bottom: 0;
  }
  .about-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 0;
  }
  .learn-more-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
  .music-section {
    padding: 80px 40px;
    margin-top: 40px;
  }
  .music-heading {
    font-size: 56px;
  }
  .soundcloud-section {
    padding: 60px 40px;
    margin-top: 40px;
  }
  .big-logo svg {
    width: 250px;
    height: 250px;
  }
  .footer-modern {
    padding: 60px 40px 40px;
    gap: 50px;
  }
  .footer-content-modern {
    gap: 60px;
  }
  .footer-nav-modern {
    gap: 60px;
  }
}

/* ==========================================================================
   RESPONSIVE — 768px
   ========================================================================== */

@media (max-width: 768px) {
  body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar {
    padding: 0 0px;
    height: 70px;
  }
  .nav-links {
    display: none;
  }
  .mobile-logo {
    display: flex;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .burger-label {
    display: flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  #nav-toggle:checked ~ .nav-overlay {
    display: flex;
    transform: translateX(0);
  }
  .overlay-header {
    display: flex;
  }
  .overlay-logo {
    display: flex;
  }
  .overlay-close {
    display: flex;
  }
  .overlay-links {
    gap: 40px;
  }
  .overlay-links a {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: #DCDCDC;
  }
  .nav-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 16px;
  }

  /* SOCIAL SIDEBAR — 768px (з першого коду) */
  .social-sidebar {
    top: 83%;
    bottom: auto;
    transform: translateY(-50%);
    left: 16px;
  }
  .social-sidebar a {
    width: 32px;
    height: 32px;
  }
  .social-sidebar a svg {
    width: 16px;
    height: 16px;
  }

  .hero-graphic img {
    width: 250px;
  }
  .youtube-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
    margin-top: 24px;
    margin-bottom: 40px;
  }
  .youtube-heading {
    font-size: 48px;
    margin-bottom: 48px;
  }
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    gap: 24px;
  }
  .about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  .about-text {
    max-width: 100%;
    padding: 0;
  }
  .section-heading {
    font-size: 48px;
  }
  .about-title {
    font-size: 32px;
  }
  .about-description {
    font-size: 16px;
  }
  .music-section {
    padding: 60px 40px;
    margin-top: 40px;
  }
  .music-heading {
    font-size: 48px;
    margin-bottom: 48px;
  }
  .music-player-block {
    padding: 32px 24px;
  }
  .spotify-player {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .spotify-player iframe {
    height: 260px;
  }
  .soundcloud-section {
    padding: 40px 24px;
    margin-top: 40px;
  }
  .soundcloud-heading {
    font-size: 48px;
    margin-bottom: 32px;
    padding: 0 40px;
  }
  .soundcloud-player-block {
    padding: 32px 40px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .soundcloud-player h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .soundcloud-player iframe {
    height: 220px;
  }
  .service-hero       { height: 600px; }
  .service-heading    { font-size: 48px; padding: 40px; }
  .moving-text        { font-size: 60px; letter-spacing: 2px; }
  .animated-text-line { margin-bottom: 60px; }
  .tickets-btn        { width: 300px; height: 50px; font-size: 14px; }
  .service-tickets-section {
    padding: 40px 20px;
  }
  .reveal-content {
    padding: 40px 20px;
  }
  .about-reveal {
    width: calc(100% - 24px);
    max-width: none;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px 16px;
    border-radius: 18px;
  }
  .reveal-text {
    max-width: 100%;
    margin: 0 auto 32px;
  }
  .reveal-btn {
    width: 100%;
    padding: 14px 18px;
    box-sizing: border-box;
  }
  .big-logo svg {
    width: 200px;
    height: 200px;
  }
  .footer-modern {
    padding: 50px 20px 32px;
    gap: 40px;
    margin-top: 120px;
  }
  .social-btn {
    width: 150px;
    height: 42px;
    font-size: 14px;
    gap: 8px;
  }
  .social-btn img {
    width: 18px;
    height: 18px;
  }
  .social-btn svg {
    width: 18px;
    height: 18px;
  }
  .footer-content-modern {
    flex-direction: column;
    gap: 40px;
  }
  .footer-contacts {
    gap: 24px;
  }
  .footer-nav-modern {
    gap: 40px;
    justify-content: center;
    margin-top: 0;
  }
  .nav-column {
    text-align: center;
  }
  .footer-copyright-modern {
    padding-top: 24px;
  }
}

/* ==========================================================================
   RESPONSIVE — 600px
   ========================================================================== */

@media (max-width: 600px) {
  .youtube-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px;
    margin-top: 20px;
    margin-bottom: 232px;
  }
  .youtube-heading {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .youtube-player {
    border-radius: 8px;
  }
  .youtube-player iframe {
    border-radius: 8px;
  }
}

/* ==========================================================================
   RESPONSIVE — 480px
   ========================================================================== */

@media (max-width: 480px) {
  body {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* SOCIAL SIDEBAR — 480px (з першого коду) */
  .social-sidebar {
    top: 70%;
    bottom: auto;
    transform: translateY(-50%);
    left: 16px;
  }
  .social-sidebar {
    left: 8px;
    padding: 4px;
    gap: 8px;
  }
  .social-sidebar a {
    width: 32px;
    height: 32px;
  }

  .service-hero       { height: 500px; }
  .service-heading    { font-size: 28px; padding: 32px 20px; }
  .moving-text        { font-size: 40px; letter-spacing: 1px; }
  .animated-text-line { margin-bottom: 40px; }
  .tickets-btn        { width: 250px; height: 45px; font-size: 13px; }

  .hero-graphic img {
    width: 180px;
  }
  .youtube-heading {
    font-size: 28px;
    line-height: 120%;
  }
  .youtube-section {
    padding: 16px 0;
  }
  .youtube-player {
    width: calc(100% + 24px);
    margin: 0 -12px;
    padding-bottom: 56.25%;
  }
  .youtube-player iframe {
    height: 100%;
  }
  .about-section {
    padding: 40px 0;
  }
  .about-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 24px 16px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-image,
  .about-text {
    width: 100%;
  }
  .about-image {
    display: block;
  }
  .section-heading {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 40px;
    padding: 0;
  }
  .about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .about-text {
    margin: 0;
    width: 100%;
  }
  .about-title {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 24px;
  }
  .about-description {
    font-size: 16px;
    line-height: 135%;
  }
  .learn-more-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .music-section {
    padding: 40px 0;
    margin-top: 40px;
  }
  .music-player-block {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 8px;
    border-radius: 12px;
  }
  .spotify-player {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .spotify-player iframe {
    height: 220px;
  }
  .music-heading {
    font-size: 28px;
    line-height: 120%;
  }
  .soundcloud-heading {
    font-size: 26px;
    line-height: 120%;
    margin-bottom: 32px;
    padding: 0 16px;
    width: calc(100% - 32px);
    max-width: none;
  }
  .soundcloud-section {
    padding: 16px 0;
    margin-top: 20px;
  }
  .soundcloud-player-block {
    width: calc(100% + 24px);
    max-width: none;
    margin: 0 -12px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .soundcloud-player h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .soundcloud-player iframe {
    height: 200px;
  }
  .big-logo svg {
    width: 150px;
    height: 150px;
  }
  .footer-modern {
    padding: 40px 20px 24px;
    gap: 32px;
    margin-top: 80px;
  }
  .footer-social-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    justify-items: center;
    align-items: center;
  }
  .social-btn {
    width: 100%;
    min-width: 0;
    height: 36px;
    max-width: 220px;
    padding: 0;
    font-size: 12px;
    border-radius: 10px;
    gap: 6px;
    justify-content: center;
    color: #ffffff;
  }
  .social-btn img {
    width: 16px;
    height: 16px;
  }
  .social-btn svg {
    width: 16px;
    height: 16px;
  }
  .social-btn span {
    font-size: 11px;
  }
  .footer-contacts {
    gap: 20px;
  }
  .contact-block h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .contact-block a {
    font-size: 12px;
  }
  .footer-nav-modern {
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 0;
  }
  .nav-column {
    gap: 12px;
  }
  .nav-column a {
    font-size: 12px;
  }
  .footer-copyright-modern {
    font-size: 12px;
    padding-top: 20px;
  }
}

/* ==========================================================================
   RESPONSIVE — 360px
   ========================================================================== */

@media (max-width: 360px) {
  .tickets-btn {
    width: 200px;
    height: 40px;
    font-size: 12px;
  }
}

/* ==========================================================================
   RESPONSIVE — 320px
   ========================================================================== */

@media (max-width: 320px) {
  .service-hero { height: 450px; }
  .moving-text  { font-size: 28px; }
  .tickets-btn  { width: 200px; height: 40px; font-size: 12px; }

  /* SOCIAL SIDEBAR — 320px (з першого коду) */
  .social-sidebar {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    left: 16px;
  }
  .social-sidebar {
    left: 8px;
    padding: 4px;
    gap: 8px;
  }
  .social-sidebar a {
    width: 32px;
    height: 32px;
  }

  .music-section {
    padding: 40px;
    margin-top: 40px;
  }
  .music-player-block {
    padding: 40px;
  }
  .spotify-player {
    gap: 40px;
  }
  .spotify-player iframe {
    height: 200px;
  }
  .soundcloud-heading {
    font-size: 24px;
    margin-bottom: 32px;
    padding: 0 12px;
  }
  .soundcloud-section {
    padding: 16px;
    margin-top: 20px;
  }
  .soundcloud-player-block {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .soundcloud-player h3 {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .soundcloud-player iframe {
    height: 180px;
  }
  .service-tickets-section {
    padding: 24px 10px;
  }
}
