    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      height: 100%;
      font-family: 'Open Sans', sans-serif;
      overflow-x: hidden;
      background: #000;
      color: #ddd;
    }
	
	body {
  background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80')
    no-repeat center center fixed;
  background-size: cover;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

    /* -------------------------------------
       BACKGROUND VIDEO + OVERLAY
    -------------------------------------- */
    #bgVid {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      z-index: -2;
    }
    .overlay {
      content: "";
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0,0,0,0.6);
      z-index: -1;
    }

    /* -------------------------------------
       HERO CONTENT (LOGO / EQUALIZER / BUTTON)
    -------------------------------------- */
    .hero-content {
      position: absolute;
      top: 15vh; /* desktop में ऊपर थोड़ा से रखो */
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 1;
      width: 100%;
      pointer-events: none; /* click events login box पर ही जाएँ */
    }
    .hero-content .logo-text {
      font-family: 'Audiowide', cursive;
      font-size: 3rem;
      color: #1DB954;
      text-transform: lowercase;
      pointer-events: none;
    }
    .hero-content p {
      margin: 10px 0 20px;
      font-size: 1.2rem;
      color: #eee;
      pointer-events: none;
    }
    .btn-primary {
      pointer-events: auto;
      display: inline-block;
      padding: 12px 30px;
      background: #1DB954;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(29,185,84,0.5);
      transition: background 0.3s, box-shadow 0.3s;
      margin-top: 10px;
    }
    .btn-primary:hover {
      background: #17a34d;
      box-shadow: 0 6px 15px rgba(29,185,84,0.7);
    }

    /* -------------------------------------
       Equalizer Bars (Hero Bottom)
    -------------------------------------- */
    @media (max-width: 600px) {
    /* Show waves on mobile */
	.wave-container {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 120px;
      display: flex;
      align-items: flex-end;
      justify-content: space-around;
      pointer-events: none;
      z-index: 2;
    }
    .wave-container .bar {
      width: 8px;
      background: #1DB954;
      animation: bass 1s infinite ease-in-out;
      opacity: 0.7;
    }
    .wave-container .bar:nth-child(even) {
      animation-duration: 1.2s;
    }
    .wave-container .bar:nth-child(3n) {
      animation-duration: 0.8s;
    }
    @keyframes bass {
      0%, 100% { height: 20px; }
      50% { height: 80px; }
    }
	}

/* -------------------------------------
   Main container (centers everything)
-------------------------------------- */
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* overlay (body::before) के ऊपर */
}

/* -------------------------------------
   Parent that spins both border & icons
-------------------------------------- */
.circle-spin {
  position: relative;
  width: 550px;      /* अब 550px */
  height: 550px;     /* अब 550px */
  animation: spinCircle 20s linear infinite;
  z-index: 2;
}

