@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

        :root {
            --primary-color: #1DB954;
            --background-color: #121212;
            --text-color: #FFFFFF;
            --card-background: #1E1E1E;
            --popup-background: rgba(0, 0, 0, 0.95);
            --feature-bg-color: #04560069;
            --feature-text-color: #000;
            --feature-border-color: #045600;

        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body, html {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            scrollbar-width: none; /* For Firefox */
            -ms-overflow-style: none;  /* For Internet Explorer and Edge */
        }

        body::-webkit-scrollbar, 
        html::-webkit-scrollbar,
        .popup-content::-webkit-scrollbar {
            display: none; /* For Chrome, Safari, and Opera */
        }

        .popup-content {
            scrollbar-width: none; /* For Firefox */
            -ms-overflow-style: none;  /* For Internet Explorer and Edge */
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .main-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end; /* added this line */
        }

        header {
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo img {
            height: 40px;
            transition: all 0.3s ease;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 400;
            font-size: 1.1em;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
            display: inline-block;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        nav ul li a:hover {
            transform: translateY(-3px);
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
        }

        .hero-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 4em;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero h1 {
            font-size: 5em;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transition: transform 0.75s ease;
        }

        .hero h1:hover {
            transform: scale(1.15);
        }

        .hero-content p {
            font-size: 1.5em;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto 30px;
        }
		
		.artist-name {
			position: relative;
			display: inline-block;
			color: var(--text-color);
		}

		.artist-name::before {
			content: attr(data-text);
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(
				to right,
				var(--text-color) 0%,
				var(--text-color) 45%,
				#ffffff 50%,
				var(--text-color) 55%,
				var(--text-color) 100%
			);
			-webkit-background-clip: text;
			background-clip: text;
			color: transparent;
			animation: shine 3s infinite linear;
			background-size: 200% auto;
		}

		@keyframes shine {
			0% {
				background-position: -200% center;
			}
			100% {
				background-position: 200% center;
			}
		}

        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background-color: #1ed760;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .section {
            padding: 25px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 50px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .section-title:hover {
            transform: scale(1.05);
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .section-title:hover::after {
            width: 100px;
        }

        .bio {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
        }

        .bio-image {
            width: 300px;
            height: 300px;
            object-fit: cover;
            border-radius: 50%;
            margin-right: 40px;
        }

        .bio-content {
            flex: 1;
        }

        .releases-carousel {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .releases-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .release-card {
            flex: 0 0 250px;
            margin-right: 30px;
            background-color: var(--card-background);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .release-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.45);
        }

        .release-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .release-info {
            padding: 20px;
        }

        .release-title {
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .release-date {
            font-size: 0.9em;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .social-links a {
            color: var(--text-color);
            font-size: 1.5em;
            margin: 0 15px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 1;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background-color: var(--popup-background);
            border-radius: 10px;
            padding: 30px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .popup-overlay.active .popup-content {
            transform: scale(1);
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: var(--text-color);
            background: none;
            border: none;
            cursor: pointer;
        }

        .popup-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .popup-title {
            background: linear-gradient(270deg, var(--gradient-color-1, #1DB954), var(--gradient-color-2, #121212), var(--gradient-color-3, #1DB954));
            background-size: 600% 600%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientBackground 10s ease infinite;
        }

        @keyframes gradientBackground {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .popup-date {
            font-size: 1.2em;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .popup-links {
            display: flex;
            justify-content: center; /* Center items horizontally */
            margin-top: 20px;
            margin-bottom: 20px;
            min-width: 120px; /* Adjust this value as needed */
            min-height: 40px; /* Adjust this value as needed */
            font-size: 14px; /* Adjust as needed */
        }

        .popup-links a {
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
            margin-left: 5%;
            margin-right: 5%;
            margin-bottom: 10px;
            padding: 8px 15px;
            background-color: var(--primary-color);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 20px;
        }

        .popup-links a:hover {
            background-color: #1ed760;
        }

        .popup-links a.link-spotify {
            background: linear-gradient(-82.5deg, #147b38, #148b3e, #359b57);
            color: #ffffffe4;
            background-position: 0% 50%; /* Start position */
            transition: background-position 5s ease; /* Smooth transition */
            background-size: 200% 200%; /* Double the size of the background */
        }

        .popup-links a.link-spotify:hover {
            background: linear-gradient(-82.5deg, #148b3e, #147b38, #359b57);
            background-position: 100% 50%; /* End position */
            transition: background-position 5s ease; /* Smooth transition */
            background-size: 200% 200%; /* Double the size of the background */
        }

        .popup-links a.link-applemusic {
            background: linear-gradient(-45deg, #fa57c1, #ff6ec7, #ff9a9e);
            color: #ffffffe4;
            background-position: 0% 50%; /* Start position */
            transition: background-position 5s ease; /* Smooth transition */
            background-size: 200% 200%; /* Double the size of the background */
        }

        .popup-links a.link-applemusic:hover {
            background: linear-gradient(-45deg, #ff6ec7, #fa57c1, #ff9a9e);
            background-position: 100% 50%; /* End position */
            transition: background-position 5s ease; /* Smooth transition */
            background-size: 200% 200%; /* Double the size of the background */
        }

        .popup-links a.link-youtube {
            background: linear-gradient(-20deg, #FF0000, #FF4500, #FF6347);
            color: #ffffffe4;
            background-position: 0% 50%; /* Start position */
            transition: background-position 5s ease; /* Smooth transition */
            background-size: 200% 200%; /* Double the size of the background */
        }

        .popup-links a.link-youtube:hover {
            background: linear-gradient(-20deg, #FF4500, #FF0000, #FF6347);
            background-position: 100% 50%; /* End position */
            transition: background-position 5s ease; /* Smooth transition */
            background-size: 200% 200%; /* Double the size of the background */
        }

        footer {
            background-color: #0a0a0a;
            color: var(--text-color);
            text-align: center;
            padding: 20px 0;
        }

        #footer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        #footer::before {
            background: conic-gradient(
                from 0deg,
                var(--footer-color1, #00ffee),
                var(--footer-color2, #000000d7),
                var(--footer-color3, #005b32bc)
            );
            animation-duration: 75s;
        }

        #footer::after {
            background: rgba(0, 0, 0, var(--footer-opacity, 0.628));
            backdrop-filter: blur(var(--footer-blur, 35px));
        }

        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .animated-bg2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .animated-bg::before,
        .animated-bg2::before,
        #footer::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            animation: rotate 20s linear infinite;
        }

        .animated-bg::before {
            background: conic-gradient(
                from 0deg,
                var(--gradient-color-1, #1DB954),
                var(--gradient-color-2, #121212),
                var(--gradient-color-3, #1DB954)
            );
        }

        .animated-bg2::before {
            background: conic-gradient(
                from 0deg,
                var(--gradient-color-1,#14c070),
                var(--gradient-color-2, #000000f5),
                var(--gradient-color-3, #146b32b1)
            );
            animation-duration: 75s;
        }

        .animated-bg::after,
        .animated-bg2::after,
        #footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(50px);
        }

        .animated-bg::after {
            background: rgba(18, 18, 18, 0.8);
        }

        .animated-bg2::after {
            background: rgba(0, 0, 0, 0.8);
        }

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

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
        }
        
        .carousel-button.prev {
            left: 10px;
        }
        
        .carousel-button.next {
            right: 10px;
        }
		
		.releases-carousel {
			touch-action: pan-y;
		}

        /* Responsive styles */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5em;
            }
            .hero-content p {
                font-size: 1em;
            }
            .bio {
                flex-direction: column;
                text-align: center;
            }
            .bio-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
            nav ul {
                display: none;
            }
            .section-title {
                font-size: 2em;
            }
            .popup-links {
                min-width: 360px; /* Smaller minimum width for very small screens */
                font-size: 13px; /* Slightly smaller font size for small screens */
            }
			.carousel-button {
			  display: none;
			}
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2em;
            }
            .hero-content p {
                font-size: 0.9em;
            }
            .cta-button {
                padding: 10px 20px;
                font-size: 0.9em;
            }
            .section-title {
                font-size: 1.5em;
            }
            .popup-links {
                min-width: 300px; /* Smaller minimum width for very small screens */
                font-size: 8px; /* Slightly smaller font size for small screens */
            }
        }

        .pwa-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #000000c2;
            color: var(--text-color);
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
        }

        .pwa-popup.show {
            display: block;
            animation: slideIn 0.3s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .pwa-popup-content {
            display: flex;
            align-items: center;
        }

        .pwa-popup-text {
            flex-grow: 1;
            margin-right: 15px;
        }

        .pwa-popup-button {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .pwa-popup-button:hover {
            background-color: #1ed760;
        }

        /* New styles for the close button */
        .pwa-popup-close {
            position: absolute;
            top: 5px;
            right: 5px;
            background: none;
            border: none;
            color: #b91d1da9;
            font-size: 20px;
            cursor: pointer;
            padding: 5px;
            line-height: 1;
        }

        .pwa-popup-close:hover {
            color: var(--primary-color);
        }

        #iosInstallBanner {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #000000d1;            padding: 10px;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        }
        #iosInstallSteps {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #000000;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.2);
            z-index: 1000;
            width: 80%; /* Default width */
            height: auto; /* Default height */
            max-width: 500px; /* Maximum width */
            min-width: 300px; /* Minimum width */
            max-height: 80%; /* Maximum height */
            min-height: 300px; /* Minimum height */
        }

        #spotiIcon path {
            fill: url(#spotifyGradient);
            transition: fill 5s ease;
        }
        
        #spotiIcon:hover path {
            fill: url(#spotifyGradientHover);
            transition: fill 5s ease;
        }
        
        #instaIcon path {
            fill: url(#instagramGradient);
            transition: fill 5s ease;
        }
        
        #instaIcon:hover path {
            fill: url(#instagramGradientHover);
            transition: fill 5s ease;
        }
        
        #ytIcon path {
            fill: url(#youtubeGradient);
            transition: fill 5s ease;
        }
        
        #ytIcon:hover path {
            fill: url(#youtubeGradientHover);
            transition: fill 5s ease;
        }

        .feature-label {
            background-color: var(--feature-bg-color, #04560069);
            color: white;
            border: 2px solid var(--feature-border-color);
            border-radius: 12px;
            padding: 0 4px;
            font-size: 0.8em;
            margin-left: 5px;
            display: inline-block;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .feature-label-popup {
            border-radius: 12px;
            padding: 0 4px;
            font-size: 0.8em;
            margin-left: 5px;
            display: inline-block;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .release-card.feature {
            border: 2px solid var(--feature-border-color, #045600);
        }
        
        .release-card .feature-label {
            margin-top: 5px;
        }

        /* For larger screens */
        @media (min-width: 768px) {
            #iosInstallSteps {
                width: 60%;
                height: auto;
            }
        }

        /* For very large screens */
        @media (min-width: 1024px) {
            #iosInstallSteps {
                width: 40%;
                height: auto;
            }
        }

        /* For small screens */
        @media (max-width: 767px) {
            #iosInstallSteps {
                width: 90%;
                height: auto;
            }
        }

        /* For very small screens */
        @media (max-width: 480px) {
            #iosInstallSteps {
                width: 95%;
                height: auto;
            }
        }