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

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(-45deg, #000000, #1a0033, #000000, #0d001a);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            color: white;
            overflow-x: hidden;
            /* Added custom cursor */
            cursor: none;
        }

        /* Replaced simple circle cursor with unique music note design */
        .custom-cursor {
            position: fixed;
            width: 24px;
            height: 24px;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.2s ease;
            mix-blend-mode: difference;
        }

        .custom-cursor::before {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background: linear-gradient(45deg, #8B5CF6, #A855F7);
            border-radius: 50%;
            top: 2px;
            left: 6px;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
        }

        .custom-cursor::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 16px;
            background: linear-gradient(to bottom, #8B5CF6, #A855F7);
            top: 2px;
            right: 6px;
            border-radius: 1px;
            box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
        }

        .custom-cursor.hover {
            transform: scale(1.5) rotate(15deg);
        }

        .custom-cursor.hover::before {
            background: linear-gradient(45deg, #FBBF24, #F59E0B);
            box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
        }

        .custom-cursor.hover::after {
            background: linear-gradient(to bottom, #FBBF24, #F59E0B);
            box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
        }

        /* Enhanced mouse trail to complement music note cursor */
        .mouse-trail {
            position: fixed;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.8), rgba(139, 92, 246, 0.2));
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.4s ease;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 100;
            border-bottom: 1px solid rgba(77, 0, 128, 0.3);
            /* Added interactive background */
            transition: all 0.3s ease;
        }

        .navbar.mouse-over {
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid rgba(77, 0, 128, 0.6);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 0 20px;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 500;
            /* Added interactive transform */
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(77, 0, 128, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .nav-link:hover::before {
            left: 100%;
        }

        .nav-link:hover {
            background: rgba(77, 0, 128, 0.3);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 5px 15px rgba(77, 0, 128, 0.4);
        }

        /* Particle System */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            color: rgba(255, 255, 255, 0.7);
            font-size: 20px;
            animation: fall linear infinite;
            /* Added interactive particle effects */
            transition: all 0.3s ease;
        }

        .particle.mouse-near {
            transform: scale(1.5);
            color: rgba(77, 0, 128, 0.9);
        }

        @keyframes fall {
            0% {
                transform: translateY(-100px) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Header */
        .header {
            text-align: center;
            padding: 100px 20px;
            position: relative;
            z-index: 10;
            /* Added parallax effect */
            transition: transform 0.1s ease;
        }

        .header h1 {
            font-size: 4rem;
            text-shadow: 0 0 20px rgba(77, 0, 128, 0.6);
            margin-bottom: 20px;
            animation: glow 2s ease-in-out infinite alternate;
            /* Added interactive text effects */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .header h1:hover {
            transform: scale(1.05);
            text-shadow: 0 0 30px rgba(77, 0, 128, 0.8), 0 0 60px rgba(77, 0, 128, 0.6);
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(77, 0, 128, 0.6); }
            to { text-shadow: 0 0 30px rgba(77, 0, 128, 0.8), 0 0 40px rgba(77, 0, 128, 0.4); }
        }

        .music-player {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin: 50px auto;
            max-width: 800px;
            border: 1px solid rgba(77, 0, 128, 0.3);
            position: relative;
            z-index: 10;
            /* Added tilt effect */
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }

        .music-player:hover {
            border-color: rgba(77, 0, 128, 0.6);
            box-shadow: 0 20px 40px rgba(77, 0, 128, 0.2);
        }

        .spotify-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .spotify-card {
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(77, 0, 128, 0.3);
            transition: all 0.3s ease;
            /* Added 3D transform effects */
            transform-style: preserve-3d;
        }

        .spotify-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
            border-color: rgba(77, 0, 128, 0.5);
            box-shadow: 0 15px 30px rgba(77, 0, 128, 0.3);
        }

        .image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Fixed spacing to prevent overlaps */
            margin: 20px 0;
            border: 2px dashed rgba(77, 0, 128, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            /* Added z-index to prevent overlap issues */
            z-index: 1;
        }

        .music-player {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin: 50px auto;
            max-width: 800px;
            border: 1px solid rgba(77, 0, 128, 0.3);
            position: relative;
            z-index: 10;
            /* Added tilt effect */
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }

        .music-player:hover {
            border-color: rgba(77, 0, 128, 0.6);
            box-shadow: 0 20px 40px rgba(77, 0, 128, 0.2);
        }

        .spotify-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .spotify-card {
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(77, 0, 128, 0.3);
            transition: all 0.3s ease;
            /* Added 3D transform effects */
            transform-style: preserve-3d;
        }

        .spotify-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
            border-color: rgba(77, 0, 128, 0.5);
            box-shadow: 0 15px 30px rgba(77, 0, 128, 0.3);
        }

        .section-image-placeholder {
            width: 100%;
            max-width: 600px;
            height: 200px;
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Increased margins to prevent section overlaps */
            margin: 40px auto 30px auto;
            border: 2px dashed rgba(77, 0, 128, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            /* Added z-index for proper layering */
            z-index: 1;
        }

        .section-image-placeholder:hover {
            border-color: rgba(77, 0, 128, 0.6);
            background: linear-gradient(45deg, #2d2d2d, #404040);
            /* Reduced transform scale to prevent overflow */
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 10px 30px rgba(77, 0, 128, 0.3);
        }

        .hero-image-placeholder {
            width: 100%;
            max-width: 600px;
            height: 250px;
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Adjusted margins for better header spacing */
            margin: 30px auto 40px auto;
            border: 2px dashed rgba(77, 0, 128, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            /* Added z-index for proper stacking */
            z-index: 2;
        }

        .hero-image-placeholder:hover {
            border-color: rgba(77, 0, 128, 0.6);
            background: linear-gradient(45deg, #2d2d2d, #404040);
            /* Reduced transform scale to prevent overflow */
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 15px 40px rgba(77, 0, 128, 0.3);
        }

        /* Added simple img element styling for easy picture replacement */
        .justin-image {
            width: 300px;
            height: 300px;
            border-radius: 15px;
            object-fit: cover;
            border: 3px solid rgba(77, 0, 128, 0.5);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .justin-image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(77, 0, 128, 0.6);
        }

        .spotify-placeholder {
            width: 100%;
            height: 152px;
            background: rgba(0, 0, 0, 0.9);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(30, 215, 96, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            /* Added pulse animation */
            position: relative;
        }

        .spotify-placeholder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 10px;
            background: rgba(30, 215, 96, 0.1);
            opacity: 0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        .spotify-placeholder:hover {
            border-color: rgba(30, 215, 96, 0.6);
            background: rgba(30, 215, 96, 0.05);
            transform: scale(1.02);
        }

        .play-btn {
            background: linear-gradient(45deg, #2d2d2d, #4d0080);
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            /* Added rotation and glow effects */
            position: relative;
        }

        .play-btn::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #4d0080, #2d2d2d);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .play-btn:hover {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 0 20px rgba(77, 0, 128, 0.6);
        }

        .play-btn:hover::before {
            opacity: 1;
        }

        .song-info h3 {
            margin-bottom: 5px;
        }

        .song-info p {
            opacity: 0.8;
            font-size: 14px;
        }

        /* Sound Waves Animation */
        .sound-waves {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            height: 40px;
            /* Added interactive sound waves */
            transition: all 0.3s ease;
        }

        .sound-waves:hover {
            transform: scale(1.1);
        }

        .wave {
            width: 4px;
            background: linear-gradient(to top, #2d2d2d, #4d0080);
            border-radius: 2px;
            animation: wave 1s ease-in-out infinite;
            /* Added mouse interaction */
            transition: all 0.3s ease;
        }

        .wave:hover {
            background: linear-gradient(to top, #4d0080, #7d00cc);
            transform: scaleY(1.5);
        }

        .wave:nth-child(1) { animation-delay: 0s; }
        .wave:nth-child(2) { animation-delay: 0.1s; }
        .wave:nth-child(3) { animation-delay: 0.2s; }
        .wave:nth-child(4) { animation-delay: 0.3s; }
        .wave:nth-child(5) { animation-delay: 0.4s; }

        @keyframes wave {
            0%, 100% { height: 10px; }
            50% { height: 40px; }
        }

        .waves-hidden .wave {
            animation-play-state: paused;
            height: 10px;
        }

        .songs-section {
            padding: 50px 20px;
            position: relative;
            z-index: 10;
        }

        .songs-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-shadow: 0 0 10px rgba(77, 0, 128, 0.6);
            /* Added interactive heading */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .songs-section h2:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(77, 0, 128, 0.8);
        }

        .section-image-placeholder {
            width: 100%;
            max-width: 600px;
            height: 200px;
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Increased margins to prevent section overlaps */
            margin: 40px auto 30px auto;
            border: 2px dashed rgba(77, 0, 128, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            /* Added z-index for proper layering */
            z-index: 2;
        }

        .section-image-placeholder:hover {
            border-color: rgba(77, 0, 128, 0.6);
            background: linear-gradient(45deg, #2d2d2d, #404040);
            /* Reduced transform scale to prevent overflow */
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 10px 30px rgba(77, 0, 128, 0.3);
        }

        .songs-carousel {
            display: flex;
            overflow-x: hidden;
            gap: 20px;
            padding: 20px 0;
            position: relative;
        }

        .songs-track {
            display: flex;
            gap: 20px;
            animation: scroll-songs 30s linear infinite;
            /* Added pause on hover */
            transition: animation-play-state 0.3s ease;
        }

        .songs-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-songs {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        .song-card {
            min-width: 280px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(77, 0, 128, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            /* Added 3D card effects */
            transform-style: preserve-3d;
            position: relative;
        }

        .song-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(77, 0, 128, 0.1), transparent);
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .song-card:hover::before {
            opacity: 1;
        }

        .song-card:hover {
            transform: translateY(-10px) rotateX(10deg) rotateY(5deg) scale(1.05);
            border-color: rgba(77, 0, 128, 0.6);
            box-shadow: 0 15px 40px rgba(77, 0, 128, 0.4);
        }

        /* Career Timeline */
        .timeline-section {
            padding: 50px 20px;
            position: relative;
            z-index: 10;
        }

        .timeline-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-shadow: 0 0 10px rgba(77, 0, 128, 0.6);
            /* Added interactive heading */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .timeline-section h2:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(77, 0, 128, 0.8);
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #2d2d2d, #4d0080);
            transform: translateX(-50%);
            /* Added glow effect */
            box-shadow: 0 0 10px rgba(77, 0, 128, 0.5);
        }

        .timeline-item {
            margin: 50px 0;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-content {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(77, 0, 128, 0.3);
            width: 45%;
            position: relative;
            /* Added interactive timeline cards */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            border-color: rgba(77, 0, 128, 0.6);
            box-shadow: 0 10px 30px rgba(77, 0, 128, 0.3);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 55%;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: 55%;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #2d2d2d, #4d0080);
            border-radius: 50%;
            transform: translateX(-50%);
            border: 3px solid white;
            /* Added interactive dot */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .timeline-dot:hover {
            transform: translateX(-50%) scale(1.5);
            box-shadow: 0 0 20px rgba(77, 0, 128, 0.8);
        }

        .hero-image-placeholder {
            width: 100%;
            max-width: 600px;
            height: 250px;
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Adjusted margins for better header spacing */
            margin: 30px auto 40px auto;
            border: 2px dashed rgba(77, 0, 128, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            /* Added z-index for proper stacking */
            z-index: 2;
        }

        .hero-image-placeholder:hover {
            border-color: rgba(77, 0, 128, 0.6);
            background: linear-gradient(45deg, #2d2d2d, #404040);
            /* Reduced transform scale to prevent overflow */
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 15px 40px rgba(77, 0, 128, 0.3);
        }

        /* Added simple img element styling for easy picture replacement */
        .justin-image {
            width: 300px;
            height: 300px;
            border-radius: 15px;
            object-fit: cover;
            border: 3px solid rgba(77, 0, 128, 0.5);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .justin-image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(77, 0, 128, 0.6);
        }

        .spotify-placeholder {
            width: 100%;
            height: 152px;
            background: rgba(0, 0, 0, 0.9);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(30, 215, 96, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            /* Added pulse animation */
            position: relative;
        }

        .spotify-placeholder::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 10px;
            background: rgba(30, 215, 96, 0.1);
            opacity: 0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        .spotify-placeholder:hover {
            border-color: rgba(30, 215, 96, 0.6);
            background: rgba(30, 215, 96, 0.05);
            transform: scale(1.02);
        }

        .play-btn {
            background: linear-gradient(45deg, #2d2d2d, #4d0080);
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            /* Added rotation and glow effects */
            position: relative;
        }

        .play-btn::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #4d0080, #2d2d2d);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .play-btn:hover {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 0 20px rgba(77, 0, 128, 0.6);
        }

        .play-btn:hover::before {
            opacity: 1;
        }

        .song-info h3 {
            margin-bottom: 5px;
        }

        .song-info p {
            opacity: 0.8;
            font-size: 14px;
        }

        /* Sound Waves Animation */
        .sound-waves {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            height: 40px;
            /* Added interactive sound waves */
            transition: all 0.3s ease;
        }

        .sound-waves:hover {
            transform: scale(1.1);
        }

        .wave {
            width: 4px;
            background: linear-gradient(to top, #2d2d2d, #4d0080);
            border-radius: 2px;
            animation: wave 1s ease-in-out infinite;
            /* Added mouse interaction */
            transition: all 0.3s ease;
        }

        .wave:hover {
            background: linear-gradient(to top, #4d0080, #7d00cc);
            transform: scaleY(1.5);
        }

        .wave:nth-child(1) { animation-delay: 0s; }
        .wave:nth-child(2) { animation-delay: 0.1s; }
        .wave:nth-child(3) { animation-delay: 0.2s; }
        .wave:nth-child(4) { animation-delay: 0.3s; }
        .wave:nth-child(5) { animation-delay: 0.4s; }

        @keyframes wave {
            0%, 100% { height: 10px; }
            50% { height: 40px; }
        }

        .waves-hidden .wave {
            animation-play-state: paused;
            height: 10px;
        }

        .songs-section {
            padding: 50px 20px;
            position: relative;
            z-index: 10;
        }

        .songs-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-shadow: 0 0 10px rgba(77, 0, 128, 0.6);
            /* Added interactive heading */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .songs-section h2:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(77, 0, 128, 0.8);
        }

        /* Added new styles for image-description layout */
        .image-description-container {
            display: flex;
            align-items: center;
            gap: 40px;
            margin: 30px 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .description-content {
            flex: 1;
            color: white;
            text-align: left;
        }

        .description-content h3 {
            color: #8B5CF6;
            font-size: 2em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .description-content p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .image-container {
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .image-description-container {
                flex-direction: column;
                text-align: center;
            }
            
            .description-content {
                text-align: center;
            }
        }

        /* Career Timeline */
        .timeline-section {
            padding: 50px 20px;
            position: relative;
            z-index: 10;
        }

        .timeline-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-shadow: 0 0 10px rgba(77, 0, 128, 0.6);
            /* Added interactive heading */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .timeline-section h2:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(77, 0, 128, 0.8);
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #2d2d2d, #4d0080);
            transform: translateX(-50%);
            /* Added glow effect */
            box-shadow: 0 0 10px rgba(77, 0, 128, 0.5);
        }

        .timeline-item {
            margin: 50px 0;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-content {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(77, 0, 128, 0.3);
            width: 45%;
            position: relative;
            /* Added interactive timeline cards */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            border-color: rgba(77, 0, 128, 0.6);
            box-shadow: 0 10px 30px rgba(77, 0, 128, 0.3);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 55%;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-right: 55%;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #2d2d2d, #4d0080);
            border-radius: 50%;
            transform: translateX(-50%);
            border: 3px solid white;
            /* Added interactive dot */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .timeline-dot:hover {
            transform: translateX(-50%) scale(1.5);
            box-shadow: 0 0 20px rgba(77, 0, 128, 0.8);
        }

        /* YouTube Section Styles */
        .youtube-section {
            padding: 50px 20px;
            position: relative;
            z-index: 10;
        }

        .youtube-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-shadow: 0 0 10px rgba(77, 0, 128, 0.6);
            /* Added interactive heading */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .youtube-section h2:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(77, 0, 128, 0.8);
        }

        .youtube-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .youtube-player {
            margin-bottom: 40px;
            /* Added responsive iframe container */
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            transition: all 0.3s ease;
        }

        .youtube-player:hover {
            transform: scale(1.02);
        }

        .youtube-player iframe {
            /* Made iframe fully responsive and positioned absolutely */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .youtube-player iframe:hover {
            box-shadow: 0 10px 30px rgba(77, 0, 128, 0.4);
        }

        .video-placeholder {
            width: 100%;
            height: 400px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed rgba(255, 0, 0, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            border-color: rgba(255, 0, 0, 0.6);
            background: rgba(255, 0, 0, 0.05);
        }

        .youtube-grid {
            /* Improved grid layout to prevent overlapping */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            align-items: start;
        }

        .youtube-card {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 15px;
            border: 1px solid rgba(77, 0, 128, 0.3);
            transition: all 0.3s ease;
            /* Added width constraint and overflow handling */
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .youtube-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
            border-color: rgba(77, 0, 128, 0.5);
            box-shadow: 0 15px 30px rgba(77, 0, 128, 0.3);
        }

        .youtube-card iframe {
            /* Made card iframes fully responsive */
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .youtube-card iframe:hover {
            transform: scale(1.02);
        }

        .video-thumbnail {
            width: 100%;
            height: 160px;
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-thumbnail:hover {
            background: linear-gradient(45deg, #2d2d2d, #404040);
        }

        /*responsive design 8*/
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }

            .nav-container {
                gap: 15px;
                flex-wrap: wrap;
            }

            .nav-link {
                padding: 8px 15px;
                font-size: 14px;
            }

            .song-card {
                min-width: 250px;
            }

            .spotify-cards {
                grid-template-columns: 1fr;
            }

            .video-placeholder {
                height: 250px;
            }

            .youtube-grid {
                /* Improved mobile grid layout */
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Added mobile-specific YouTube styles */
            .youtube-player {
                margin-bottom: 30px;
            }

            .youtube-card {
                padding: 12px;
            }
        }

        /* Added extra small screen support */
        @media (max-width: 480px) {
            .youtube-grid {
                gap: 15px;
            }

            .youtube-card {
                padding: 10px;
            }
        }