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

         header {
            background: rgba(0, 0, 0, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
       
        /* Stream Links */
        .stream-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }
        
        .stream-link {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            text-decoration: none;
            color: #fff;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .stream-link:hover {
            background: rgba(138, 43, 226, 0.25);
            transform: translateY(-3px);
            border-color: rgba(80, 76, 76, 0.4);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .service-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
            font-size: 1.4rem;
        }
        
        .service-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.2rem;
            flex-grow: 1;
            text-align: left;
        }
        
        .service-action {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(0, 0, 0, 0.1);
            padding: 6px 15px;
            border-radius: 20px;
            transition: background 0.3s;
        }
        
        .stream-link:hover .service-action {
            background: rgba(241, 240, 240, 0.993);
            color: #fff;
        }
        
        /* Full Width Lyrics Section */
        .lyrics-columns {
            display: flex;
            gap: 40px;
            justify-content: space-between;
        }

        .lyrics-col {
            flex: 1;
            text-align: left;
        }
        .lyrics-col:first-child {
            position: relative;
            padding-right: 20px;
        }

        .lyrics-col:first-child::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 1px;
            background: blue;
        }

        .full-width-section {
            width: 100%;
            background: rgba(10, 10, 25, 0.85);
            padding: 50px 0;
            margin: 40px 0;
            border-top: 1px solid rgba(247, 6, 6, 0.2);
            border-bottom: 1px solid rgba(247, 6, 6, 0.2);
        }
        
        .lyrics-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .lyrics-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #fff;
            text-align: center;
            position: relative;
        }
        
        .lyrics-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: blue;
            border-radius: 2px;
        }
        .lyrics-box {
            background: rgba(15, 12, 28, 0.95);
            padding: 35px 40px;
            border-radius: 15px;
            font-size: 1.15rem;
            line-height: 1.9;
            color: #ffffff; 
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            position: relative;
            overflow: hidden;
        }
       
        .lyrics-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to bottom, rgba(15,12,28,0.95) 0%, transparent 100%);
            z-index: 2;
        }
        
        .lyrics-box::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(to top, rgba(15,12,28,0.95) 0%, transparent 100%);
            z-index: 2;
        }
        
        .lyrics-box p {
            margin: 0;
            padding: 0;
            text-align: left;
            position: relative;
            z-index: 1;
        }
        
        .lyrics-box .highlight {
            color: blue;
            font-weight: 600;
        }
        
        .lyrics-box .chorus {
            font-style: italic;
            margin: 25px 0;
            position: relative;
            padding: 0 30px;
            color: #e0e0ff;
        }
        
        .lyrics-box .chorus::before,
        .lyrics-box .chorus::after {
            content: "»";
            position: absolute;
            color: blue;
            font-size: 1.5rem;
            opacity: 0.7;
        }
        
        .lyrics-box .chorus::before {
            left: 0;
            top: 0;
        }
        
        .lyrics-box .chorus::after {
            right: 0;
            bottom: 0;
            transform: rotate(180deg);
        }
        
        .lyrics-meta {
            display: flex;
            justify-content: center;
            margin-top: 25px;
            font-size: 1rem;
            color: #fbfbff;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .lyrics-meta span {
            display: flex;
            align-items: center;
        }
        
        .lyrics-meta i {
            margin-right: 8px;
            color: blue;
        }
        
        /* Scrollbar styling */
        .lyrics-box::-webkit-scrollbar {
            width: 10px;
        }
        
        .lyrics-box::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
        }
        
        .lyrics-box::-webkit-scrollbar-thumb {
            background: white;
            border-radius: 4px;
        }
        
        .lyrics-box::-webkit-scrollbar-thumb:hover {
            background:white;
        }
        
        .song-artwork {
            width: 220px;
            height: 220px;
            border-radius: 15px;
            margin: 0 auto 25px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            background: url('/images/iwictm.png');
            background-position: ceter;
            background-size: contain;
        }
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .lyrics-columns {
                flex-direction: column;
                gap: 20px;
            }
            
            .lyrics-col:first-child::after {
                display: none;
            }
            
            .lyrics-col:first-child {
                padding-right: 0;
                padding-bottom: 20px;
                border-bottom: 1px solid rgba(247, 6, 6, 0.3);
            }
        }
       
        
        /* Footer */
        footer {
            background: rgba(5, 5, 15, 0.95);
            padding: 60px 0 30px;
            width: 100%;
            margin-top: auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-col h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #f00a02;
        }
        
        .footer-col p {
            color: #ffffff;
            line-height: 1.7;
            margin-bottom: 15px;
        }
       
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: rgba(243, 243, 243, 0.15);
            color: #e0e0ff;
            border-radius: 50%;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: #f71f02;
            transform: translateY(-3px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #b0b0d0;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: #f50404;
        }
        
        .footer-links i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b0b0d0;
            font-size: 0.9rem;
        }
        
        .copyright i {
            color: #8a2be2;
            margin: 0 5px;
        }

     
       
        /* Responsive Design */
        @media (max-width: 900px) {
         
            .song-title {
                font-size: 2rem;
            }
            
            .song-artwork {
                width: 180px;
                height: 180px;
                font-size: 3rem;
            }
            .lyrics-box {
                padding: 25px;
                font-size: 1.05rem;
            }
        }
        
            @media (max-width: 600px) {
            .logo {
                font-size: 1.2rem;
            }
            
            .song-title {
                font-size: 1.8rem;
            }
            
            .artist-name {
                font-size: 1.2rem;
            }
            
            .stream-link {
                padding: 15px;
            }
            
            .service-icon {
                margin-right: 15px;
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
            
            .service-name {
                font-size: 1.1rem;
            }
            
            .service-action {
                font-size: 0.8rem;
                padding: 5px 12px;
            }
            
            .lyrics-heading {
                font-size: 1.6rem;
            }
            
            .lyrics-box {
                padding: 20px 15px;
                font-size: 1rem;
            }
            
            .lyrics-meta {
                gap: 15px;
                font-size: 0.9rem;
            }
        }
       