:root {
    --background: #0a0a0a;
    --foreground: oklch(0.985 0 0);
    --card: #121212;
    --card-foreground: oklch(0.985 0 0);
    --popover: oklch(0.145 0 0);
    --popover-foreground: oklch(0.985 0 0);
    --primary: #14b8a6;
    --primary-foreground: oklch(0.985 0 0);
    --secondary: oklch(0.269 0 0);
    --secondary-foreground: oklch(0.985 0 0);
    --muted: oklch(0.269 0 0);
    --muted-foreground: oklch(0.708 0 0);
    --accent: #0d9488;
    --accent-foreground: oklch(0.985 0 0);
    --destructive: oklch(0.396 0.141 25.723);
    --destructive-foreground: oklch(0.637 0.237 25.331);
    --border: rgba(255, 255, 255, 0.1);
    --input: oklch(0.269 0 0);
    --ring: oklch(0.439 0 0);
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --chart-1: oklch(0.488 0.243 264.376);
    --chart-2: oklch(0.696 0.17 162.48);
    --chart-3: oklch(0.769 0.188 70.08);
    --chart-4: oklch(0.627 0.265 303.9);
    --chart-5: oklch(0.645 0.246 16.439);
    --sidebar: oklch(0.205 0 0);
    --sidebar-foreground: oklch(0.985 0 0);
    --sidebar-primary: oklch(0.488 0.243 264.376);
    --sidebar-primary-foreground: oklch(0.985 0 0);
    --sidebar-accent: oklch(0.269 0 0);
    --sidebar-accent-foreground: oklch(0.985 0 0);
    --sidebar-border: oklch(0.269 0 0);
    --sidebar-ring: oklch(0.439 0 0);
    --tropical-green: #047857;
    --tropical-teal: #14b8a6;
    --soft-yellow: #fbbf24;
    --warm-orange: #c45d08;
    --cloudbeats-gradient: linear-gradient(90deg, var(--tropical-teal), var(--tropical-green), var(--soft-yellow), var(--warm-orange));
    --hero-accent-bg:
        radial-gradient(
            circle at top,
            rgba(20, 184, 165, 0.12) 0%,
            rgba(13, 148, 137, 0.08) 10%,
            transparent 50%
        );
}


body {
    font-family: Arial, sans-serif !important;
    background-color: var(--background);
    margin: 0;
    padding-bottom: 80px;
}

.container-layout {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}


/*Hero Section*/

.logo {
    color: #fff;
    text-align: center;
    background: var(--hero-accent-bg);
}

.hero {
    background: var(--hero-accent-bg);
}

.hero-title {
    background: var(--cloudbeats-gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo h1 {
    font-size: 100px;
    margin: 0 0 0 16px;
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
    
}

.logo p {
    font-size: 32px;
    margin: -10px 0 20px 32px;
    color: var(--muted-foreground);
    
}

.logo i {
    font-size: 150px;
    margin: 16px 16px;
    color: var(--tropical-teal);
    
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.listener {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 12px 18px;
    border: 1px solid rgba(164, 164, 164, 0.375);
    border-radius: 8px; 
    font-weight: 525;
}

.listener i {
    color: var(--foreground);
    font-size: 12px;
    text-align: center;
    margin: 0px;
}

/*Play live button*/
.play-live {
    display: inline-block;
    background: var(--tropical-teal);
    color: #fff;
    padding: 5px 24px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
}

.play-button {
    display: inline-block;
    background: #007BFF;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 1rem;
}
.play-button:hover {
    background: #0056b3;
}

.play-live:hover {
    background: var(--tropical-teal);
    color: #fff;
    
}

.play-live i {
    font-size: 1.15rem;
    color: var(--foreground);
    margin-left: 2px;
}

.live-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(120, 0, 0, 0.35);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--destructive-foreground);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: none;
}

/*Cancel Bootstrap hover for live button*/
.live-button:hover {
    background: rgba(120, 0, 0, 0.35) !important;
    color: #fff !important;
    border-color: var(--destructive-foreground) !important;
    transform: none !important;
    box-shadow: none !important;
    cursor: default !important;
}

.live-button i {
    margin: 0;
    font-size: 0.75rem;
    color: var(--destructive);
}

/*Wave Animation*/

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  width: 140vw;
  z-index: 0;


  transform: translateX(-29.75%);
  border-radius: 50%;
  filter: blur(6px);
  animation: waveFloat 2s ease-in-out infinite;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-wave-primary {
  top: 40px;
  filter: blur(8px);
  opacity: 0.8;
  animation: waveFloatOne 4s ease-in-out infinite;
}

.hero-wave-primary path {
  fill: rgba(20, 184, 165, 0.73);
}

.hero-wave-secondary {
  top: 90px;
  filter: blur(14px);
  opacity: 0.55;
  animation: waveFloatTwo 2s ease-in-out infinite;
}

.hero-wave-secondary path {
  fill: rgba(13, 148, 137, 0.49);
}

@keyframes waveFloatOne {
  0%, 100% {
    transform: translateX(-50%) translateY(0) scaleX(1);
  }

  50% {
    transform: translateX(-50%) translateY(-20px) scaleX(1.08);
  }
}

@keyframes waveFloatTwo {
  0%, 100% {
    transform: translateX(-50%) translateY(10px) scaleX(1.08);
  }

  50% {
    transform: translateX(-50%) translateY(-10px) scaleX(1);
  }
}

/*Playing card Section*/
.now-playing-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 2rem;
  
    
}

