/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

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

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #87CEEB 0%, #4A90E2 30%, #2E8B57 60%, #228B22 100%);
            color: #2C1810;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated world elements */
        .world-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            font-size: 30px;
            animation: floatAround 20s linear infinite;
            opacity: 0.7;
        }

        @keyframes floatAround {
            0% { 
                transform: translateX(-100px) translateY(100vh) rotate(0deg);
            }
            25% { 
                transform: translateX(25vw) translateY(75vh) rotate(90deg);
            }
            50% { 
                transform: translateX(75vw) translateY(25vh) rotate(180deg);
            }
            75% { 
                transform: translateX(50vw) translateY(50vh) rotate(270deg);
            }
            100% { 
                transform: translateX(-100px) translateY(-100px) rotate(360deg);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        .hero-section {
            text-align: center;
            padding: 100px 0;
            position: relative;
            background: radial-gradient(circle at center, rgba(135, 206, 235, 0.3), transparent 70%);
        }

        /* Expanding universe effect */
        .universe-effect {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            border: 3px solid rgba(74, 144, 226, 0.5);
            border-radius: 50%;
            animation: expandUniverse 8s ease-in-out infinite;
        }

        .universe-effect::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 300px;
            height: 300px;
            border: 2px solid rgba(46, 139, 87, 0.3);
            border-radius: 50%;
            animation: expandUniverse 8s ease-in-out infinite 2s;
        }

        .universe-effect::after {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border: 1px solid rgba(34, 139, 34, 0.2);
            border-radius: 50%;
            animation: expandUniverse 8s ease-in-out infinite 4s;
        }

        @keyframes expandUniverse {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.5;
            }
            50% { 
                transform: scale(1.5);
                opacity: 1;
            }
        }

        h1 {
            font-size: 5em;
            background: linear-gradient(45deg, #4A90E2, #2E8B57, #228B22);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 3px 3px 6px rgba(44, 24, 16, 0.3);
            margin-bottom: 30px;
            font-weight: bold;
            position: relative;
            z-index: 3;
            animation: bigPulse 4s ease-in-out infinite;
        }

        @keyframes bigPulse {
            0%, 100% { 
                transform: scale(1);
                filter: brightness(1);
            }
            50% { 
                transform: scale(1.1);
                filter: brightness(1.3);
            }
        }

        .song-title {
            font-size: 3em;
            color: #2E8B57;
            margin: 40px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: worldGlow 3s ease-in-out infinite alternate;
        }

        @keyframes worldGlow {
            from { text-shadow: 2px 2px 4px rgba(46, 139, 87, 0.3); }
            to { text-shadow: 0 0 30px rgba(46, 139, 87, 0.8); }
        }

        .artist-name {
            font-size: 2em;
            color: #2C1810;
            margin-bottom: 50px;
            font-style: italic;
        }

        /* Interactive world showcase */
        .world-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin: 60px 0;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .world-item {
            background: linear-gradient(145deg, #87CEEB, #4A90E2);
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
            position: relative;
            overflow: hidden;
        }

        .world-item:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(46, 139, 87, 0.5);
        }

        .world-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
            animation: sparkle 3s linear infinite;
            opacity: 0;
        }

        .world-item:hover::before {
            opacity: 1;
        }

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

        .world-emoji {
            font-size: 60px;
            margin-bottom: 15px;
            display: block;
            animation: bounce 2s ease-in-out infinite;
        }

        .world-item:nth-child(even) .world-emoji {
            animation-delay: 1s;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .world-label {
            font-size: 16px;
            font-weight: bold;
            color: #2C1810;
        }

        /* Big song message */
        .big-message {
            background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(46, 139, 87, 0.2));
            padding: 50px;
            border-radius: 25px;
            margin: 60px 0;
            text-align: center;
            border: 3px solid rgba(74, 144, 226, 0.3);
            position: relative;
        }

        .big-message::before {
            content: '♪';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 40px;
            background: linear-gradient(135deg, #87CEEB, #4A90E2);
            padding: 10px 20px;
            border-radius: 50%;
            color: white;
        }

        .big-message h2 {
            font-size: 2.5em;
            color: #2E8B57;
            margin-bottom: 20px;
            animation: messageGlow 2s ease-in-out infinite alternate;
        }

        @keyframes messageGlow {
            from { color: #2E8B57; }
            to { color: #228B22; }
        }

        .big-message p {
            font-size: 1.4em;
            color: #2C1810;
            line-height: 1.8;
        }

        /* Widgets container styling */
        .widgets-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        .jukebox-widget, .store-widget {
            display: inline-block;
            margin: 20px 15px;
            z-index: 10000;
            font-family: Georgia, 'Times New Roman', serif;
            position: relative;
        }

        /* Widget toggle button */
        .widget-toggle {
            background: linear-gradient(135deg, #4A90E2 0%, #2E8B57 100%);
            color: white;
            border: none;
            border-radius: 50px;
            width: 120px;
            height: 120px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            transition: all 0.3s ease;
            border: 2px solid #228B22;
        }

        .widget-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(46, 139, 87, 0.6);
        }

        .widget-toggle.active {
            background: linear-gradient(135deg, #228B22 0%, #2E8B57 100%);
        }

        /* Widget content */
        .widget-content {
            position: absolute;
            top: 70px;
            right: 0;
            width: 400px;
            max-height: 600px;
            background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
            border-radius: 15px;
            border: 2px solid #4A90E2;
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
            overflow: hidden;
            transform: translateY(-20px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .widget-content.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        /* Widget header */
        .widget-header {
            background: linear-gradient(135deg, #4A90E2 0%, #2E8B57 100%);
            color: white;
            padding: 15px 20px;
            text-align: center;
            border-bottom: 2px solid #228B22;
        }

        .widget-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .widget-subtitle {
            font-size: 12px;
            opacity: 0.9;
        }

        /* Search section */
        .search-section {
            padding: 20px;
            border-bottom: 1px solid #D4C4B0;
        }

        .search-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #4A90E2;
            border-radius: 8px;
            font-size: 14px;
            font-family: Georgia, serif;
            background: white;
            color: #2C2A3B;
            transition: border-color 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #2E8B57;
            box-shadow: 0 0 8px rgba(46, 139, 87, 0.3);
        }

        .search-input::placeholder {
            color: #4A90E2;
        }

        /* Results section */
        .results-section {
            max-height: 400px;
            overflow-y: auto;
        }

        .result-item {
            padding: 15px 20px;
            border-bottom: 1px solid #E8DDD2;
            background: white;
            margin: 0 10px 10px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(74, 144, 226, 0.1);
        }

        .result-item:last-child {
            margin-bottom: 10px;
        }

        .item-title {
            font-size: 16px;
            font-weight: bold;
            color: #2C1810;
            margin-bottom: 5px;
        }

        .item-subtitle {
            font-size: 14px;
            color: #2E8B57;
            margin-bottom: 10px;
        }

        .item-description {
            font-size: 12px;
            color: #4A90E2;
            font-style: italic;
            margin-bottom: 10px;
        }

        .featured {
            font-style: italic;
            color: #4A90E2;
        }

        /* Service buttons */
        .service-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .service-btn {
            background: linear-gradient(135deg, #4A90E2 0%, #2E8B57 100%);
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-family: Georgia, serif;
        }

        .service-btn:hover {
            background: linear-gradient(135deg, #228B22 0%, #2E8B57 100%);
            transform: scale(1.05);
        }

        .service-btn.lyrics {
            background: linear-gradient(135deg, #2C1810 0%, #4A3C3B 100%);
        }

        .service-btn.lyrics:hover {
            background: linear-gradient(135deg, #1C1000 0%, #3C2A2B 100%);
        }

        .service-btn.primary {
            background: linear-gradient(135deg, #2C1810 0%, #4A3C3B 100%);
            padding: 10px 18px;
            font-size: 13px;
        }

        .service-btn.primary:hover {
            background: linear-gradient(135deg, #1C1000 0%, #3C2A2B 100%);
        }

        /* No results message */
        .no-results {
            padding: 20px 20px 10px;
            text-align: center;
            color: #2E8B57;
            font-style: italic;
        }

        /* Product list */
        .product-list {
            margin: 15px 0;
        }

        .product-item {
            font-size: 13px;
            color: #2C1810;
            padding: 3px 0;
            border-bottom: 1px dotted #D4C4B0;
            line-height: 1.4;
        }

        .product-item:last-child {
            border-bottom: none;
        }

        /* Preview strip */
        .preview-strip {
            height: 30px;
            background: linear-gradient(135deg, #E8DDD2 0%, #DDD2C4 100%);
            border: 1px solid #4A90E2;
            border-radius: 6px;
            margin: 10px 20px 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }

        .preview-strip:hover {
            background: linear-gradient(135deg, #DDD2C4 0%, #D4C4B0 100%);
            border-color: #2E8B57;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(46, 139, 87, 0.2);
        }

        .preview-text {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            font-size: 12px;
            color: #2C1810;
            font-weight: 500;
            text-decoration: none;
        }

        /* Custom scrollbar */
        .results-section::-webkit-scrollbar {
            width: 6px;
        }

        .results-section::-webkit-scrollbar-track {
            background: #E8DDD2;
            border-radius: 3px;
        }

        .results-section::-webkit-scrollbar-thumb {
            background: #4A90E2;
            border-radius: 3px;
        }

        .results-section::-webkit-scrollbar-thumb:hover {
            background: #2E8B57;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            h1 { font-size: 3em; }
            .song-title { font-size: 2em; }
            .artist-name { font-size: 1.4em; }
            .world-showcase { 
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 20px;
                padding: 20px;
            }
            .big-message { padding: 30px 20px; }
            .big-message h2 { font-size: 2em; }
            .big-message p { font-size: 1.2em; }
        }

       @media (max-width: 480px) {
    .widget-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100vw - 20px);
        max-width: 350px;
        max-height: 80vh;
        z-index: 20000;
    }

    .widget-content.active {
        transform: translate(-50%, -50%);
        opacity: 1;
        visibility: visible;
    }

    .widget-toggle {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }

    .search-input {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 15px;
    }

    .service-buttons {
        gap: 6px;
    }

    .service-btn {
        font-size: 10px;
        padding: 5px 10px;
    }

    /* Ensure widgets container is properly centered */
    .widgets-container {
        justify-content: center;
        margin: 20px 0;
    }
}
        <!---for lyrics-->
        .container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px solid #667eea;
        }
        .header h1 {
            color: #667eea;
            margin: 0 0 10px 0;
            font-size: 2.5em;
            font-weight: 700;
        }
        .header h2 {
            color: #666;
            margin: 0 0 15px 0;
            font-size: 1.5em;
            font-weight: 400;
        }
        .header h3 {
            color: #888;
            margin: 0;
            font-size: 1.2em;
            font-weight: 300;
            font-style: italic;
        }
        .streaming-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 25px;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .spotify { background: linear-gradient(135deg, #1db954, #1ed760); }
        .apple { background: linear-gradient(135deg, #fa57c1, #ff6b9d); }
        .youtube { background: linear-gradient(135deg, #ff0000, #ff4444); }
        .amazon { background: linear-gradient(135deg, #ff9900, #ffb84d); }
        .metadata {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 5px solid #667eea;
        }
        .metadata-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .metadata-item {
            display: flex;
            flex-direction: column;
        }
        .metadata-label {
            font-weight: 600;
            color: #667eea;
            margin-bottom: 5px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .metadata-value {
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }
        .lyrics {
            white-space: pre-line;
            line-height: 2;
            font-size: 18px;
            margin: 40px 0;
            padding: 30px;
            background: #fafbfc;
            border-radius: 15px;
            border: 1px solid #e9ecef;
        }
        .lyrics h3 {
            color: #667eea;
            margin-top: 0;
            margin-bottom: 25px;
            font-size: 1.3em;
            text-align: center;
        }
        .lyrics-content {
            font-family: Georgia, serif;
            color: #444;
            text-align: left;
        }
        .footer {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #e9ecef;
            color: #666;
            font-size: 14px;
        }
        @media (max-width: 768px) {
            .container { padding: 20px; }
            .header h1 { font-size: 2em; }
            .streaming-buttons { flex-direction: column; align-items: center; }
            .metadata-grid { grid-template-columns: 1fr; }
        }
        <!--widget formatting for mobile--->
        /* Prevent body scroll when widget is open on mobile */
@media (max-width: 480px) {
    body.widget-open {
        overflow: hidden;
    }
}