
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html, body {
            background: #0f172a;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            width: 100vw;
            color: white;
            text-align: center;
            overflow: hidden;
            position: relative;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .video-container {
            width: 100%;
            max-width: 800px;
            height: 0;
            overflow: hidden;
            transition: height 0.5s ease-in-out, transform 0.5s ease-in-out;
            transform: scale(0.8);
            opacity: 0;
            position: relative;
            z-index: 2;
        }

        .video-container iframe {
            width: 100%;
            height: 450px;
            border-radius: 10px;
        }

        .btn {
            padding: 12px 25px;
            font-size: 18px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 1px -1px 5px #fff;
            color: white;
            border: none;  
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            margin-top: 20px;
            position: relative;
            z-index: 2;
        }

        .btn:hover {
            transform: scale(1.05);
            box-shadow: 1px -1px 5px #67ff5d;
        }

        .show-video {
            height: 450px;
            transform: scale(1);
            opacity: 1;
        }

        /* Floating Objects */
        .floating-object {
            position: absolute;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: moveObject linear infinite;
            opacity: 0.8;
        }

        @keyframes moveObject {
            0% {
                transform: translate(var(--startX, 0), var(--startY, 0));
                opacity: 0.3;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translate(var(--endX, 100vw), var(--endY, 100vh));
                opacity: 0.3;
            }
        }
        #whole-box-parent {
          backgrouxnd: red;
          height: 100%;
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          padding: 0 20px;
          backdrop-filter: blur(35px);
          z-index: 100;
        }
#whole-box {
    background: linear-gradient(45deg, #0F172A, transparent);
    
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    z-index: 100;
    animation: moveRight 8s infinite linear;
}

/*ads */
#ads-content {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background: #222;
        color: white;
        width: 100%;
        overflow: hidden;
        position: absolute;
        pointer-events: none;
        
    }

    .scroll-box {
        width: 100%;
        height: 100%; /* Adjust height */
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .scroll-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        animation: scrollUp 25s linear infinite;
    }

    @keyframes scrollUp {
        0% { transform: translateY(0); }
        100% { transform: translateY(-100%); }
    }
#song-txt {
  margin: 0 0 20px 0;
  background: #fff;
  padding: 5px 10px ;
  border-radius: 10px;
  color: #242424;
}
