body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
}

.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-bg_video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Set z-index to -1 to place the video behind other elements */
    pointer-events: none;
    /* Allow clicks to pass through the video element */
}

/* Additional styles to prevent the video controls from showing on hover */
.fullscreen-bg_video::-webkit-media-controls {
    display: none !important;
}

.fullscreen-bg_video::-webkit-media-controls-panel {
    display: none !important;
}

.fullscreen-bg_video::-webkit-media-controls-play-button {
    display: none !important;
}

.fullscreen-bg_video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

#front-page {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 1;
    transition: opacity 0.5s ease;

}

#front-page.hidden {
    opacity: 0;
    pointer-events: none;

}

#front-page-text {
    font-weight: bold;
    font-size: 54px;
    font-style: italic;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    color: #ffffff;
    cursor: pointer;
}

#audio-controls-container {
    max-width: 80%;
    width: 540px;
    height: 375px;
    border: 2px solid #fff;
    padding: 20px;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

#audio-details-container {
    position: absolute;
    bottom: 0.5cm;
    left: 50%;
    transform: translateX(-50%);
    width: calc(105% - 1.4cm);
    height: 120px;
    border: 2px solid #fff;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 18px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.profile-container {
    position: absolute;
    top: 10px;
    /* Adjust the top position as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 2.5cm;
    height: 2.5cm;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    /* Add a background color if needed */
    box-shadow: 0 0 7px 2px rgba(255, 255, 255, 0.8);
    /* Add glow effect */
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#though-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 19px;
    margin-top: -41px;
}

#name-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 25px;
    margin-top: -80px;
}

#user-name {
    margin: 0px;
}


#user-visits-container {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 10px;
    margin-left: 10px;
    color: #fff;
    font-size: 13.5px;
    display: flex;
    align-items: center;
}

#eye-icon {
    width: 16px;
    /* Adjust the width as needed */
    height: 16px;
    /* Adjust the height as needed */
    margin-left: 3px;
    /* Adjust the margin as needed */
}

#small-circles-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5.0cm;
    /* Adjust the margin as needed */
}

.small-circle {
    width: 1.5cm;
    height: 1.5cm;
    background-color: transparent;
    /* Set the background color as transparent */
    border: 2px solid #fff;
    /* Set the border color and width */
    border-radius: 50%;
    margin: 0 0.5cm;
    /* Adjust the margin between circles as needed */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    /* Add a glow effect to the border */
    transition: box-shadow 0.3s ease;
}

.small-circle:hover {
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.8), inset 0 0 1000px rgba(0, 0, 0, 0.5);
}


.small-circle .small-circle-image {
    width: 100%;
    /* Set the width of the image */
    height: 100%;
    /* Set the height of the image */
    object-fit: cover;
    /* Maintain the aspect ratio and cover the entire container */
    border-radius: 50%;
    /* Ensure the image follows the circle border-radius */
    image-rendering: smooth;
    /* Improve rendering quality */
}


#now-playing {
    color: #fff;
}

#song-name,
#start-time,
#end-time {
    color: #fff;
    margin: 0;
}

#duration-bar-container {
    width: 108%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

#start-time,
#end-time {
    margin: 0 10px;
}

#duration-bar {
    width: 100%;
    height: 4px;
    margin: 0;
    background-color: #fff;
    /* Change the background color to white */
    appearance: none;
    /* Reset default styles */
    border-radius: 2px;
    /* Set border-radius to half of the height */
}

#duration-bar::-webkit-slider-thumb {
    width: 15px;
    /* Set the width of the cursor */
    height: 15px;
    /* Set the height of the cursor */
    background-color: #fff;
    /* Change the cursor color to white */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    /* Reset default styles for WebKit browsers */
    margin-top: -2px;
    /* Align the cursor with the center of the bar */
}

#audio-controls {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

#audio-controls button {
    flex-grow: 1;
    height: 10px;
    margin: 1px;
    font-size: 18px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#play-pause::before,
#back-button::before,
#skip-button::before {
    content: "";
    display: inline-block;
    width: 25px;
    /* Set the width of your image */
    height: 25px;
    /* Set the height of your image */
    background-size: cover;
}

#play-pause::before {
    background-image: url('2.png');
}

#back-button::before {
    background-image: url('4.png');
}

#skip-button::before {
    background-image: url('3.png');
}

#play-pause::before {
    font-size: 18px;
    background-image: url('1.png');
}

