/*  {
 
}



/* Navbar */

body {
  background: rgb(22, 21, 21);
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

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;
}

.bit #buy {
  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;
}

/* Video Banner */
.banner-vd {
  width: 100%;

  overflow: hidden;
}

.banner-vd video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Progress Section */
.progress-section {
  max-width: 700px;
  margin: 100px auto 0;
}

.progress-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #00ffea;

  margin-bottom: 25px;
}

.skill-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
  text-shadow: 0 0 10px #0ff;
  color: #00ffe1;
}

.progress {
  height: 20px;
  background-color: #1a1a1a;
  border-radius: 50px;
  box-shadow: 0 0 10px #111;
  margin-bottom: 25px;
}

.progress-bar {
  background: linear-gradient(90deg, #00ffff, #ff00ff, #ff9900);
  background-size: 200% 100%;
  animation: barMove 3s linear infinite;
  border-radius: 50px;
  transition: width 1s ease-in-out;
}

@keyframes barMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Carousel */
.carousel-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-shadow: 0 0 15px #ff00ff;
  color: #ffe600;
  text-align: center;
}

.custom-carousel .item {
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
  opacity: 0.6;
  filter: blur(1px);
  padding: 10px;
}

.custom-carousel .owl-item.center .item {
  transform: scale(1.05);
  opacity: 1;
  filter: none;
  box-shadow: 0 0 30px #0ff, 0 0 60px #ff00ff66;
  border-radius: 20px;
  overflow: hidden;
}

.custom-carousel .item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
}

/* Audio Player */
.audio-player {
  background: #1a1a1a;
  border: 2px solid #00ffff;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px #00ffffaa;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px auto 20px;
  width: 50%;
}

.play-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #ff00ff;
  background: none;
  border-radius: 50%;
  color: #ff00ff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 15px #ff00ff99;
  transition: background 0.3s;
}

.play-btn:hover {
  background: #ff00ff33;
}

.wave {
  display: flex;
  gap: 3px;
  height: 40px;
}

.bar {
  width: 4px;
  background: #00ffff;
  border-radius: 2px;
  animation: bounce 1s infinite ease-in-out;
}

.bar:nth-child(2) {
  animation-delay: 0.2s;
}

.bar:nth-child(3) {
  animation-delay: 0.4s;
}

.bar:nth-child(4) {
  animation-delay: 0.6s;
}

.bar:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes bounce {
  0%,
  100% {
    height: 10px;
  }
  50% {
    height: 40px;
  }
}

.wave.paused .bar {
  animation-play-state: paused;
}

audio {
  display: none;
}

/* Round DJ Image Section */
.fifth {
  padding: 80px 20px;
}

.parent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.round {
  text-align: center;
}

.design {
  height: 320px;
  width: 320px;
  background: radial-gradient(circle at center, #222, #000);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 0, 128, 0.5), 0 0 60px rgba(0, 255, 255, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.design:hover {
  transform: scale(1.05);
}

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

.round .f {
  margin-top: 15px;
  font-size: 20px;
  color: #ff00cc;
  font-weight: 600;
  text-shadow: 0 0 5px #ff00cc55;
}

/* Countdown Section */
.countdown {
  background-color: #121212;
  padding: 60px 20px;
  text-align: center;
  color: #e0e0e0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-top: 60px;
}

.countdown h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  color: #00d1d1;
  text-shadow: none;
}

#timer {
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: none;
}

#timer span {
  font-weight: 600;
  font-size: 1.9rem;
  color: #00d1d1;
  animation: none;
}

/* Glowing animation */
@keyframes pulse-glow {
  from {
    text-shadow: 0 0 5px #ff00ff, 0 0 15px #00ffff;
  }
  to {
    text-shadow: 0 0 15px #ff00ff, 0 0 35px #00ffff;
  }
}
.ti {
  margin-bottom: 50px;
}

