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

.nav-conatiner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #0f001f, #1a0033);
  padding: 20px 30px;
}

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

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

.banner {
  background: linear-gradient(135deg, #0f001f, #1a0033);
  font-family: "Montserrat", sans-serif;
  color: white;
}

.banner {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.banner-text {
  flex: 1;
  z-index: 1;
}

.banner-text h1 {
  font-size: 4rem;
  color: #ff00ff;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 10px #ff00ff88;
}

.banner-text p {
  font-size: 1.3rem;
  margin-top: 20px;
  color: #ccc;
}

.banner-text .btn {
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 1.1rem;
  background: transparent;
  border: 2px solid #ff00ff;
  color: #ff00ff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: bold;
  box-shadow: 0 0 10px #ff00ff44;
}

.banner-text .btn:hover {
  background: #ff00ff;
  color: #fff;
  box-shadow: 0 0 20px #ff00ff88;
}

.robot-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.robot-wrap {
  position: relative;
  width: 240px;
  height: 260px;
}

.headphones {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 240px;
  height: 80px;
  border: 10px solid #ff00ff;
  border-radius: 100px 100px 0 0;
  border-bottom: none;
  box-shadow: 0 0 30px #ff00ff55;
  z-index: 2;
  background: #111;
}

.robot {
  width: 220px;
  height: 220px;
  background: #222;
  border: 4px solid #ff00ff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-shadow: 0 0 50px #ff00ff88;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.eyes {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.eye {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.pupil {
  width: 20px;
  height: 20px;
  background: #ff00ff;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 20px;
  transition: all 0.08s ease-out;
}

.mouth {
  margin-top: 20px;
  width: 60px;
  height: 30px;
  border-bottom: 4px solid #ff00ff;
  border-radius: 0 0 50px 50px;
}

/* Background float dots */
.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff00ff33;
  border-radius: 50%;
  animation: float 10s infinite;
}

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

  50% {
    transform: translateY(-100px) scale(1.3);
  }

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

.plyer {
  background-color: #0e032c;
}
.ply {
  width: 100%;
}
.podcast-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 63px;
  margin-bottom: 30px;
}
.podcast-card {
  background: url("https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2")
    no-repeat center/cover;
  padding: 30px;

  border: 10px solid #1d0e41;
  position: relative;
}

.podcast-box {
  margin-bottom: 30px;
}

.dj-name {
  color: #ff2c7d;
  font-size: 14px;
  font-weight: bold;
}

.podcast-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn {
  background: #ff2c7d;
  border: none;
  color: white;
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.time {
  font-size: 12px;
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: #fff;
  position: relative;
  border-radius: 10px;
}

.progress {
  height: 3px;
  background: #ff2c7d;
  width: 0%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.volume-icon {
  background: #ff2c7d;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.volume-bar {
  width: 60px;
  height: 3px;
  background: #fff;
  position: relative;
}

.volume-level {
  height: 3px;
  background: #ff2c7d;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
}

.right-content {
  max-width: 400px;
}

.right-content h3 {
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}

.right-content h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.right-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #c6c6c6;
}

.btn {
  background: #ff2c7d;
  padding: 12px 30px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.ply {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}
.pod-h {
  padding: 50px;
  background-color: #0e032c;
  color: peru;
  display: flex;
  justify-content: center;
  align-items: center;
}

.events-section {
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #ffffffcc;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 60px;
  color: #fff;
}

.event-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

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

.event-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.event-date {
  font-size: 48px;
  font-weight: 900;
  color: #ff2c7d;
  line-height: 1;
}

.event-month {
  font-size: 14px;
  color: #ff2c7d;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 8px;
}

.event-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 15px;
}

.event-description {
  font-size: 14px;
  color: #c6c6c6;
  line-height: 1.7;
}

.event-button-wrapper {
  margin-top: 50px;
}

.event-btn {
  background-color: #ff2c7d;
  border: none;
  color: white;
  padding: 14px 35px;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  letter-spacing: 1px;
}
.events-section {
  background: #0e032c;
}

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

  .banner-text h1 {
    font-size: 2.5rem;
  }

  .robot-container {
    margin-top: 30px;
  }

  .event-cards {
    align-items: center;
  }
}

.watch-now-section {
  display: flex;
  gap: 30px;
  padding: 60px 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #0f001f, #1a0033, #3a0066);
}

.video-list-box {
  background: white;
  border-radius: 12px;
  padding: 30px;
  width: 320px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.video-list-box h2 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #000;
}

.video-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.video-item img {
  width: 55px;
  height: 55px;
  border-radius: 6px;
  object-fit: cover;
}

.video-item-title {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  line-height: 1.4;
}

.all-videos-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-top: 30px;
  display: inline-block;
}

.all-videos-link::after {
  content: "▶";
  margin-left: 8px;
  font-size: 10px;
}

.video-preview {
  position: relative;
  max-width: 600px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.video-preview video {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* purely decorative */
}

.video-list-box {
  background: #1a0033; /* deep purple-blue */
  border-radius: 12px;
  padding: 30px;
  width: 320px;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.15);
  border: 1px solid #3a0066;
}

.video-list-box h2,
.video-item-title,
.all-videos-link {
  color: #ffffff; /* bright white text for contrast */
}

.video-preview {
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #ff2c7d;
  box-shadow: 0 0 30px rgba(255, 44, 125, 0.4);
  background: #0f001f;
}

.video-preview:hover {
  box-shadow: 0 0 40px rgba(255, 44, 125, 0.6), 0 0 80px rgba(0, 255, 255, 0.2);
  transition: 0.4s ease;
}

@media (max-width: 900px) {
  .watch-now-section {
    flex-direction: column;
    align-items: center;
  }

  .video-preview {
    max-width: 90%;
  }
}

.dj-gallery-section {
  background: #0e032c;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.gallery-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 50px;
  color: #ff2c7d;
  text-shadow: 0 0 10px #ff2c7d77;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #ff2c7d;
  box-shadow: 0 0 20px rgba(255, 44, 125, 0.4);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(transparent, #ff2c7d);
  width: 100%;
  padding: 15px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gal {
  background-color: #0e032c;
}

.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: 820px) {
  .bit #buy {
    display: none;
  }
  .ply {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }
  .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;
  }
}

@media (max-width: 520px) {
  form{
    display: flex;
  }
  .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; */
  }
  .section-title {
    font-size: 20px;
  }
  .right-content h1 {
    font-size: 20px;
  }
  .footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #444;
    font-size: 14px;
    margin-top: 22px;
  }
  .event-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
