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

body,
html {
  height: 100%;
  background: #000;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: white;
}

@keyframes throwFall {
  0% {
    left: -40px;
    bottom: 100vh;
    animation-timing-function: ease-in;
  }

  50% {
    left: 40vw;
    bottom: 80px;
    animation-timing-function: ease-out;
  }

  65% {
    left: 48vw;
    bottom: 120px;
  }

  75% {
    left: 55vw;
    bottom: 80px;
  }

  85% {
    left: 63vw;
    bottom: 100px;
  }

  95% {
    left: 70vw;
    bottom: 80px;
  }

  100% {
    left: 72vw;
    bottom: 80px;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeInContent {
  to {
    opacity: 1;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}

nav .logo {
  font-size: 1.6rem;
  font-weight: bold;
}

nav .menu a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-size: 1rem;
}

/* 🎵 New vibration: beat pulse effect */
.vibrating {
  animation: pulseBeat 0.4s infinite ease-in-out;
}

@keyframes pulseBeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 27ch;
    /* Adjust based on text length */
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

header {
  background-color: #111;
  padding: 20px 40px;
}

.nav-conatiner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.logo img {
  height: 50px;
}

.ham,
aside {
  display: none;
}

.con ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 30px;
}

.con ul li a {
  text-decoration: none;
  color: #00ffff;
  font-weight: 700;
  transition: color 0.3s ease;
}

.con ul li a:hover {
  color: #ff00ff;
}

.btn button {
  padding: 10px 20px;
  background-color: #7c1fff;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn button:hover {
  background-color: #a46bff;
}

.banner {
  width: 100%;
  height: 90vh;

  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.now-playing-section {
  padding: 60px 20px;
  background: linear-gradient(90deg, #0f0f0f, #1a001a);
}

.now-playing-section h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #ff00ff;
}

.now-playing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.now-card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #7c1fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 20px #7c1fff;
  width: 100%;
  max-width: 300px;
}

.album-art img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 12px #00ffff;
}

.track-info {
  text-align: center;
  margin-top: 15px;
}

.track-info h3 {
  font-size: 1rem;
  color: #7c1fff;
}

.track-info h2 {
  font-size: 1.3rem;
  margin: 10px 0 5px;
}

.track-info p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 15px;
}

.equalizer {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.equalizer span {
  width: 6px;
  height: 24px;
  background: #00ffff;
  animation: equalizerBounce 1s infinite ease-in-out;
  border-radius: 4px;
}

.equalizer span:nth-child(1) {
  animation-delay: 0s;
}

.equalizer span:nth-child(2) {
  animation-delay: 0.1s;
}

.equalizer span:nth-child(3) {
  animation-delay: 0.2s;
}

.equalizer span:nth-child(4) {
  animation-delay: 0.3s;
}

.equalizer span:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes equalizerBounce {
  0%,
  100% {
    height: 10px;
  }

  50% {
    height: 30px;
  }
}

.track-info button {
  background: #7c1fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.track-info button:hover {
  background: #a46bff;
}

@media (max-width: 600px) {
  .banner {
    height: 60vh;
  }
}

.equalizer {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  height: 30px;
  /* fixed height to prevent container resizing */
  align-items: flex-end;
  /* align bars at bottom */
}

.equalizer span {
  width: 6px;
  height: 24px;
  /* base height */
  background: #00ffff;
  border-radius: 4px;
  display: inline-block;
  animation: bounce 1s infinite ease-in-out;
  transform-origin: bottom center;
  /* scale from bottom */
}

/* animate scaleY instead of height */
@keyframes bounce {
  0%,
  100% {
    transform: scaleY(0.5);
  }

  50% {
    transform: scaleY(1.5);
  }
}

.now-playing-section {
  padding: 60px 20px;
  background: linear-gradient(90deg, #0f0f0f, #1a001a);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.now-playing-section h1 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #ff00ff;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #ff00ffaa;
}

.now-playing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px 30px;
  width: 100%;
  padding: 0 15px;
  justify-items: center;
}

.now-card {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #7c1fff;
  border-radius: 20px;
  padding: 25px 20px 30px;
  box-shadow: 0 0 30px #7c1fffaa;
  width: 100%;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.now-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px #ff00ffcc, 0 0 30px #7c1fffcc;
}

.album-art img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 18px #00ffffaa;
  transition: box-shadow 0.3s ease;
}

.now-card:hover .album-art img {
  box-shadow: 0 0 25px #ff00ffcc;
}