.discography-section h2 {
  font-family: "Orbitron", sans-serif;
  color: #00ffea;
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.flip-card {
  background: transparent;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: 0 0 15px rgba(0, 255, 234, 0.5);
  border-radius: 15px;
  cursor: pointer;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 320px;
  border-radius: 15px;
  backface-visibility: hidden;
  overflow: hidden;
}

.flip-card-front {
  background: #111;
  color: #00ffea;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.flip-card-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px #00ffea;
}

.flip-card-front h3 {
  margin: 0.3rem 0 0;
  font-weight: 700;
  font-size: 1.3rem;
}

.flip-card-front p {
  margin: 0.2rem 0 0;
  font-style: italic;
  color: #00bfae;
}

.flip-card-back {
  background: linear-gradient(135deg, #00ffea, #006064);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.play-track {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #00ffea;
  color: #00ffea;
  font-size: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.play-track:hover {
  background: #00ffea;
  color: #00332a;
  border-color: #00ffea;
}

.spotify-link {
  font-size: 2rem;
  color: #1db954;
  transition: color 0.3s ease;
}

.spotify-link:hover {
  color: #1ed760;
}

/* 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;
  margin-top: 17px;
}
.ham {
  display: none;
}
.btn {
  display: block;
}
@media (max-width: 820px) {
  .bit #buy {
    display: none;
  }
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .dj-footer h2 {
    /* font-size: 1.5em; */
    color: #ff0055;
    text-shadow: none;
    margin-bottom: 15px;
    font-size: 25px;
  }
  .beats {
    font-size: 21px;
  }
  .footer-sec ul li {
    font-size: 23px;
  }
  .footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #444;
    font-size: 14px;
    margin-top: 28px;
  }
}

@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;
  }
  .bit button {
    display: none;
  }

  /* next podcast */
  .ply {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }

  .podcast-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-bottom: 40px;
  }

  .podcast-card {
    width: 100%;
    padding: 20px;
  }

  .right-content {
    width: 100%;
    padding: 0 10px;
  }

  .right-content h1 {
    font-size: 32px;
  }

  .right-content h3 {
    font-size: 16px;
  }

  .right-content p {
    font-size: 14px;
  }

  .event-card {
    width: 200px;
    background: #10073e;
    /* padding: 30px 20px; */
    border-left: 10px solid transparent;
    border-radius: 6px;
    text-align: left;
    /* position: relative; */
  }

  body,
  html {
    overflow-x: hidden;
  }

  header {
    padding: 15px 20px;
    text-align: center;
  }

  .nav-conatiner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .logo img {
    height: 40px;
  }

  .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;
  }

  .banner-vd {
    
  }
  form{
    display:flex;
  }

  .progress-section {
    margin: 50px 15px;
  }

  .carousel-title {
    font-size: 1.8rem;
    margin: 20px 0;
  }

  .custom-carousel .item img {
    height: 250px;
  }

  .audio-player {
    width: 90%;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 15px;
    text-align: center;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .wave {
    justify-content: center;
  }
  .fifth .parent {
    flex-direction: column;
    gap: 40px;
  }

  .design {
    width: 240px;
    height: 240px;
  }

  .countdown h2 {
    font-size: 1.5rem;
  }

  #timer {
    font-size: 1.3rem;
    gap: 10px;
  }

  .discography-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 15px;
  }

  .flip-card-inner,
  .flip-card-front,
  .flip-card-back {
    height: 280px;
  }

  .wave {
    display: flex;
    gap: 3px;
    height: 40px;
    width: 100%;
  }

  .bar {
    background: #00ffff;
    border-radius: 2px;
    animation: bounce 1s infinite ease-in-out;
  }
  .wave {
    display: flex;
    gap: 3px;
    height: 40px;
    width: 100%;
  }
  /* Mobile-friendly Discography section */
  .discography-section {
    padding: 40px 15px;
    background: #111;
  }

  .discography-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: #e0e0e0;
    text-shadow: none;
  }

  .discography-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .flip-card {
    perspective: none;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #000;
  }

  .flip-card-inner {
    transform: none !important;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .flip-card-front,
  .flip-card-back {
    position: static;
    height: auto;
    backface-visibility: visible;
    padding: 15px;
  }

  .flip-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    color: #ccc;
    box-shadow: none;
  }

  .flip-card-front img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .flip-card-front h3 {
    font-size: 1.2rem;
    margin: 5px 0;
  }

  .flip-card-front p {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
  }

  .flip-card-back {
    display: none;
  }
}