#play-pause.paused::before {
    background-image: url('2.png');
}

#volume-duration-bar {
    flex-grow: 0;
    height: 4px;
    margin: 0;
    background-color: white;
    align-self: flex-end;
    -webkit-appearance: none;
    border-radius: 2px;
}

#volume-duration-bar::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    background-color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -2px;
}

#theme-dropdown {
    visibility: hidden;
    /* Hide initially */
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    color: #fff;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    /* Add backdrop-filter property for blur effect */
}

#theme-select-dropdown {
    margin-left: 5px;
    padding: 3px;
    font-size: 12px;
    background-color: rgba(51, 51, 51, 0.8);
    /* Set a transparent background color */
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    width: 80px;
    /* Adjust the width as needed */
}

#theme-select-dropdown option {
    background-color: rgba(51, 51, 51, 0.8);
    /* Set a transparent background color for options */
    color: #fff;
}

@media (min-width: 200px) and (max-width: 295px) {

    #audio-controls-container {
        height: 57%;
    }

    #audio-controls button {
        width: 25%;

    }

    #volume-duration-bar {
        width: 20%;
    }

    #small-circles-container {
        margin-top: 200px;

        /* Adjust the margin for small screens */
    }

    #name-container {
        margin-top: -70px;
    }

    #though-container {
        margin-top: -20px;
    }

    .small-circle {
        width: 2.5rem;
        /* Adjust the width for small screens */
        height: 2.5rem;
        /* Adjust the height for small screens */
        margin: 0 0.5rem;
        /* Adjust the margin for small screens */
    }
}

@media (min-width: 300px) and (max-width: 360px) {

    #audio-controls-container {
        height: 47%;
    }

    #audio-controls button {
        width: 25%;

    }

    #volume-duration-bar {
        width: 20%;
    }

    #small-circles-container {
        margin-top: 179px;
        /* Adjust the margin for small screens */
    }

    #name-container {
        margin-top: -70px;
    }

    #though-container {
        margin-top: -30px;
    }

    .small-circle {
        width: 2.5rem;
        /* Adjust the width for small screens */
        height: 2.5rem;
        /* Adjust the height for small screens */
        margin: 0 0.5rem;
        /* Adjust the margin for small screens */
    }
}

@media (min-width: 365px) and (max-width: 380px) {

    #audio-controls-container {
        height: 55%;
    }

    #audio-controls button {
        width: 25%;

    }

    #volume-duration-bar {
        width: 20%;
    }

    #small-circles-container {
        margin-top: 195px;
        /* Adjust the margin for small screens */
    }

    #name-container {
        margin-top: -70px;
    }

    #though-container {
        margin-top: -30px;
    }

    .small-circle {
        width: 2.5rem;
        /* Adjust the width for small screens */
        height: 2.5rem;
        /* Adjust the height for small screens */
        margin: 0 0.5rem;
        /* Adjust the margin for small screens */
    }
}

@media (min-width: 385px) and (max-width: 395px) {

    #audio-controls-container {
        height: 45.5%;
    }

    #audio-controls button {
        width: 25%;

    }

    #volume-duration-bar {
        width: 20%;
    }

    #small-circles-container {
        margin-top: 195px;
        /* Adjust the margin for small screens */
    }

    #name-container {
        margin-top: -70px;
    }

    #though-container {
        margin-top: -30px;
    }

    .small-circle {
        width: 2.5rem;
        /* Adjust the width for small screens */
        height: 2.5rem;
        /* Adjust the height for small screens */
        margin: 0 0.5rem;
        /* Adjust the margin for small screens */
    }
}


@media (min-width: 400px) and (max-width: 600px) {

    #audio-controls-container {
        height: 45.5%;
    }

    #audio-controls button {
        width: 25%;

    }

    #volume-duration-bar {
        width: 20%;
    }

    #small-circles-container {
        margin-top: 209px;
        /* Adjust the margin for small screens */
    }

    #name-container {
        margin-top: -70px;
    }

    #though-container {
        margin-top: -30px;
    }

    .small-circle {
        width: 2.5rem;
        /* Adjust the width for small screens */
        height: 2.5rem;
        /* Adjust the height for small screens */
        margin: 0 0.5rem;
        /* Adjust the margin for small screens */
    }
}

#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

.star {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    transform-origin: center;
    animation: sparkle 1s infinite;
}

@keyframes sparkle {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}