.track-info {
  text-align: center;
  margin-top: 18px;
}

.track-info h3 {
  font-size: 1.1rem;
  color: #7c1fff;
  letter-spacing: 1px;
}

.track-info h2 {
  font-size: 1.6rem;
  margin: 12px 0 8px;
  font-weight: 700;
  color: #ff77ff;
  text-shadow: 0 0 6px #ff00ffbb;
}

.track-info p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 20px;
}

.equalizer {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
  height: 30px;
  align-items: flex-end;
}

.equalizer span {
  width: 7px;
  height: 24px;
  background: #00ffff;
  border-radius: 5px;
  display: inline-block;
  animation: bounce 1s infinite ease-in-out;
  transform-origin: bottom center;
}

.equalizer span:nth-child(1) {
  animation-delay: 0s;
}

.equalizer span:nth-child(2) {
  animation-delay: 0.1s;
}

.equalizer span:nth-child(3) {
  animation-delay: 0.2s;
}

.equalizer span:nth-child(4) {
  animation-delay: 0.3s;
}

.equalizer span:nth-child(5) {
  animation-delay: 0.4s;
}

.track-info button {
  background: #7c1fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.track-info button:hover {
  background: #a46bff;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .now-card {
    max-width: 100%;
  }

  .now-playing-section h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.dj-spotlight {
  background: linear-gradient(135deg, #1a001a, #330033);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 1100px;
  margin: 60px auto 80px;

  color: #f0e6ff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

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

.dj-photo {
  flex: 1 1 320px;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;

  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.dj-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 0 8px #ff00ffcc);
}

.dj-photo:hover {
  box-shadow: 0 0 35px #ff00ffdd;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.dj-info {
  flex: 1 1 450px;
  max-width: 600px;
  padding: 10px 0;
}

.dj-info h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ff77ff;
  text-shadow: 0 0 10px #ff00ffdd;
}

.dj-info p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e6d9ffcc;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social-links a {
  color: #ff77ff;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

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

.btn-listen {
  background: #ff00ff;
  color: white;
  border: none;
  padding: 14px 38px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 20px #ff00ffbb;
  transition: background-color 0.3s ease;
}

.btn-listen:hover {
  background-color: #ff77ff;
  box-shadow: 0 0 35px #ff77ffdd;
}

/* Responsive */
@media (max-width: 900px) {
  .spotlight-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dj-info {
    max-width: 100%;
  }

  .dj-photo {
    max-width: 80vw;
  }
}

.featured-artist {
  background: linear-gradient(90deg, #1a001a, #330033);
  padding: 60px 20px;
  color: #eee;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 20px;
  box-shadow: 0 0 30px #7c1fff88;
}

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

.artist-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 20px #7c1fff;
  object-fit: cover;
}

.artist-info {
  max-width: 600px;
}

.artist-info h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ff00ff;
}

.artist-info p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

.social-links a {
  margin-right: 20px;
  text-decoration: none;
  font-weight: 700;
  color: #00ffff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .artist-container {
    flex-direction: column;
    text-align: center;
  }

  .artist-info {
    max-width: 100%;
  }
}

.events-timeline {
  padding: 60px 20px;
  background: linear-gradient(90deg, #0f0f0f, #1a001a);
  color: white;
  text-align: center;
}

.events-timeline h2 {
  font-size: 2.5rem;
  color: #ff00ff;
  margin-bottom: 40px;
}

.timeline-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.event {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #7c1fff;
  border-radius: 20px;
  padding: 30px;
  min-width: 220px;
  flex-shrink: 0;
  scroll-snap-align: center;
  box-shadow: 0 0 20px #7c1fff55;
  transition: transform 0.3s ease;
}

.event:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00ffff88;
}

.event-date {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00ffff;
  margin-bottom: 12px;
}

.event-info h3 {
  font-size: 1.2rem;
  color: #ff00ff;
  margin-bottom: 5px;
}

.event-info p {
  font-size: 1rem;
  color: #ccc;
}

.timeline-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  justify-content: center;
}

@media (max-width: 768px) {
  .timeline-wrapper {
    gap: 20px;
  }

  .event {
    min-width: 180px;
    padding: 20px;
  }
}