.playing-card {
  width: 100%;
  margin: 0;
  padding: 4rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.album-picture {
  position: relative;
  width: 245px;
  height: 245px;
  flex-shrink: 0;
}

.album-picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.track-content {
  flex: 1;
  color: var(--foreground);
}

.track-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.track-content > p {
  color: #b6b6b6;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.playing-card p {
  color: var(--muted-foreground);
  font-size: 1.2rem;
  margin: 0;
  text-align: start;
}

.now-playing {
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.player { 
  margin-top: 1.5rem;
  text-align: center;
}

.player audio {
  max-width: 420px;
}

/*Custom Player Styles*/

.custom-player {
  margin-top: 2rem;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 16px;
  background: #2a2a2a;
  border-radius: 20px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--tropical-teal);
  border-radius: 20px;
}

.progress-dot {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 17px;
  height: 17px;
  background: #050505;
  border: 2px solid var(--tropical-teal);
  border-radius: 50%;
}

.time-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  color: var(--muted-foreground);
}

.volume-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.volume-row i {
  color: var(--muted-foreground);
}

#volumeControl {
  width: 150px;
  accent-color: var(--tropical-teal);
}

/*Discover Section */

.discover-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
 
}

.discover-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.discover-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.discover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.discover-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px) scale(.95);
  transition: opacity .25s ease, transform .25s ease;
}

.discover-card:hover .discover-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.discover-play-btn:hover {
  transform: scale(1.08);
}

.discover-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.discover-card-body {
  padding: 1rem;
  
}

.discover-card-body h3 {
  margin: 0 0 0.4rem;
  color: var(--foreground);
  font-size: 1rem;
}

.discover-card-body p {
  margin: 0;
  color: var(--muted-foreground);
}

/*Coming-up Card Aside discover cards*/
.coming-up {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  max-height: 500px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.coming-up-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.coming-up-title i {
  color: var(--primary);
}

.coming-up-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 0.75rem;
  overflow-y: auto;
  flex: 1;
}

.coming-up-list::-webkit-scrollbar {
  width: 6px;
}

.coming-up-list::-webkit-scrollbar-track {
  background: transparent;
}

.coming-up-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.2);
  border-radius: 10px;
}

.coming-up-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.coming-up-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background-color .25s ease,
              transform .25s ease;
}

.coming-up-item:hover {
  background: rgba(255,255,255,.05);
  transform: translateX(4px);
  cursor: pointer;
}

.coming-up-item img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.coming-up-info {
  flex: 1;
}

.coming-up-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--foreground);
}

.coming-up-info p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: .9rem;
}

.coming-up-item span {
  color: var(--muted-foreground);
  font-size: .9rem;
}

/*Live chat - Song Request - User Profile*/

.feature-cards-section {
  padding-top: 2rem;
  padding-bottom: 2rem; 
}



.feature-cards {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 170px;
  justify-content: center;
  text-align: center;
}

.live-chat {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  color: var(--tropical-teal);

}

.song-request {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  color: var(--soft-yellow);

}

.user-profile {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  color: var(--warm-orange);
}

.feature-cards h5{
  color: var(--foreground);
  font-size: 1.1rem;
  
}

.feature-cards p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  margin: 0;
}

/*Player Bottom Section Sticky*/

.bottom-player {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
  border-top: 4px solid var(--primary);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}

.bottom-player.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.bottom-player-track img {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
}

.bottom-player-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
}

.bottom-icon-btn {
  color: var(--foreground);
  padding: 0;
}

.bottom-volume {
  width: 120px;
  accent-color: var(--primary);
}





/*Footer section*/

footer {
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 300px;
  padding: 2rem;
  display: flex;
  width: 100%;
}

footer p {
  Color: var(--muted-foreground);
  font-size: 1.25rem;
  text-align: center;

}



@media (max-width: 1200px) {
  .discover {
    grid-template-columns: 1fr;
  }

  .coming-up {
    order: 1;
  }
}

@media (max-width: 768px) {
  .playing-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .album-picture {
    width: 220px;
    height: 220px;
  }

  .player audio {
    width: 100%;
  }

  .bottom-player-track p,
  .bottom-volume,
  .bottom-player-controls .fa-volume-low {
      display: none;
  }

  .bottom-player-controls {
      gap: 0.75rem !important;
  }

}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 60px;
  }

  .logo p {
    font-size: 20px;
  }

  .album-picture {
    width: 200px;
    height: 200px;
  }
}