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

body {
    font-family: 'Arial', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b35;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-bar {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: none;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 0;
}

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

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 100;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-play-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.hero-play-btn {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-play-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff6b35;
    color: #ff6b35;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
}

.hero-play-btn:hover::before {
    left: 100%;
}

.hero-play-btn.playing {
    background: rgba(255, 107, 53, 0.9);
    border-color: #ff6b35;
    color: #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6); }
    100% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3); }
}

.hero-play-btn svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
    position: relative;
    z-index: 2;
}

.hero-track-info {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-track-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-track-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #ff6b35;
}

.hero-track-artist {
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 100;
    text-align: center;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.track {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.track:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.track-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.track:hover .album-art {
    filter: brightness(1);
}

.track-play-btn {
    width: 60px;
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.track-play-btn:hover {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.track-play-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.track-play-btn:hover svg {
    transform: scale(1.1);
}

.track-play-icon,
.track-pause-icon {
    pointer-events: none;
}

.track-info {
    padding: 25px;
}

.track-title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.track-meta {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Responsive Track Links */
.track-link {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    padding: clamp(8px, 2vw, 12px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: clamp(12px, 3vw, 16px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.track-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

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

.track-link:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.platform-icon {
    width: clamp(16px, 4vw, 24px);
    height: clamp(16px, 4vw, 24px);
    fill: currentColor;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.track-link:hover .platform-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Modern gradient overlay for each platform */
.track-link[href*="spotify"]:hover {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
    color: #ffffff;
}

.track-link[href*="apple"]:hover {
    background: linear-gradient(135deg, #FA233B 0%, #FB5C74 100%);
    color: #ffffff;
}

.track-link[href*="youtube"]:hover {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
    color: #ffffff;
}

/* Updated track-links layout */
.track-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: nowrap;
    margin-top: 15px;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
    .track-links {
        gap: clamp(10px, 3vw, 15px);
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .track-link {
        min-width: 42px;
        min-height: 42px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .platform-icon {
        min-width: 18px;
        min-height: 18px;
    }
    
    .track-link:hover {
        transform: translateY(-2px) scale(1.03);
    }
}

@media (max-width: 480px) {
    .track-links {
        gap: clamp(8px, 2vw, 12px);
        flex-wrap: nowrap;
        justify-content: space-evenly;
        padding: 0 10px;
    }
    
    .track-link {
        width: clamp(36px, 8vw, 40px);
        height: clamp(36px, 8vw, 40px);
        padding: 6px;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-shrink: 0;
    }
    
    .platform-icon {
        width: clamp(16px, 4vw, 18px);
        height: clamp(16px, 4vw, 18px);
    }
    
    /* Simplified hover effects for mobile */
    .track-link:hover {
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }
    
    .track-link:hover .platform-icon {
        transform: scale(1.1);
    }
}

@media (max-width: 320px) {
    .track-links {
        gap: clamp(6px, 2vw, 10px);
        justify-content: space-evenly;
        padding: 0 5px;
    }
    
    .track-link {
        width: clamp(32px, 7vw, 36px);
        height: clamp(32px, 7vw, 36px);
        padding: 5px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .platform-icon {
        width: clamp(14px, 3.5vw, 16px);
        height: clamp(14px, 3.5vw, 16px);
    }
}

/* Large screens with enhanced effects */
@media (min-width: 1200px) {
    .track-link {
        width: 55px;
        height: 55px;
        padding: 14px;
        border-radius: 18px;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }
    
    .track-link:hover {
        transform: translateY(-6px) scale(1.08);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    .platform-icon {
        width: 26px;
        height: 26px;
    }
    
    .track-link:hover .platform-icon {
        transform: scale(1.2) rotate(8deg);
    }
}

/* Touch device optimizations with modern styling */
@media (hover: none) and (pointer: coarse) {
    .track-link {
        min-height: 44px;
        min-width: 44px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .track-link:hover {
        transform: none;
    }
    
    .track-link:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.1),
            inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .track-link:active .platform-icon {
        transform: scale(0.9);
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .track-link {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .track-link,
    .platform-icon,
    .track-link::before {
        transition: none;
    }
    
    .track-link:hover {
        transform: none;
    }
    
    .track-link:hover .platform-icon {
        transform: scale(1.05);
    }
}

/* About Section */
.flagship-showcase {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 50vh;
}

.showcase-text {
    padding: 0 20px;
}

.showcase-text h2 {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.showcase-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.showcase-image {
    position: relative;
    height: 600px;
}

.product-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.product-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Tour Section */
.tour-list {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
}

.tour-item:hover {
    opacity: 0.7;
}

.tour-date {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.tour-venue {
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-location {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.tour-button {
    padding: 10px 20px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tour-button:hover {
    background: #ffffff;
    color: #000000;
}

/* Contact Section */
.contact {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 20px;
}

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

.social-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 10px 15px;
}

.social-link:hover {
    color: #ff6b35;
}

/* Footer */
footer {
    background: #000000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    font-size: 0.8rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Global Music Player */
.global-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.global-player.active {
    transform: translateY(0);
}

.player-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.player-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-thumbnail img.player-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-thumbnail .music-icon {
    width: 30px;
    height: 30px;
    fill: rgba(255, 255, 255, 0.6);
}

.player-text {
    min-width: 0;
    flex: 1;
}

.player-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    font-size: 0.8rem;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.control-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.control-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.play-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000000 !important;
    width: 48px;
    height: 48px;
}

.play-btn:hover {
    background: #ffffff !important;
    transform: scale(1.05);
}

.play-btn svg {
    width: 18px;
    height: 18px;
}

.progress-container {
    flex: 1;
    max-width: 350px;
    margin: 0 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff8c66);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 300;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #ffffff;
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(200%); opacity: 0; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    .hero-play-btn {
        width: 80px;
        height: 80px;
    }

    .hero-play-btn svg {
        width: 32px;
        height: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .track-image {
        height: 200px;
    }

    .track-info {
        padding: 20px;
    }

    .track-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .track-link {
        width: 100%;
        flex: none;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .showcase-text {
        padding: 0;
    }

    .showcase-image {
        height: 400px;
    }

    .tour-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 25px 0;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    /* Mobile-Only Global Player Improvements - Fixed Progress Bar */
@media (max-width: 768px) {
    .global-player {
        padding: 16px 20px;
        min-height: 88px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .player-content {
        display: grid;
        grid-template-areas: 
            "thumbnail info controls"
            "progress progress progress";
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 12px 16px;
        align-items: center;
    }

    /* Progress Section - Full Width Responsive */
    .progress-container {
        grid-area: progress;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .progress-bar {
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        cursor: pointer;
        margin-bottom: 0;
        position: relative;
        overflow: hidden;
        -webkit-tap-highlight-color: transparent;
    }

    .progress-bar:active {
        height: 8px;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #ff6b35, #ff8c66);
        border-radius: 3px;
        width: 0%;
        transition: width 0.1s ease;
        position: relative;
    }

    .progress-fill::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: #ffffff;
        border-radius: 50%;
        opacity: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        transition: opacity 0.2s ease;
    }

    .progress-bar:active .progress-fill::after {
        opacity: 1;
    }

    .time-display {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 0.75rem;
        opacity: 0.7;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        margin-top: 0;
    }
}

/* Small Mobile Optimization */
@media (max-width: 480px) {
    .global-player {
        padding: 14px 16px;
        min-height: 82px;
    }

    .player-content {
        gap: 10px 12px;
    }

    .progress-container {
        gap: 5px;
    }

    .progress-bar {
        height: 5px;
    }

    .progress-bar:active {
        height: 7px;
    }

    .progress-fill::after {
        width: 10px;
        height: 10px;
        right: -5px;
    }

    .time-display {
        font-size: 0.7rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .global-player {
        padding: 12px 14px;
        min-height: 78px;
    }

    .player-content {
        gap: 8px 10px;
    }

    .progress-container {
        gap: 4px;
    }

    .progress-bar {
        height: 4px;
    }

    .progress-bar:active {
        height: 6px;
    }

    .progress-fill::after {
        width: 8px;
        height: 8px;
        right: -4px;
    }

    .time-display {
        font-size: 0.65rem;
        margin-top: 2px;
    }
}



/* Small Mobile Optimization */
@media (max-width: 480px) {
    .global-player {
        padding: 14px 16px;
        min-height: 82px;
    }

    .player-content {
        gap: 10px 12px;
    }

    .player-thumbnail {
        width: 52px;
        height: 52px;
    }

    .player-title {
        font-size: 0.9rem;
    }

    .player-artist {
        font-size: 0.75rem;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .control-btn svg {
        width: 18px;
        height: 18px;
    }

    .play-btn {
        width: 44px;
        height: 44px;
    }

    .play-btn svg {
        width: 16px;
        height: 16px;
    }

    .progress-bar {
        height: 5px;
    }

    .progress-bar:active {
        height: 7px;
    }

    .time-display {
        font-size: 0.7rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .global-player {
        padding: 12px 14px;
        min-height: 78px;
    }

    .player-content {
        gap: 8px 10px;
    }

    .player-thumbnail {
        width: 48px;
        height: 48px;
        border-radius: 6px;
    }

    .player-title {
        font-size: 0.85rem;
        font-weight: 400;
    }

    .player-artist {
        font-size: 0.7rem;
    }

    .control-btn {
        width: 36px;
        height: 36px;
    }

    .control-btn svg {
        width: 16px;
        height: 16px;
    }

    .play-btn {
        width: 40px;
        height: 40px;
    }

    .play-btn svg {
        width: 14px;
        height: 14px;
    }

    .player-close {
        width: 24px;
        height: 24px;
        top: 6px;
        right: 8px;
    }

    .player-close svg {
        width: 12px;
        height: 12px;
    }
}
}