* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }
  
  body {
    height: 100vh;
    background-image: url("./images/wallpaper.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .container {
    width: 380px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(18px);
    text-align: center;
    color: white;
  }
  
  h1 {
    font-size: 32px;
    margin-bottom: 5px;
  }
  
  .subtitle {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 20px;
  }
  
  #nowPlaying {
    color: #4cd964;
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  #randomBtn {
    background: #4cd964;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
  #randomBtn:hover {
    opacity: 0.9;
  }
  
  .moods {
    margin-top: 10px;
  }
  
  .mood-title {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
  }
  
  .mood-buttons {
    display: flex;
    justify-content: space-between;
  }

  #songQuote {
    font-size: 11px;
    opacity: 0.8;
    font-style: italic;
    color: #dddddd;
  }

  
  .mood-buttons button {
    flex: 1;
    margin: 5px;
    padding: 8px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    color: white;
    font-size: 12px;
  }
  
  .mood-buttons button:hover {
    background: rgba(255,255,255,0.25);
  }
  .song-quote {
    
        animation: quoteFade 0.6s ease;
      }
      
      @keyframes quoteFade {
        from {
          opacity: 0;
          transform: translateY(2px);
        }
        to {
          opacity: 0.65;
          transform: translateY(0);
        }
      }