body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0f0f0f;
  color: #f1f1f1;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

header {
  background-color: #121212;
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid #333;
}

/* Animate menu items in */
.offcanvas-body ul.nav li {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 0.4s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth hover effect */
.offcanvas-body .nav-link {
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 6px;
}

.offcanvas-body .nav-link:hover {
  background-color: rgba(0, 255, 195, 0.1);
  transform: translateX(5px);
  color: #00ffc3;
}

/* Neon Hamburger */
.neon-hamburger {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  padding: 10px 14px;
  border: none;
  color: #0ff;
  font-size: 20px;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.neon-hamburger:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
}

/* Neon Buttons (Sign Up & Login) */
.neon-btn {
  background: transparent;
  color: #0ff;
  border: 2px solid #0ff;
  border-radius: 25px;
  padding: 10px 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  
  transition: all 0.3s ease;
}
.neon-btn:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 12px #0ff, 0 0 25px #0ff;
}

/* Neon Hamburger (Green Glow) */
.neon-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1051;
}

.neon-hamburger .bar {
  height: 3px;
  width: 100%;
  background: #00ff99; /* neon green */
  border-radius: 2px;
  box-shadow: 0 0 8px #00ff99, 0 0 15px rgba(0,255,153,0.6);
  transition: all 0.3s ease;
}

/* Animate into X */
.neon-hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.neon-hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.neon-hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Neon Base Style */
.neon-btn {
  border-radius: 25px;
  padding: 10px 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Neon Green Button */
.neon-green {
  color: #00ff99;
  border: 2px solid #00ff99;
  box-shadow: 0 0 8px #00ff99, 0 0 15px rgba(0,255,153,0.6);
}
.neon-green:hover {
  background: #00ff99;
  color: #000;
  box-shadow: 0 0 12px #00ff99, 0 0 25px #00ff99;
}

/* Neon Pink Button */
.neon-pink {
  color: #ff4bcd;
  border: 2px solid #ff4bcd;
  box-shadow: 0 0 8px #ff4bcd, 0 0 15px rgba(255,75,205,0.6);
}
.neon-pink:hover {
  background: #ff4bcd;
  color: #000;
  box-shadow: 0 0 12px #ff4bcd, 0 0 25px #ff4bcd;
}

.tagline {
  color: #aaa;
  font-size: 1rem;
  margin-top: 10px;
}

.hero {
  background: url('daghost1.jpeg') no-repeat center center/cover;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  margin-bottom: 20px;
}

.episodes {
  background-color: #1a1a1a;
  padding: 40px 20px;
}

.episodes h3 {
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.episodes ul {
  list-style: none;
  padding-left: 0;
}

.episodes li {
  margin-bottom: 10px;
  color: #ccc;
}

.subscribe {
  background-color: #121212;
  padding: 40px 20px;
  text-align: center;
}

.podcast-player {
      transform: translateY(100%);
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.5s ease-in-out;
      background: #111;
    }

    .podcast-player.show {
      transform: translateY(0);
      opacity: 1;
      max-height: 1000px;
    }

    .player-container {
      position: relative;
      max-width: 400px;
      margin: 0 auto;
    }

    .player-image-wrapper {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
    }

    .player-image-wrapper img {
      width: 100%;
      display: block;
      border-radius: 16px;
    }

    .episode-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0,0,0,0.7);
      padding: 4px 10px;
      border-radius: 10px;
      font-size: 0.8rem;
    }

    .player-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
    }

    .buttons button {
      background: none;
      border: none;
      color: #fff;
      font-size: 20px;
      margin: 0 10px;
      cursor: pointer;
    }

    #progressBar {
      width: 100%;
      margin-top: 10px;
    }

    .player-icons {
      display: flex;
      justify-content: space-around;
      margin-top: 15px;
      font-size: 18px;
    }

    .player-icons i {
      cursor: pointer;
      color: #fff;
      transition: color 0.3s ease;
    }

    .player-icons i:hover {
      color: #00ffc3;
    }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 24px;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      z-index: 999;
    }

    .loading {
      display: none;
      color: #00ffc3;
      font-size: 0.9rem;
      margin-top: 10px;
    }

    footer {
      font-size: 0.8rem;
      color: #666;
	 }