@media (max-width: 520px) {
  form {
    display: flex;
  }
  .banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .events-timeline {
    padding: 40px 15px;
  }

  .events-timeline h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .timeline-wrapper {
    gap: 16px;
    padding: 10px 0;
  }

  .event {
    min-width: 160px;
    padding: 16px;
    border-radius: 14px;
  }

  .event-date {
    font-size: 1.1rem;
  }

  .event-info h3 {
    font-size: 1rem;
  }

  .event-info p {
    font-size: 0.9rem;
  }

  .timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px 0;
  }

  .dj-spotlight {
    background: linear-gradient(135deg, #1a001a, #330033);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 1100px;
    margin: 60px auto 80px;

    color: #f0e6ff;
    margin: 50px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }

  .featured-artist {
    background: linear-gradient(90deg, #1a001a, #330033);
    padding: 60px 20px;
    color: #eee;
    max-width: 1200px;
    margin: 60px auto;
    border-radius: 20px;
    box-shadow: 0 0 30px #7c1fff88;
    margin: 50px;
  }
}

/* ===== 3‑D CAROUSEL STYLES ===== */
.artist-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 80px auto;
  perspective: 1200px;
}

.carousel-track {
  width: 100%;
  height: 380px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  --radius: 420px;
  /* distance from centre */
  --step: calc(360deg / 4);
  /* 4 slides – auto‑updated in JS */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  transform: rotateY(calc(var(--i) * var(--step))) translateZ(var(--radius));
  text-align: center;
  color: #fff;
  pointer-events: none;
  /* allow clicks on arrows */
}

.slide img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 25px #00ffff88;
  margin-bottom: 16px;
}

.slide h3 {
  font-size: 1.4rem;
  color: #ff77ff;
}

.slide p {
  font-style: italic;
  color: #ccc;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  color: #00ffff;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 8px 14px;
  transition: color 0.3s;
}

.nav:hover {
  color: #ff00ff;
}

.prev {
  left: -50px;
}

.next {
  right: -50px;
}

/* ===== Small‑screen fallback (≤520 px) ===== */
@media (max-width: 520px) {
  .artist-carousel {
    perspective: none;
    margin: 40px 0;
    overflow: hidden;
    padding: 0 15px;
  }

  .carousel-track {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    height: auto;
    transform: none !important;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scroll-behavior: smooth;
  }

  .slide {
    position: static;
    transform: none !important;
    pointer-events: auto;
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px 10px;
    box-shadow: 0 0 18px #7c1fff66;
  }

  .slide img {
    width: 140px;
    height: 140px;
  }

  .nav {
    display: none;
  }
}

/* hide arrows – use swipe */

/* Footer */
.dj-footer {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #fff;
  padding: 50px 20px 20px;
  position: relative;
  font-family: "Arial", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 40px;
}

.dj-footer h2 {
  font-size: 1.5em;
  color: #ff0055;
  text-shadow: none;
  margin-bottom: 15px;
}

.footer-sec ul {
  list-style: none;
  padding: 0;
}

.footer-sec ul li {
  margin-bottom: 10px;
}

.footer-sec ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-sec ul li a:hover {
  color: #ff0055;
}

.social-icons a {
  color: #fff;
  font-size: 1.5em;
  margin-right: 15px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ff0055;
  transform: scale(1.2);
}

.new-letter input[type="email"] {
  padding: 10px;
  width: 70%;
  border: none;
  border-radius: 20px 0 0 20px;
  outline: none;
}

.new-letter button {
  padding: 10px 20px;
  background-color: #ff0055;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 0 20px 20px 0;
  transition: 0.3s ease;
}

.new-letter button:hover {
  background-color: #e6004c;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #444;
  font-size: 14px;
}

@media (max-width: 520px) {
  .con,
  .btn {
    display: none;
  }

  .ham {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
  }

  aside {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: black;
    transition: right 0.3s ease;
    z-index: 998;
    padding-top: 60px;
  }

  aside.active {
    right: 0;
  }

  aside ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }

  aside ul li {
    margin: 20px 0;
  }

  aside ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #444;
    font-size: 14px;
    margin-top: 22px;
  }
}
@media (max-width: 820px) {
  form {
    display: flex;
  }
  .btn #buy {
    display: none;
  }
  .con ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
  }
  .banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .timeline-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    justify-content: center;
    flex-direction: column;
  }
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 14px;
    margin-top: 29px;
  }
  .dj-footer h2 {
    /* font-size: 1.5em; */
    color: #ff0055;
    text-shadow: none;
    margin-bottom: 8px;
    font-size: 26px;
  }
  .beats {
    font-size: 21px;
  }
  .footer-sec ul li {
    font-size: 23px;
  }
}
body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
