/* Resetting default styles for consistent rendering */
        body, html {
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Prevent horizontal scrollbar */
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background-image: linear-gradient(to bottom right, #0d0d1b, #1a1a32);
            color: #c8c9c5; /* Default text color */
        }

        p {
            line-height: 1.75rem;
            font-size: 1.rem;
        }

        h1 {
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(to left, rgb(255, 228, 179), rgb(255, 255, 255));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;

        }

        .container {
            max-width: 100%; /* Full width container */
            padding: 0;
            margin: 0;
        }

        /* Header Styles */
        header {
            position: absolute; /* Allows for overlapping with video */
            top: 0;
            left: 0;
            width: 100%;
            z-index: 3;
            background-color: rgba(0, 0, 0, 0); /* Semi-transparent background */
            padding: 0; /* Removed default padding */
            /* border-bottom: 1px solid #2e2e48; */
        }

        header nav {
            display: flex;
            justify-content: space-between; /* Added space between logo and links */
            align-items: center;
            padding: 3rem 3rem; /* Added padding to nav */
        }

        header nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0; /* Reset margin */
            padding: 0; /* Reset padding */
        }

        header nav a {
            text-decoration: none;
            color: #c8c9c5;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        header nav a:hover {
            color: #f7cf87; /* Highlight on hover */
        }

        .logo {
            height: 40px; /* Adjust as needed */
            margin-left: 2rem;
        }


        /* Hero Section - Restored visibility */
        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh; /* Make it full viewport height */
            z-index: -1; /* Placed behind everything else */
            overflow :visible;
            pointer-events: none; /* Allows clicks to pass through */
        }

        .hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Cover the entire area */
            object-position: center; /* Center the image */
        }

        .zoom {
            animation: scale 40s linear infinite;
        }
  
        @keyframes scale {
            50% {
            -webkit-transform:scale(1.2);
            -moz-transform:scale(1.2);
            -ms-transform:scale(1.2);
            -o-transform:scale(1.2);
            transform:scale(1.2);
            }
        }   



        /* Main Content Sections */
        main {
            position: relative; /* For z-index to work */
            z-index: 2; /* Bring main content above hero image */
        }

        section {
            padding: 6rem 4rem;
        }

        section h2 {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            text-align: left;
        }


        /* Music Section */
        #music {
            padding: 0; /* Reset padding for music section, as inner grid will handle it */
        }

        #video-header {
            position: relative;
            width: 100%;
            height: 100vh; /* Full viewport height */
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            /* Removed background so hero-img can show through */
            z-index: 1; /* Below header, above hero-img */
        }

        #bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            z-index: -1;
            filter: brightness(0.5); /* Dim the video */
        }

        #video-header-content {
            z-index: 2;
            text-align: center;
            color: #c8c9c5;
            max-width: 70%;
            padding: 0 20px;
        }

        #video-header-content h1 {
            font-size: 5rem; /* Large and bold */
            margin-bottom: 2rem;
            line-height: 1.2;
        }
        #video-header-content h2 {
            font-size: 1.5rem;
            color: #ffffff; 
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-align: center;

        }

        #video-header-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .main-button {
            display: inline-block;
            background-color: #f7cf87;
            color: #1a1a32;
            padding: 1rem 2.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .main-button:hover {
            background-color: #e0b86a;
            color: #0d0d1b;
        }


        /* Mute Button */
        #mute-button {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 3;
            transition: background-color 0.3s ease;
        }

        #mute-button:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        #mute-button svg {
            width: 20px;
            height: 20px;
        }

        /* Main grid for the music section content (intro text + all song cards) */
        #music-section-grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Always 3 equal columns on desktop */
            gap: 3rem; /* Spacing between all grid items (intro text and each song card) */
            padding: 6rem 4rem; /* Overall padding for the section content */
            align-items: start; /* Aligns content to the top of each grid cell */
        }

        /* Styling for the intro text block (first grid item) */
        .section-intro {
            padding-right: 1.5rem; 
            box-sizing: border-box;
            max-width: 100%;
            margin-bottom: 0;
            text-align: left; /* Ensure left alignment */
        }

        /* Styles for individual song cards and video cards */
        .bg-secondary {
            /* background-color: #2e2e48; */
            /* background-color: linear-gradient (to left, rgb(247, 207, 135), rgb(46, 46, 72)); */
            background-image: linear-gradient(to bottom, rgba(46, 46, 72, 0.5), rgba(46, 46, 72, 0.25));
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
            text-align: left; /* LEFT ALIGNED as requested for song and video cards */
        }

        .song-cover {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
            margin-bottom: 1.5rem;
        }

        .bg-secondary h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            /* color: #f7cf87; Accent color for song titles */
            background: linear-gradient(to left, rgb(247, 207, 135), rgb(255, 255, 255));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;

        }

        .bg-secondary audio {
            width: 100%;
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
            background-color: #1a1a32; /* Darker background for audio player */
            border-radius: 50px;
        }

        .bg-secondary p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .song-actions-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
        }

        /* Ghost Button Styling for Like and Feedback */
        .like-button, .feedback-btn {
            background: none;
            border: 1px solid #c8c9c5; /* Ghost button border */
            color: #c8c9c5;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s ease; /* Smooth transition for all properties */
        }

        .like-button:hover, .feedback-btn:hover {
            background-color: rgba(247, 207, 135, 0.1); /* Subtle background on hover */
            border-color: #f7cf87; /* Accent border on hover */
            color: #f7cf87;
        }

        .like-button svg {
            width: 20px;
            height: 20px;
            fill: none; /* Default to no fill (outline) */
            stroke: currentColor; /* Use current text color for stroke */
            transition: fill 0.3s ease, stroke 0.3s ease;
        }

        .like-button.liked {
            color: #f7cf87; /* Gold color for text when liked */
            border-color: #f7cf87; /* Gold border when liked */
        }

        .like-button.liked svg {
            fill: #f7cf87; /* Fill heart icon with gold when liked */
            stroke: #f7cf87; /* Ensure stroke is also gold when filled */
        }


        /* Removed: .like-count */

        /* Videos Section */
        #videos .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        #videos iframe {
            width: 100%;
            aspect-ratio: 16/9; /* Standard video aspect ratio */
            border: none;
            border-radius: 8px;
        }

        /* About Section */
        #about {
            display: flex;
            align-items: center;
            gap: 4rem;
            padding: 6rem 4rem;
        }

        #about img {
            max-width: 40%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        #about .text-content {
            flex: 1;
            padding-right: 2rem;
        }
        #about .text-content h2 {
            text-align: left;
            margin-bottom: 1.5rem;
        }


        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            background-color: #1a1a32;
            border-top: 1px solid #2e2e48;
            color: #a0a0a0;
            font-size: 0.9rem;
        }


        /* Modal Styles */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 100; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.7); 
            padding-top: 60px; 
        }

        .modal-content {
            background-color: #2e2e48; 
            margin: 5% auto; 
            padding: 30px;
            border: 1px solid #4a4a6b;
            border-radius: 10px;
            width: 80%; 
            max-width: 600px;
            position: relative;
            color: #c8c9c5;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .modal-content h2 {
            color: #f7cf87;
            text-align: left;
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .modal-content p {
            margin-bottom: 15px;
            text-align: left;
        }

        .modal-content form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .modal-content form input[type="text"],
        .modal-content form select,
        .modal-content form textarea {
            width: calc(100% - 20px);
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #4a4a6b;
            border-radius: 5px;
            background-color: #1a1a32;
            color: #c8c9c5;
            box-sizing: border-box; 
        }

        .modal-content form textarea {
            resize: vertical; 
        }

        .modal-content form .main-button {
            width: auto;
            margin-top: 20px;
            display: block; 
            text-align: center;
            text-transform: uppercase;
        }

        .close-button {
            color: #c8c9c5;
            position: absolute;
            right: 20px;
            top: 10px;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close-button:hover,
        .close-button:focus {
            color: #f7cf87;
            text-decoration: none;
            cursor: pointer;
        }


        /* Media queries for responsiveness */
        @media (max-width: 1024px) { 
            h1 {
                font-size: 4rem;

            }

            section {
                padding: 4rem 2rem;
            }

            /* Adjusted music grid for 2 columns */
            #music-section-grid-container {
                grid-template-columns: repeat(2, 1fr); 
                gap: 2rem; 
                padding: 4rem 2rem; 
            }
            .section-intro {
                padding-right: 0.75rem; 
            }

            #about {
                flex-direction: column; 
                text-align: center;
            }
            #about img {
                max-width: 60%;
                margin: 0 auto;
            }
            #about .text-content {
                padding-right: 0;
            }
            #about .text-content h2 {
                text-align: left;
            }
        }


        @media (max-width: 768px) {

            h1 {
                font-size: 3rem;
            }

            section h2 {
                font-size: 2rem;
            }

            header nav {
                padding: 3rem 3rem;
            }
            .logo {
                margin-left: 0;
            }

            /* Adjusted music grid for 1 column */
            #music-section-grid-container {
                grid-template-columns: 1fr; 
                padding: 2rem; 
                gap: 2rem; 
            }
            .section-intro {
                text-align: left; /* Keep left alignment, remove center override */
                padding-right: 0; 
            }


            .song-actions-bottom {
                flex-direction: row; /* Keep buttons in a row, not column */
                justify-content: space-between; /* Space out buttons */
                align-items: center;
            }
            /* Removed: .like-count { order: 3; } */


            #about {
                flex-direction: column; 
                text-align: center;
            }
            #about img{
                max-width: 80%;
                margin: 2rem auto 0 auto;
            }
        }


        /* Media query for even smaller screens - e.g., smartphones */
        @media (max-width: 480px) {

            .text-content {
                margin: 2em 2em;
            }

            /* No longer needed: #music .grid { padding: 2rem; } */


            #video-header-content p {
                max-width: 95%;
            }

            header nav ul{
                display: none;
            }

            .logo {
                margin-left: 1rem;
            }

            #video-header-content h2 {
                font-size: 1rem;
            }

            section h2 {
                font-size: 1.5rem;
            }

            .modal {
                width: 100%;
                height: 100%;
                overflow: scroll;
                padding: 0;
                margin: 0;
            }

            .modal-content {
                margin: 0;
            }

            .hero-img {
                right: 0;
            }


            #video-header-content h1 {
            font-size: 3rem;
            }

            #about {
                padding: 0;
                text-align: left;
            }
        }


         /* Media query for XXL screens  */
         @media (min-width: 1980px) {

            .text-content {
                margin: 16em 16em;
            }

            #videos {
                padding: 16rem;
            }

            /* No longer needed: #music .grid { padding: 16rem; } */

            #video-header-content {
                max-width: 60%;
                padding: 0 50px;
            }
        }







                /* New CSS for dust motes */
        .dust-mote {
            position: absolute;
            border-radius: 50%;
            /* Golden color with a radial gradient for a soft, glowing effect */
            background: radial-gradient(circle at center, rgba(162, 115, 238, 0.7) 0%, rgba(46, 18, 82, 0) 70%);
            pointer-events: none; /* Allow clicks to pass through elements behind the dust */
            z-index: 2; /* On top of the image, below any hero content */
            opacity: 0; /* Start invisible */
            animation-name: dustFloat;
            animation-iteration-count: infinite; /* Loop indefinitely */
            animation-timing-function: ease-in-out; /* Smooth acceleration and deceleration */
        }

                .dust-mote2 {
            position: absolute;
            border-radius: 50%;
            /* Golden color with a radial gradient for a soft, glowing effect */
            background: radial-gradient(circle at center, rgba(199, 157, 39, 0.7) 0%, rgba(46, 18, 82, 0) 70%);
            pointer-events: none; /* Allow clicks to pass through elements behind the dust */
            z-index: 2; /* On top of the image, below any hero content */
            opacity: 0; /* Start invisible */
            animation-name: dustFloat;
            animation-iteration-count: infinite; /* Loop indefinitely */
            animation-timing-function: ease-in-out; /* Smooth acceleration and deceleration */
        }

        /* Keyframes for the dust mote animation */
        @keyframes dustFloat {
            0% {
                transform: translate(0, 0) scale(1); /* Start at original position and scale */
                opacity: 0; /* Start invisible */
            }
            10% {
                opacity: 0.7; /* Fade in */
            }
            50% {
                /* Translate based on custom CSS variables for varied movement */
                transform: translate(calc(var(--dm-x) * 1px), calc(var(--dm-y) * 1px)) scale(var(--dm-scale));
                opacity: 0.5; /* Slight fade during movement */
            }
            90% {
                opacity: 0.7; /* Fade back in */
            }
            100% {
                transform: translate(0, 0) scale(1); /* Return to original position and scale */
                opacity: 0; /* Fade out */
            }
        }

        /* Individual mote properties for varied animation */
        /* Each mote has a unique size, starting position, animation duration, delay,
           and custom properties for its translation and scale during the animation. */
        .dm-1 { width: 9px; height: 9px; top: 10%; left: 20%; animation-duration: 15s; animation-delay: 0s; --dm-x: 50; --dm-y: 30; --dm-scale: 1.2; }
        .dm-2 { width: 12px; height: 12px; top: 30%; left: 70%; animation-duration: 18s; animation-delay: 2s; --dm-x: -40; --dm-y: 60; --dm-scale: 1.1; }
        .dm-3 { width: 6px; height: 6px; top: 50%; left: 10%; animation-duration: 12s; animation-delay: 4s; --dm-x: 70; --dm-y: -20; --dm-scale: 1.3; }
        .dm-4 { width: 15px; height: 15px; top: 70%; left: 40%; animation-duration: 20s; animation-delay: 6s; --dm-x: -60; --dm-y: -30; --dm-scale: 1.0; }
        .dm-5 { width: 9px; height: 9px; top: 20%; left: 90%; animation-duration: 16s; animation-delay: 8s; --dm-x: 30; --dm-y: 40; --dm-scale: 1.25; }
        .dm-6 { width: 12px; height: 12px; top: 80%; left: 5%; animation-duration: 14s; animation-delay: 1s; --dm-x: 80; --dm-y: -50; --dm-scale: 1.15; }
        .dm-7 { width: 7.5px; height: 7.5px; top: 45%; left: 85%; animation-duration: 17s; animation-delay: 3s; --dm-x: -50; --dm-y: 20; --dm-scale: 1.05; }
        .dm-8 { width: 10.5px; height: 10.5px; top: 60%; left: 25%; animation-duration: 19s; animation-delay: 5s; --dm-x: 40; --dm-y: -40; --dm-scale: 1.2; }
        .dm-9 { width: 8.4px; height: 8.4px; top: 5%; left: 50%; animation-duration: 16s; animation-delay: 0.5s; --dm-x: 45; --dm-y: 25; --dm-scale: 1.1; }
        .dm-10 { width: 9.6px; height: 9.6px; top: 75%; left: 15%; animation-duration: 19s; animation-delay: 2.5s; --dm-x: -35; --dm-y: 55; --dm-scale: 1.0; }
        .dm-11 { width: 13.5px; height: 13.5px; top: 25%; left: 60%; animation-duration: 13s; animation-delay: 4.5s; --dm-x: 65; --dm-y: -15; --dm-scale: 1.2; }
        .dm-12 { width: 6.6px; height: 6.6px; top: 90%; left: 80%; animation-duration: 21s; animation-delay: 6.5s; --dm-x: -55; --dm-y: -25; --dm-scale: 1.3; }
        .dm-13 { width: 11.4px; height: 11.4px; top: 15%; left: 5%; animation-duration: 17s; animation-delay: 8.5s; --dm-x: 25; --dm-y: 35; --dm-scale: 1.15; }
        .dm-14 { width: 7.5px; height: 7.5px; top: 55%; left: 95%; animation-duration: 15s; animation-delay: 1.5s; --dm-x: 75; --dm-y: -45; --dm-scale: 1.05; }
        .dm-15 { width: 12.6px; height: 12.6px; top: 35%; left: 30%; animation-duration: 18s; animation-delay: 3.5s; --dm-x: -45; --dm-y: 15; --dm-scale: 1.25; }
        .dm-16 { width: 9.0px; height: 9.0px; top: 65%; left: 55%; animation-duration: 20s; animation-delay: 5.5s; --dm-x: 35; --dm-y: -35; --dm-scale: 1.0; }
        .dm-17 { width: 10.5px; height: 10.5px; top: 85%; left: 70%; animation-duration: 14s; animation-delay: 7.5s; --dm-x: -65; --dm-y: 5; --dm-scale: 1.1; }
        .dm-18 { width: 8.1px; height: 8.1px; top: 40%; left: 5%; animation-duration: 16s; animation-delay: 9.5s; --dm-x: 55; --dm-y: 45; --dm-scale: 1.3; }
        .dm-19 { width: 12.0px; height: 12.0px; top: 10%; left: 80%; animation-duration: 19s; animation-delay: 0.8s; --dm-x: -30; --dm-y: 70; --dm-scale: 1.05; }
        .dm-20 { width: 6.0px; height: 6.0px; top: 70%; left: 20%; animation-duration: 12s; animation-delay: 2.8s; --dm-x: 85; --dm-y: -10; --dm-scale: 1.2; }
        .dm-21 { width: 14.4px; height: 14.4px; top: 5%; left: 35%; animation-duration: 22s; animation-delay: 4.8s; --dm-x: -70; --dm-y: -40; --dm-scale: 1.1; }
        .dm-22 { width: 9.3px; height: 9.3px; top: 50%; left: 65%; animation-duration: 17s; animation-delay: 6.8s; --dm-x: 20; --dm-y: 50; --dm-scale: 1.25; }
        .dm-23 { width: 7.8px; height: 7.8px; top: 95%; left: 45%; animation-duration: 15s; animation-delay: 8.8s; --dm-x: 90; --dm-y: -60; --dm-scale: 1.0; }
        .dm-24 { width: 11.7px; height: 11.7px; top: 25%; left: 10%; animation-duration: 18s; animation-delay: 1.2s; --dm-x: -50; --dm-y: 25; --dm-scale: 1.35; }
        .dm-25 { width: 12.9px; height: 12.9px; top: 60%; left: 90%; animation-duration: 20s; animation-delay: 3.2s; --dm-x: 40; --dm-y: -20; --dm-scale: 1.1; }
        .dm-26 { width: 8.7px; height: 8.7px; top: 15%; left: 55%; animation-duration: 14s; animation-delay: 5.2s; --dm-x: -30; --dm-y: 65; --dm-scale: 1.05; }
        .dm-27 { width: 11.1px; height: 11.1px; top: 80%; left: 30%; animation-duration: 16s; animation-delay: 7.2s; --dm-x: 70; --dm-y: -5; --dm-scale: 1.2; }
        .dm-28 { width: 7.2px; height: 7.2px; top: 35%; left: 75%; animation-duration: 19s; animation-delay: 9.2s; --dm-x: -60; --dm-y: 30; --dm-scale: 1.0; }
        .dm-29 { width: 12.3px; height: 12.3px; top: 5%; left: 15%; animation-duration: 21s; animation-delay: 0.3s; --dm-x: 50; --dm-y: 40; --dm-scale: 1.15; }
        .dm-30 { width: 9.9px; height: 9.9px; top: 70%; left: 85%; animation-duration: 15s; animation-delay: 2.3s; --dm-x: -40; --dm-y: -10; --dm-scale: 1.25; }
        .dm-31 { width: 6.3px; height: 6.3px; top: 20%; left: 40%; animation-duration: 13s; animation-delay: 4.3s; --dm-x: 80; --dm-y: 60; --dm-scale: 1.0; }
        .dm-32 { width: 13.8px; height: 13.8px; top: 90%; left: 50%; animation-duration: 23s; animation-delay: 6.3s; --dm-x: -70; --dm-y: -30; --dm-scale: 1.3; }
        .dm-33 { width: 9.0px; height: 9.0px; top: 40%; left: 25%; animation-duration: 17s; animation-delay: 8.3s; --dm-x: 30; --dm-y: 70; --dm-scale: 1.05; }
        .dm-34 { width: 8.4px; height: 8.4px; top: 60%; left: 5%; animation-duration: 14s; animation-delay: 1.0s; --dm-x: 60; --dm-y: -50; --dm-scale: 1.1; }
        .dm-35 { width: 12.0px; height: 12.0px; top: 10%; left: 75%; animation-duration: 18s; animation-delay: 3.0s; --dm-x: -55; --dm-y: 20; --dm-scale: 1.2; }
        .dm-36 { width: 10.5px; height: 10.5px; top: 80%; left: 95%; animation-duration: 20s; animation-delay: 5.0s; --dm-x: 45; --dm-y: -40; --dm-scale: 1.0; }
        .dm-37 { width: 6.9px; height: 6.9px; top: 55%; left: 10%; animation-duration: 16s; animation-delay: 7.0s; --dm-x: -35; --dm-y: 35; --dm-scale: 1.25; }
        .dm-38 { width: 14.1px; height: 14.1px; top: 25%; left: 80%; animation-duration: 19s; animation-delay: 9.0s; --dm-x: 70; --dm-y: -15; --dm-scale: 1.15; }
        .dm-39 { width: 10.8px; height: 10.8px; top: 75%; left: 60%; animation-duration: 15s; animation-delay: 0.6s; --dm-x: -60; --dm-y: 50; --dm-scale: 1.05; }
        .dm-40 { width: 8.7px; height: 8.7px; top: 45%; left: 30%; animation-duration: 17s; animation-delay: 2.6s; --dm-x: 20; --dm-y: -20; --dm-scale: 1.3; }
        .dm-41 { width: 13.2px; height: 13.2px; top: 5%; left: 90%; animation-duration: 22s; animation-delay: 4.6s; --dm-x: -40; --dm-y: 60; --dm-scale: 1.1; }
        .dm-42 { width: 9.6px; height: 9.6px; top: 90%; left: 20%; animation-duration: 18s; animation-delay: 6.6s; --dm-x: 80; --dm-y: -30; --dm-scale: 1.2; }
        .dm-43 { width: 8.1px; height: 8.1px; top: 15%; left: 40%; animation-duration: 14s; animation-delay: 8.6s; --dm-x: -50; --dm-y: 40; --dm-scale: 1.0; }
        .dm-44 { width: 11.4px; height: 11.4px; top: 65%; left: 70%; animation-duration: 20s; animation-delay: 0.9s; --dm-x: 30; --dm-y: -10; --dm-scale: 1.25; }
        .dm-45 { width: 7.5px; height: 7.5px; top: 30%; left: 5%; animation-duration: 16s; animation-delay: 2.9s; --dm-x: -70; --dm-y: 25; --dm-scale: 1.15; }
        .dm-46 { width: 12.3px; height: 12.3px; top: 85%; left: 50%; animation-duration: 19s; animation-delay: 4.9s; --dm-x: 55; --dm-y: -50; --dm-scale: 1.05; }
        .dm-47 { width: 9.0px; height: 9.0px; top: 50%; left: 95%; animation-duration: 15s; animation-delay: 6.9s; --dm-x: -45; --dm-y: 15; --dm-scale: 1.3; }
        .dm-48 { width: 6.6px; height: 6.6px; top: 20%; left: 60%; animation-duration: 17s; animation-delay: 8.9s; --dm-x: 85; --dm-y: -25; --dm-scale: 1.0; }
        .dm-49 { width: 14.7px; height: 14.7px; top: 70%; left: 10%; animation-duration: 21s; animation-delay: 0.4s; --dm-x: -65; --dm-y: 60; --dm-scale: 1.1; }
        .dm-50 { width: 10.2px; height: 10.2px; top: 5%; left: 70%; animation-duration: 16s; animation-delay: 2.4s; --dm-x: 25; --dm-y: -5; --dm-scale: 1.2; }
        .dm-51 { width: 6.9px; height: 6.9px; top: 80%; left: 80%; animation-duration: 13s; animation-delay: 4.4s; --dm-x: -30; --dm-y: 40; --dm-scale: 1.05; }
        .dm-52 { width: 13.5px; height: 13.5px; top: 35%; left: 90%; animation-duration: 23s; animation-delay: 6.4s; --dm-x: 70; --dm-y: -30; --dm-scale: 1.35; }
        .dm-53 { width: 9.3px; height: 9.3px; top: 60%; left: 40%; animation-duration: 17s; animation-delay: 8.4s; --dm-x: -50; --dm-y: 10; --dm-scale: 1.1; }
        .dm-54 { width: 7.8px; height: 7.8px; top: 10%; left: 5%; animation-duration: 14s; animation-delay: 1.1s; --dm-x: 60; --dm-y: 50; --dm-scale: 1.0; }
        .dm-55 { width: 11.7px; height: 11.7px; top: 95%; left: 30%; animation-duration: 18s; animation-delay: 3.1s; --dm-x: -40; --dm-y: -20; --dm-scale: 1.25; }
        .dm-56 { width: 12.6px; height: 12.6px; top: 25%; left: 75%; animation-duration: 20s; animation-delay: 5.1s; --dm-x: 80; --dm-y: -40; --dm-scale: 1.15; }
        .dm-57 { width: 8.4px; height: 8.4px; top: 40%; left: 15%; animation-duration: 16s; animation-delay: 7.1s; --dm-x: -30; --dm-y: 65; --dm-scale: 1.05; }
        .dm-58 { width: 11.1px; height: 11.1px; top: 75%; left: 95%; animation-duration: 19s; animation-delay: 9.1s; --dm-x: 50; --dm-y: -15; --dm-scale: 1.2; }
        .dm-59 { width: 7.2px; height: 7.2px; top: 5%; left: 25%; animation-duration: 21s; animation-delay: 0.2s; --dm-x: -60; --dm-y: 30; --dm-scale: 1.0; }
        .dm-60 { width: 12.3px; height: 12.3px; top: 85%; left: 10%; animation-duration: 15s; animation-delay: 2.2s; --dm-x: 70; --dm-y: -5; --dm-scale: 1.1; }
        .dm-61 { width: 9.9px; height: 9.9px; top: 20%; left: 85%; animation-duration: 13s; animation-delay: 4.2s; --dm-x: -40; --dm-y: 55; --dm-scale: 1.25; }
        .dm-62 { width: 6.3px; height: 6.3px; top: 50%; left: 40%; animation-duration: 23s; animation-delay: 6.2s; --dm-x: 90; --dm-y: -60; --dm-scale: 1.0; }
        .dm-63 { width: 13.8px; height: 13.8px; top: 90%; left: 70%; animation-duration: 17s; animation-delay: 8.2s; --dm-x: -70; --dm-y: 20; --dm-scale: 1.3; }
        .dm-64 { width: 9.0px; height: 9.0px; top: 40%; left: 5%; animation-duration: 14s; animation-delay: 0.7s; --dm-x: 30; --dm-y: 70; --dm-scale: 1.05; }
        .dm-65 { width: 8.4px; height: 8.4px; top: 60%; left: 90%; animation-duration: 18s; animation-delay: 2.7s; --dm-x: -55; --dm-y: -40; --dm-scale: 1.1; }
        .dm-66 { width: 12.0px; height: 12.0px; top: 10%; left: 30%; animation-duration: 20s; animation-delay: 4.7s; --dm-x: 45; --dm-y: 25; --dm-scale: 1.2; }
        .dm-67 { width: 10.5px; height: 10.5px; top: 80%; left: 45%; animation-duration: 16s; animation-delay: 6.7s; --dm-x: -35; --dm-y: 55; --dm-scale: 1.0; }
        .dm-68 { width: 6.9px; height: 6.9px; top: 55%; left: 75%; animation-duration: 19s; animation-delay: 8.7s; --dm-x: 75; --dm-y: -45; --dm-scale: 1.25; }
        .dm-69 { width: 14.1px; height: 14.1px; top: 25%; left: 20%; animation-duration: 21s; animation-delay: 0.5s; --dm-x: -60; --dm-y: 30; --dm-scale: 1.15; }
        .dm-70 { width: 10.8px; height: 10.8px; top: 75%; left: 5%; animation-duration: 15s; animation-delay: 2.5s; --dm-x: 50; --dm-y: -10; --dm-scale: 1.05; }
        .dm-71 { width: 8.7px; height: 8.7px; top: 45%; left: 85%; animation-duration: 17s; animation-delay: 4.5s; --dm-x: -40; --dm-y: 60; --dm-scale: 1.3; }
        .dm-72 { width: 13.2px; height: 13.2px; top: 5%; left: 60%; animation-duration: 22s; animation-delay: 6.5s; --dm-x: 80; --dm-y: -30; --dm-scale: 1.0; }
        .dm-73 { width: 9.6px; height: 9.6px; top: 90%; left: 95%; animation-duration: 18s; animation-delay: 8.5s; --dm-x: -70; --dm-y: 40; --dm-scale: 1.1; }
        .dm-74 { width: 8.1px; height: 8.1px; top: 15%; left: 10%; animation-duration: 14s; animation-delay: 1.3s; --dm-x: 20; --dm-y: -20; --dm-scale: 1.2; }
        .dm-75 { width: 11.4px; height: 11.4px; top: 65%; left: 35%; animation-duration: 20s; animation-delay: 3.3s; --dm-x: -50; --dm-y: 50; --dm-scale: 1.05; }
        .dm-76 { width: 7.5px; height: 7.5px; top: 30%; left: 80%; animation-duration: 16s; animation-delay: 5.3s; --dm-x: 40; --dm-y: -40; --dm-scale: 1.35; }
        .dm-77 { width: 12.3px; height: 12.3px; top: 85%; left: 25%; animation-duration: 19s; animation-delay: 7.3s; --dm-x: -30; --dm-y: 65; --dm-scale: 1.1; }
        .dm-78 { width: 9.0px; height: 9.0px; top: 50%; left: 55%; animation-duration: 15s; animation-delay: 9.3s; --dm-x: 70; --dm-y: -5; --dm-scale: 1.25; }
        .dm-79 { width: 6.6px; height: 6.6px; top: 20%; left: 5%; animation-duration: 17s; animation-delay: 0.1s; --dm-x: -60; --dm-y: 30; --dm-scale: 1.0; }
        .dm-80 { width: 14.7px; height: 14.7px; top: 70%; left: 90%; animation-duration: 21s; animation-delay: 2.1s; --dm-x: 50; --dm-y: 40; --dm-scale: 1.15; }