.blog {
  background-color: #121212;
  padding: 40px 20px;
}

.blog h3 {
  margin-bottom: 20px;
}

.post {
  margin-bottom: 20px;
}

.post h4 a {
  color: #00ffc3;
  text-decoration: none;
}

.post p {
  color: #ccc;
}

.platforms {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  background: #222;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid #333;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #00ffc3;
  color: #111;
}

.player-icons{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-top:20px;
}

.player-icons button{
  background:rgba(255,255,255,0.06);
  border:none;
  width:50px;
  height:50px;
  border-radius:50%;
  color:#00ffc3;
  font-size:18px;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:0 0 10px rgba(0,255,195,.25);
}

.player-icons button:hover{
  transform:scale(1.1);
  box-shadow:0 0 20px rgba(0,255,195,.6);
}

.player-icons button.active{
  background:#00ffc3;
  color:#000;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
  background: #0d0d0d;
  border-top: 1px solid #222;
}

.newsletter {
  background-color: #1a1a1a;
  padding: 40px 20px;
  text-align: center;
}

.newsletter input[type="email"] {
  padding: 10px;
  width: 250px;
  max-width: 80%;
  border: none;
  border-radius: 3px;
  margin-right: 10px;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  background-color: #00ffc3;
  color: #111;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
}

.newsletter button:hover {
  background-color: #00ccaa;
}

.store {
  background-color: #1a1a1a;
  padding: 40px 20px;
  text-align: center;
}

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

.product {
  background-color: #222;
  padding: 20px;
  border-radius: 5px;
  width: 200px;
}

.product img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.product h4 {
  margin: 10px 0 5px;
  color: #00ffc3;
}

.product p {
  color: #ccc;
  margin-bottom: 10px;
}

.audio-player {
  background-color: #111;
  padding: 40px 20px;
  text-align: center;
  display: none; /* Hidden by default */
}

.audio-player h3 {
  color: #00ffc3;
  margin-bottom: 10px;
}

.episode-list a {
  color: #00ffc3;
  text-decoration: none;
  display: block;
  margin: 10px 0;
  font-weight: bold;
}

.episode-list a:hover {
  text-decoration: underline;
}

.album-modern {
  background: #111216;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 195, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 40px;
}

.album-modern:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(0, 255, 195, 0.1);
}

.album-art img {
  width: 100%;
  display: block;
}

.album-details {
  padding: 20px;
  text-align: center;
}

.album-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  color: #00ffc3;
  margin-bottom: 5px;
}

.album-artist {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.album-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.album-modern .btn {
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 1.1rem;
}

.album-modern .btn.neon {
  background: #00ffc3;
  color: #0e0e12;
  border: none;
}

.album-modern .btn.neon:hover {
  background: #00cc99;
}

.album-modern .btn.soft {
  background: #333;
  color: #fff;
  border: 1px solid #444;
}

.album-modern .btn.soft:hover {
  background: #555;
}

.btn-neon {
  background: #00ffc3;
  color: #0e0e12;
  border: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-neon:hover {
  background: #00cc99;
  color: #000;
}

.glass-blur {
  backdrop-filter: blur(10px);
  background-color: rgba(20, 20, 20, 0.75);
}

.site-footer {
  background-color: #0e0e12;
  width: 100%;
  color: white;
  font-size: 0.95rem;
  border-top: 1px solid #222;
}

.footer-social .social-icon {
  color: #00ffc3;
  font-size: 1.4rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.footer-social .social-icon:hover {
  color: #00cc99;
}

.footer-contact i {
  color: #00ffc3;
}

.footer-links a:hover {
  text-decoration: underline;
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

.modal-content {
  background: rgba(30,30,40,0.9);
  margin: 10% auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 20px #0ff;
}

.close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #0ff;
  border: 2px solid #0ff;
  border-radius: 50%;
  padding: 4px 8px;
}