@keyframes spinCircle {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* -------------------------------------
   Circle Border (inside parent)
-------------------------------------- */
.circle-border {
  position: absolute;
  width: 550px;      /* अब 550px */
  height: 550px;     /* अब 550px */
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 4px solid rgba(29, 185, 84, 0.6);
  box-sizing: border-box;
  z-index: 1;
}

/* -------------------------------------
   Icons Container (inside parent)
-------------------------------------- */
.circle-icons {
  position: absolute;
  width: 550px;      /* अब 550px */
  height: 550px;     /* अब 550px */
  top: 0;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2;
}

.circle-icons li {
  position: absolute;
  width: 64px;
  height: 64px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0.8;
}
.circle-icons li:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* Place each icon at correct point on circle */
.circle-icons li:nth-child(1) {
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(0deg)
    translate(275px)    /* 275px = 550px का आधा */
    rotate(-0deg);
}
.circle-icons li:nth-child(2) {
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(90deg)
    translate(275px)    /* 275px = 550px का आधा */
    rotate(-90deg);
}
.circle-icons li:nth-child(3) {
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(180deg)
    translate(275px)    /* 275px = 550px का आधा */
    rotate(-180deg);
}
.circle-icons li:nth-child(4) {
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    rotate(270deg)
    translate(275px)    /* 275px = 550px का आधा */
    rotate(-270deg);
}

/* Icon image stays upright by counter-rotating */
.circle-icons li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  display: block;
  margin: auto;
  animation: counterSpin 20s linear infinite reverse;
  z-index: 3;
}
@keyframes counterSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/* -------------------------------------
   Centered Login Box (icons से ऊपर)
-------------------------------------- */
.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  padding: 30px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  text-align: center;
  z-index: 4; /* icons से ऊपर */
}
.login-box h2 {
  color: #1DB954;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}
.login-box input[type="email"],
.login-box input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}
.login-box input::placeholder {
  color: rgba(255,255,255,0.6);
}
.login-box input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #1DB954;
  box-shadow: 0 0 5px rgba(29,185,84,0.5);
}
.login-box button {
  width: 100%;
  padding: 12px 15px;
  margin: 15px 0 5px;
  background: #1DB954;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.login-box button:hover {
  background: #17a34d;
}
.login-box a {
  display: inline-block;
  margin-top: 10px;
  color: #aaa;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.login-box a:hover {
  color: #fff;
}

    /* -------------------------------------
       POPUP MODAL STYLING (सबसे ऊपर)
    -------------------------------------- */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 5;
    }
    .modal-content {
      position: relative;
      max-width: 400px;
      width: 90%;
      background: #111;
      border-radius: 6px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 30px rgba(0,0,0,0.7);
    }
    .modal-content img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
    }
    .modal-close {
      position: absolute;
      top: 10px;
      right: 12px;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.2rem;
      cursor: pointer;
    }

    /* -------------------------------------
       Mobile View Adjustments
       - Desktop waise ka waise
       - Mobile pe logo/name + extra icons scatter
    -------------------------------------- */
    .mobile-icons,
    .mobile-logo {
      display: none;
    }
    @media (max-width: 600px) {
      /* hide desktop circle */
      .circle-spin,
      .circle-border,
      .circle-icons {
        display: none;
      }

      /* mobile logo */
      .mobile-logo {
        display: block;
        position: absolute;
        top: 8vh;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.2rem;
        color: #1DB954;
        font-family: 'Audiowide', cursive;
        font-weight: 700;
        z-index: 3;
      }

      /* mobile icons container */
      .mobile-icons {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0; left: 0;
        list-style: none;
        padding: 0; margin: 0;
        z-index: 2;
      }
      .mobile-icons li {
        position: absolute;
        top: 8vh;
        width: 40px;
        height: 40px;
        opacity: 0.9;
        cursor: pointer;
      }
      .mobile-icons li:hover {
        transform: scale(1.2);
        opacity: 1;
      }

      /* 1) Spotify */
      .mobile-icons li:nth-child(1) {
        left: calc(50% - 120px);
        animation: drop1 0.8s ease-out forwards;
        animation-delay: 0.1s;
      }
      @keyframes drop1 {
        to {
          top: 80vh;    /* login Box के नीचे */
          left: calc(50% - 120px);
          transform: rotate(-12deg) scale(0.8);
          opacity: 0.8;
        }
      }

      /* 2) Apple Music */
      .mobile-icons li:nth-child(2) {
        left: calc(50% - 60px);
        animation: drop2 0.8s ease-out forwards;
        animation-delay: 0.2s;
      }
      @keyframes drop2 {
        to {
          top: 85vh;
          left: calc(50% - 60px);
          transform: rotate(5deg) scale(0.8);
          opacity: 0.8;
        }
      }

      /* 3) YouTube Music */
      .mobile-icons li:nth-child(3) {
        left: calc(50% - 0px);
        animation: drop3 0.8s ease-out forwards;
        animation-delay: 0.3s;
      }
      @keyframes drop3 {
        to {
          top: 78vh;
          left: calc(50% - 0px);
          transform: rotate(12deg) scale(0.8);
          opacity: 0.8;
        }
      }

      /* 4) Amazon Music */
      .mobile-icons li:nth-child(4) {
        left: calc(50% + 60px);
        animation: drop4 0.8s ease-out forwards;
        animation-delay: 0.4s;
      }
      @keyframes drop4 {
        to {
          top: 88vh;
          left: calc(50% + 60px);
          transform: rotate(-5deg) scale(0.8);
          opacity: 0.8;
        }
      }

      /* 5) Wynk Music */
      .mobile-icons li:nth-child(5) {
        left: calc(50% + 120px);
        animation: drop5 0.8s ease-out forwards;
        animation-delay: 0.5s;
      }
      @keyframes drop5 {
        to {
          top: 82vh;
          left: calc(50% + 120px);
          transform: rotate(8deg) scale(0.8);
          opacity: 0.8;
        }
      }

      /* 6) Gaana */
      .mobile-icons li:nth-child(6) {
        left: calc(50% - 180px);
        animation: drop6 0.8s ease-out forwards;
        animation-delay: 0.6s;
      }
      @keyframes drop6 {
        to {
          top: 90vh;
          left: calc(50% - 180px);
          transform: rotate(-15deg) scale(0.8);
          opacity: 0.8;
        }
      }

      /* 7) JioSaavn */
      .mobile-icons li:nth-child(7) {
        left: calc(50% + 180px);
        animation: drop7 0.8s ease-out forwards;
        animation-delay: 0.7s;
      }
      @keyframes drop7 {
        to {
          top: 76vh;
          left: calc(50% + 180px);
          transform: rotate(15deg) scale(0.8);
          opacity: 0.8;
        }
      }

      /* 8) Airtel */
      .mobile-icons li:nth-child(8) {
        left: calc(50% + 240px);
        animation: drop8 0.8s ease-out forwards;
        animation-delay: 0.8s;
      }
      @keyframes drop8 {
        to {
          top: 92vh;
          left: calc(50% + 240px);
          transform: rotate(-8deg) scale(0.8);
          opacity: 0.8;
        }
      }

      /* Image style each icon */
      .mobile-icons li img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.4);
      }

      /* Login box mobile adjust */
      .login-box {
        top: 45vh;
        width: 90vw;
        padding: 20px;
      }
    }

    /* -------------------------------------
       Music Toggle Button
    -------------------------------------- */
    .music-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: rgba(0,0,0,0.5);
      color: #1DB954;
      font-size: 1.5rem;
      border: none;
      border-radius: 50%;
      width: 50px; height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 10px rgba(29,185,84,0.6);
      cursor: pointer;
      z-index: 5;
      transition: background 0.3s;
    }
    .music-btn:hover {
      background: rgba(0,0,0,0.8);
    }
	
	.login-with-google-btn {
  display: inline-flex;         /* आइकॉन+टेक्स्ट को एक लाइन में लाता है */
  align-items: center;          /* वर्टिकल सेंटरिंग */
  justify-content: center;      /* होरिजॉन्टल सेंटरिंग (आप चाहें तो full-width भी रख सकते हैं) */
  
  /* नीचे की प्रॉपर्टीज़ साइज/कलर इत्यादि के लिए हैं; अपनी डिज़ाइन के हिसाब से एडजस्ट कर लें */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 1rem;
  color: #444;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.login-with-google-btn:hover {
  background: #f7f7f7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* आइकन को टेक्स्ट के बगल में वर्टिकल-सेंटर करने के लिए */
.login-with-google-btn .google-icon {
  width: 18px;            /* आइकन की चौड़ाई */
  height: 18px;           /* आइकन की ऊँचाई */
  margin-right: 8px;      /* टेक्स्ट से पहले थोड़ा गैप */
  display: block;         /* flex आइटम बनने के लिए */
}

 